unit_type string | repo_path string | commit_id string | stars int32 | unit_prefix string | shard int32 | license_types list | files list | quality dict | flags dict |
|---|---|---|---|---|---|---|---|---|---|
ansible_role | aatirs7/ansibletest | 9935569bae8ec4decad2c50ffa99402526b5a5f3 | 0 | project-root/roles/bootstrap | 8,186 | [
"no_license"
] | [
{
"path": "project-root/roles/bootstrap/tasks/main.yml",
"content": "---\r\n\r\n# Set the system hostname based on inventory_hostname\r\n- name: Set the hostname\r\n hostname:\r\n name: \"{{ inventory_hostname }}\"\r\n\r\n# Add 'search' domain to /etc/resolv.conf\r\n- name: Ensure search domain is set i... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 951,
"all_permissive": false
} |
ansible_role | aatirs7/ansibletest | 9935569bae8ec4decad2c50ffa99402526b5a5f3 | 0 | project-root/roles/crio | 8,186 | [
"no_license"
] | [
{
"path": "project-root/roles/crio/tasks/main.yml",
"content": "---\r\n# Unpack CRI-O archive\r\n- name: Unpack crio archive\r\n unarchive:\r\n src: \"{{ crio_tar }}\"\r\n dest: \"/path/to/crio\" # update with actual path\r\n remote_src: yes\r\n\r\n# Install CRI-O RPMs from extracted directory\r\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 838,
"all_permissive": false
} |
ansible_role | aatirs7/ansibletest | 9935569bae8ec4decad2c50ffa99402526b5a5f3 | 0 | project-root/roles/images | 8,186 | [
"no_license"
] | [
{
"path": "project-root/roles/images/tasks/main.yml",
"content": "---\r\n\r\n# Unpack core-images archive\r\n- name: Unpack core-images archive\r\n unarchive:\r\n src: \"{{ core_tar }}\"\r\n dest: \"/path/to/core-images\" # Replace with actual destination\r\n remote_src: yes\r\n\r\n# Find all .ta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 632,
"all_permissive": false
} |
ansible_role | aatirs7/ansibletest | 9935569bae8ec4decad2c50ffa99402526b5a5f3 | 0 | project-root/roles/kernel | 8,186 | [
"no_license"
] | [
{
"path": "project-root/roles/kernel/tasks/main.yml",
"content": "---\r\n\r\n# Install kernel headers for the currently running kernel\r\n- name: Install kernel-devel package\r\n package:\r\n name: \"kernel-devel-{{ ansible_kernel }}\"\r\n state: present\r\n\r\n# Load required kernel modules using mo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1199,
"all_permissive": false
} |
ansible_role | aatirs7/ansibletest | 9935569bae8ec4decad2c50ffa99402526b5a5f3 | 0 | project-root/roles/kube_init | 8,186 | [
"no_license"
] | [
{
"path": "project-root/roles/kube_init/tasks/main.yml",
"content": "---\r\n\r\n# Initialize the Kubernetes control plane on the master node\r\n- name: Run kubeadm init on master node\r\n command: >\r\n kubeadm init\r\n --apiserver-advertise-address={{ ansible_host }}\r\n --pod-network-cidr=10.244... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1070,
"all_permissive": false
} |
ansible_role | aatirs7/ansibletest | 9935569bae8ec4decad2c50ffa99402526b5a5f3 | 0 | project-root/roles/packages | 8,186 | [
"no_license"
] | [
{
"path": "project-root/roles/packages/tasks/main.yml",
"content": "---\r\n\r\n# Unpack Kubernetes RPM archive\r\n- name: Unpack k8s archive\r\n unarchive:\r\n src: \"{{ k8s_tar }}\"\r\n dest: \"/path/to/k8s\" # Update path as needed\r\n remote_src: yes\r\n\r\n# Unpack CRI-O RPM archive\r\n- name... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1126,
"all_permissive": false
} |
ansible_role | aatirs7/ansibletest | 9935569bae8ec4decad2c50ffa99402526b5a5f3 | 0 | project-root/roles/swap_firewall | 8,186 | [
"no_license"
] | [
{
"path": "project-root/roles/swap_firewall/tasks/main.yml",
"content": "---\r\n\r\n# Disable swap immediately\r\n- name: Disable swap\r\n command: swapoff -a\r\n\r\n# Comment out any swap entries in /etc/fstab\r\n- name: Comment out swap entries in /etc/fstab\r\n replace:\r\n path: /etc/fstab\r\n r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 682,
"all_permissive": false
} |
ansible_role | aatirs7/ansibletest | 9935569bae8ec4decad2c50ffa99402526b5a5f3 | 0 | project-root/roles/user_config | 8,186 | [
"no_license"
] | [
{
"path": "project-root/roles/user_config/tasks/main.yml",
"content": "---\r\n\r\n# Set sysctl value for user namespaces\r\n- name: Set user.max_user_namespaces to 15000\r\n sysctl:\r\n name: user.max_user_namespaces\r\n value: 15000\r\n state: present\r\n reload: yes\r\n\r\n# Add subuids for t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 520,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/elasticsearch | 8,186 | [
"no_license"
] | [
{
"path": "roles/elasticsearch/tasks/security/setup_built_in_user.yml",
"content": "---\n- name: Restart elasticsearch\n service:\n name: elasticsearch\n state: restarted\n\n# updating elastic superuser password\n- name: Update elastic user password\n uri:\n url: \"http://{{ es_api_uri }}/_securi... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2470,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/filebeat | 8,186 | [
"no_license"
] | [
{
"path": "roles/filebeat/tasks/main.yml",
"content": "---\n# tasks file for filebeat\n- name: Import the Filebeat GPG Key\n rpm_key:\n key: https://artifacts.elastic.co/GPG-KEY-elasticsearch\n state: present\n\n- name: Installing ELK 7.x RPM repository\n yum_repository:\n name: elasticsearch\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2448,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/grafana | 8,186 | [
"no_license"
] | [
{
"path": "roles/grafana/tasks/main.yml",
"content": "---\n# tasks file for grafana\n- name: install grafana rpm key\n rpm_key:\n key: https://packages.grafana.com/gpg.key\n state: present\n\n- name: install grafana rpm repository\n yum_repository:\n name: grafana\n description: grafana pack... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 997,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/java | 8,186 | [
"no_license"
] | [
{
"path": "roles/java/tasks/main.yml",
"content": "---\n# tasks file for install java\n# Install Java 8\n- name: Install the Java 11 package\n yum:\n name: java-11-openjdk-devel\n state: present\n update_cache: true\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 168,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/kafka | 8,186 | [
"no_license"
] | [
{
"path": "roles/kafka/tasks/main.yml",
"content": "---\n# tasks file for Kafka\n\n- name: Create Kafka group\n group:\n name: \"{{ kafka_group }}\"\n state: present\n\n- name: Create Kafka user\n user:\n name: \"{{ kafka_user }}\"\n state: present\n group: \"{{ kafka_group }}\"\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3645,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/kibana | 8,186 | [
"no_license"
] | [
{
"path": "roles/kibana/tasks/main.yml",
"content": "---\n#tasks file for kibana\n- name: Import the Kibana GPG Key\n rpm_key:\n key: https://artifacts.elastic.co/GPG-KEY-elasticsearch\n state: present\n\n- name: Installing ELK 7.x RPM repository\n yum_repository:\n name: elasticsearch\n descr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1065,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/lets_encrypt_cert | 8,186 | [
"no_license"
] | [
{
"path": "roles/lets_encrypt_cert/tasks/main.yml",
"content": "---\n# create SSL cert with Let's Encrypt and integrate it into NGINX config file\n- name : Install epel-release repository\n shell: yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm\n\n- name: Install certb... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1226,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/logstash | 8,186 | [
"no_license"
] | [
{
"path": "roles/logstash/tasks/main.yml",
"content": "---\n# tasks file for logstash\n- name: Import the Logstash GPG Key\n rpm_key:\n key: https://artifacts.elastic.co/GPG-KEY-elasticsearch\n state: present\n\n- name: Installing ELK 7.x RPM repository\n yum_repository:\n name: elasticsearch\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2937,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/metricbeat | 8,186 | [
"no_license"
] | [
{
"path": "roles/metricbeat/tasks/main.yml",
"content": "---\n# tasks file for metricbeat installation and configuration\n- name: Import the metricbeat GPG Key\n rpm_key:\n key: https://artifacts.elastic.co/GPG-KEY-elasticsearch\n state: present\n\n- name: Installing metricbeat 7.x from the RPM repos... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1080,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/nginx | 8,186 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n#install and config Nginx server as a reverce proxy\n\n- name: Create Nginx group\n group:\n name: \"{{ nginx_group }}\"\n state: present\n\n- name: Create Nginx user\n user:\n name: \"{{ nginx_user }}\"\n state: present\n group: \"{{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1761,
"all_permissive": false
} |
ansible_role | Andr1500/ELK_NGINX_Kafka_Grafana | d600304c109f33ff20c01b32f129d50563550ebe | 0 | roles/ssl_cert | 8,186 | [
"no_license"
] | [
{
"path": "roles/ssl_cert/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - ssl_cert\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 67
},
{
"path": "roles/ssl_cert/vars/main.yml",
"content": "---\n# vars file for ssl_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 4197,
"all_permissive": false
} |
ansible_role | andremmfaria/vanhack-devops-challenge | f99f8da18e86f6ab5c634fd816a6a368c777ed55 | 0 | challenge-0/roles/nginx | 8,186 | [
"no_license"
] | [
{
"path": "challenge-0/roles/nginx/tasks/main.yml",
"content": "---\n- name: Install nginx\n apt: \n name: nginx \n state: present\n\n- name: Create ssl certificates\n include_tasks: ssl.yml\n\n- name: Remove all configured websites\n shell: |\n rm -rf /etc/nginx/sites-available/*\n\n- name: Cop... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1647,
"all_permissive": false
} |
ansible_role | andremmfaria/vanhack-devops-challenge | f99f8da18e86f6ab5c634fd816a6a368c777ed55 | 0 | challenge-0/roles/php | 8,186 | [
"no_license"
] | [
{
"path": "challenge-0/roles/php/tasks/main.yml",
"content": "- name: Install PHP\n apt: \n package: \"{{ item }}\"\n state: present\n force: yes\n with_items:\n - php7.2\n - php7.2-fpm\n - php7.2-enchant\n - php7.2-IDNA_Convert\n - php7.2-mbstring\n - php7.2-mysql\n - php7.2... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 303,
"all_permissive": false
} |
ansible_role | andremmfaria/vanhack-devops-challenge | f99f8da18e86f6ab5c634fd816a6a368c777ed55 | 0 | challenge-0/roles/rds | 8,186 | [
"no_license"
] | [
{
"path": "challenge-0/roles/rds/tasks/main.yml",
"content": "- name: Create RDS instance\n rds:\n command: create\n instance_name: wordpress-db\n db_engine: MySQL\n size: '20'\n instance_type: db.t2.micro\n username: \"{{ mysql_user }}\"\n password: \"{{ <PASSWORD> }}\"\n security_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 443,
"all_permissive": false
} |
ansible_role | andremmfaria/vanhack-devops-challenge | f99f8da18e86f6ab5c634fd816a6a368c777ed55 | 0 | challenge-0/roles/wordpress | 8,186 | [
"no_license"
] | [
{
"path": "challenge-0/roles/wordpress/tasks/deploy.yml",
"content": "- name: Download and extract Wordpress archive\n unarchive: \n src: https://wordpress.org/latest.tar.gz \n dest: \"{{ wordpress_path }}\"\n copy: no\n remote_src: yes\n\n- name: Copy config to remote host\n template: \n s... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 626,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/auth_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/auth_role/tasks/install.yml",
"content": "- name: Authorization | Create subfolder\n file:\n path: \"{{ role_dir }}\"\n state: directory\n mode: '0755'\n\n\n#---- Create OIDC secret\n- name: Setup | Stat for UUID file\n stat:\n path: \"{{ role_dir ... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 7383,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/cert_manager_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/cert_manager_role/tasks/install.yml",
"content": "- name: Cert-manager | Template namespace manifest\n template:\n src: cert-manager-namespace.yml\n dest: \"{{ role_dir }}/cert-manager-namespace.yml\"\n\n- name: Cert-manager | Create namespace manifest\n ... | {
"task_files": 6,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 12121,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/certs_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/certs_role/tasks/install.yml",
"content": "- name: Certificates | Check if CA exists\n stat:\n path: \"{{ ca_path }}.pem\"\n register: ca\n\n- name: Certificates | Create a self-signed CA\n block:\n - name: Certificates | Check for cfssl\n stat:\n ... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1486,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/dash_proxy_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/dash_proxy_role/defaults/main.yml",
"content": "task_modes:\n - download\n - install\n\ndash_proxy_namespace: kube-system\nsubfolder: \"dash-proxy-role\"\nrole_dir: \"{{ grayskull_dir }}/{{ subfolder }}\"\n\ndash_proxy_file_location: \"{{ role_dir }}/dash-prox... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 3035,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/dashboard_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/dashboard_role/tasks/main.yml",
"content": "- name: Dashboard | Run tasks\r\n include_tasks: \"{{ line_item }}.yml\"\r\n with_items: \"{{ task_modes }}\"\r\n loop_control:\r\n loop_var: line_item\r\n\r\n\r\n",
"license_type": "no_license",
"detecte... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 11367,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/elk_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/elk_role/tasks/download.yml",
"content": "- name: ELK | Create subfolder\n file:\n path: \"{{ role_dir }}\"\n state: directory\n mode: '0755'\n\n- name: ELK | Download Elasticsearch chart\n shell: \"{{ bin_dir }}/helm fetch \\\n --repo {{ helm_elas... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 15,
"total_bytes": 13956,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/gitops_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/gitops_role/templates/helmops-values.yml",
"content": "chartSyncInterval: \"1m\"\r\n\r\ngit:\r\n url: \"{{ git_repo_url }}\"\r\n ssh:\r\n secretName: \"{{ flux_secret_name }}\"\r\n pollInterval: \"1m\"\r\n\r\nhelm:\r\n versions: \"v3\"",
"license_type... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 5501,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/ingress_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/ingress_role/tasks/install.yml",
"content": "- name: Ingress | Create subfolder\n file:\n path: \"{{ role_dir }}\"\n state: directory\n mode: '0755'\n\n- name: Ingress | Template values file\n template:\n src: \"ingress-values.yml\"\n dest: \"{{... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 5561,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/ion_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/ion_role/tasks/gitops-template.yml",
"content": "- name: Ion | Create namespace folder\n file:\n path: \"{{ gitops_namespace_dir }}\"\n state: directory\n mode: '0755'\n\n- name: Ion | Create workloads folder\n file:\n path: \"{{ gitops_workload_di... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 3497,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/prometheus_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/prometheus_role/templates/prometheus-namespace.yml",
"content": "---\napiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ prometheus_namespace }}\n labels:\n name: {{ prometheus_namespace }}",
"license_type": "no_license",
"detected_licenses": [],... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 10405,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/registry_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/registry_role/tasks/main.yml",
"content": "- name: Registry | Run tasks\r\n include_tasks: \"{{ line_item }}.yml\"\r\n with_items: \"{{ task_modes }}\"\r\n loop_control:\r\n loop_var: line_item\r\n",
"license_type": "no_license",
"detected_licenses... | {
"task_files": 6,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 10,
"total_bytes": 16279,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/rook_cassandra_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/rook_cassandra_role/defaults/main.yml",
"content": "task_modes:\r\n - install\r\n\r\nrook_cas_namespace: \"default\" # Represents which namespace the actual cluster is deployed to\r\nrook_cas_op_namespace: \"grayskull-cassandra\" # where the operator will l... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 6270,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | kubernetes/ansible/playbooks/roles/rook_ceph_role | 8,188 | [
"no_license"
] | [
{
"path": "kubernetes/ansible/playbooks/roles/rook_ceph_role/tasks/install.yml",
"content": "---\n- name: Rook Ceph | Templates list\n set_fact:\n rook_ceph_role_templates:\n - { file: rook-ceph-namespace.yml }\n - { file: rook-ceph-block-sc.yml }\n - { file: rook-ceph-dashboard-ingress.y... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 20,
"total_bytes": 19495,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | swarm/ansible/roles/docker | 8,188 | [
"no_license"
] | [
{
"path": "swarm/ansible/roles/docker/defaults/main.yml",
"content": "---\ndocker_storage_folder: /storage/docker\nhostname: \"{{hostvars[groups['swarm-setup-delegate'][0]]['public_ip']}}\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 115
},
{
"path": "swarm/ans... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 8327,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | swarm/ansible/roles/services | 8,188 | [
"no_license"
] | [
{
"path": "swarm/ansible/roles/services/templates/security.yml",
"content": "version: '{{compose_syntax_version}}'\n\nnetworks:\n {{security_network}}:\n external: true\n {{proxy_network}}:\n external: true\n db:\n\nvolumes:\n mysql_data:\n\nservices:\n keycloak:\n image: {{docker_registry}}... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 19398,
"all_permissive": false
} |
ansible_role | aperullo/grayskull | 9c0dcda2c3a0b9d7ea980dcfadefc94518c4f62d | 0 | swarm/ansible/roles/swarm | 8,188 | [
"no_license"
] | [
{
"path": "swarm/ansible/roles/swarm/defaults/main.yml",
"content": "---\nswarm_advertise_interface: eth0\nswarm_listen_host: 0.0.0.0\nswarm_listen_port: 2377\ndocker_daemon_host: 0.0.0.0\ndocker_daemon_listen_port: 2376\ntlsverify: true\nbin_dir: /usr/local/bin\ntlscacert: \"{{grayskull_dir}}/ca.pem\"\ntls... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 4018,
"all_permissive": false
} |
ansible_role | simpsonw/vagrant-ansible | ca83f1b553b9fe8b4ac75cc15a9b28055f332bb4 | 0 | roles/webserver | 8,188 | [
"no_license"
] | [
{
"path": "roles/webserver/tasks/php.yml",
"content": "---\n# Install php and packages, PEAR and packages\n\n- name: php | install php\n apt: name=php5 state=present\n\n- name: php | Install required PHP packages.\n apt: name=\"{{ item }}\" state=installed\n with_items: \"{{ php_packages }}\"\n \n- na... | {
"task_files": 8,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 12449,
"all_permissive": false
} |
ansible_role | shunya-sasaki/rhel-ansible | 50e2df06cef59324777eea2ebee8912e50dbb50d | 0 | roles/common | 8,188 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "- name: Install vim\n become: yes\n dnf:\n name: vim\n state: latest\n\n- name: Install git\n become: yes\n dnf:\n name: git\n state: latest\n\n- name: Install unzip, bzip2, and xz\n become: yes\n dnf:\n name:\n - unzip\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 347,
"all_permissive": false
} |
ansible_role | shunya-sasaki/rhel-ansible | 50e2df06cef59324777eea2ebee8912e50dbb50d | 0 | roles/cpp | 8,188 | [
"no_license"
] | [
{
"path": "roles/cpp/tasks/main.yml",
"content": "- name: Install C compiler\n become: yes\n dnf:\n name: gcc\n state: latest\n\n- name: Install C++ compiler\n become: yes\n dnf:\n name: gcc-c++\n state: latest\n\n- name: Install Clang compiler\n become: yes\n dnf:\n name: clang\n st... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 416,
"all_permissive": false
} |
ansible_role | shunya-sasaki/rhel-ansible | 50e2df06cef59324777eea2ebee8912e50dbb50d | 0 | roles/docker | 8,188 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yml",
"content": "- name: Install dnf-pugins-core\n become: yes\n dnf:\n name: dnf-plugins-core\n state: latest\n\n- name: Add repo for docker\n become: yes\n command: dnf config-manager --add-repo=https://download.docker.com/linux/rhel/docker-ce.repo\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 822,
"all_permissive": false
} |
ansible_role | shunya-sasaki/rhel-ansible | 50e2df06cef59324777eea2ebee8912e50dbb50d | 0 | roles/python | 8,188 | [
"no_license"
] | [
{
"path": "roles/python/tasks/main.yml",
"content": "- name: If Python 3 is already installed, do nothing\n become: yes\n stat:\n path: /opt/Python/Python-{{ python_version }}/bin/python3\n register: python3_installed\n\n- name: Install Python 3 dependencies\n become: yes\n dnf:\n name:\n - ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1882,
"all_permissive": false
} |
ansible_role | matofeder/deploy | c2271c49a7af90f8f4ef597bdf41713d0de64a6a | 0 | roles/common | 8,188 | [
"no_license"
] | [
{
"path": "roles/common/tasks/main.yml",
"content": "---\n# tasks file for common\n- name: install commons\n raw: apt -y install python-simplejson\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 92
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 92,
"all_permissive": false
} |
ansible_role | matofeder/deploy | c2271c49a7af90f8f4ef597bdf41713d0de64a6a | 0 | roles/vim | 8,188 | [
"no_license"
] | [
{
"path": "roles/vim/tasks/main.yml",
"content": "---\n# tasks file for vim\n\n- name: install vim\n apt:\n name: \"{{ item }}\"\n state: present\n with_items:\n - vim\n tags:\n - vim\n\n- name: vimrc\n copy: src=vimrc dest=\"/etc/vim/vimrc\"\n tags:\n - vim\n - vimrc\n \n- name: vund... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1405,
"all_permissive": false
} |
ansible_role | latam-tech-office/forum2017 | 42b822af07e7cc8e75b539d2c8266be6d13348a4 | 0 | roles/3scale | 8,188 | [
"no_license"
] | [
{
"path": "roles/3scale/tasks/main.yaml",
"content": "- name: Delete any existing namespaces\n command: oc delete project {{ threescale_namespace }}\n ignore_errors: True\n tags:\n - 3scale\n\n- name: Creating the Project{{ ':' }} {{ threescale_namespace }}\n command: oadm new-project {{ threescale_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 724,
"all_permissive": false
} |
ansible_role | latam-tech-office/forum2017 | 42b822af07e7cc8e75b539d2c8266be6d13348a4 | 0 | roles/3scale_config | 8,188 | [
"no_license"
] | [
{
"path": "roles/3scale_config/tasks/main.yaml",
"content": "- name: Wait for 3Scale Admin service to be available\n uri: url=\"http://system-provider.3scale.svc.cluster.local:3000\" status_code=200\n register: threescale_wait\n until: threescale_wait.status == 200\n retries: 60\n delay: 10\n tags:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 9538,
"all_permissive": false
} |
ansible_role | azukiapp/docker-deploy | c0f17d0c7da0980d3a914bbd7c642807ae611496 | 9 | latest/playbooks/roles/configure | 8,188 | [
"no_license"
] | [
{
"path": "latest/playbooks/roles/configure/defaults/main.yml",
"content": "---\n# defaults file for configure\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 34
},
{
"path": "latest/playbooks/roles/configure/templates/azk-agent.conf.j2",
"content": "descript... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 13,
"total_bytes": 7815,
"all_permissive": false
} |
ansible_role | azukiapp/docker-deploy | c0f17d0c7da0980d3a914bbd7c642807ae611496 | 9 | latest/playbooks/roles/envs | 8,188 | [
"no_license"
] | [
{
"path": "latest/playbooks/roles/envs/handlers/main.yml",
"content": "---\n# handlers file for envs\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 29
},
{
"path": "latest/playbooks/roles/envs/vars/main.yml",
"content": "---\n# vars file for envs\n",
"li... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1104,
"all_permissive": false
} |
ansible_role | azukiapp/docker-deploy | c0f17d0c7da0980d3a914bbd7c642807ae611496 | 9 | latest/playbooks/roles/install | 8,188 | [
"no_license"
] | [
{
"path": "latest/playbooks/roles/install/handlers/main.yml",
"content": "---\n# handlers file for install\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 32
},
{
"path": "latest/playbooks/roles/install/defaults/main.yml",
"content": "---\n# defaults file for... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1250,
"all_permissive": false
} |
ansible_role | khmarochos/percona-xtradb-cluster | 6278ad6028bba96e0bc3af950d4ad0cb493c0e47 | 2 | roles/nodes | 8,188 | [
"permissive"
] | [
{
"path": "roles/nodes/templates/pxc_node_datadisk.ks.j2",
"content": "# Install OS instead of upgrade\ninstall\n# Use CD installation\ncdrom\n# Root password\nrootpw --iscrypted !!\n# System authorization information\nauth --useshadow --passalgo=<PASSWORD>\n# Firewall configuration\nfirewall --enabled --po... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 5611,
"all_permissive": true
} |
ansible_role | khmarochos/percona-xtradb-cluster | 6278ad6028bba96e0bc3af950d4ad0cb493c0e47 | 2 | roles/nodes_configuration | 8,188 | [
"permissive"
] | [
{
"path": "roles/nodes_configuration/tasks/configure_cluster.yaml",
"content": "---\n\n- name: \"Create the configuration directory for the {{ percona_cluster }} cluster\"\n ansible.builtin.file:\n path: \"{{ cluster_spool_directory }}\"\n state: directory\n mode: 0700\n force: no\n\n- name: \"... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2771,
"all_permissive": true
} |
ansible_role | khmarochos/percona-xtradb-cluster | 6278ad6028bba96e0bc3af950d4ad0cb493c0e47 | 2 | roles/nodes_firewall | 8,188 | [
"permissive"
] | [
{
"path": "roles/nodes_firewall/handlers/main.yaml",
"content": "---\n\n- name: Reload the firewalld service\n listen: firewalld_reload\n ansible.builtin.service:\n name: firewalld\n state: reloaded\n\n- name: Add the default interface to the trusted zone\n listen: firewalld_reload\n ansible.posix... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1801,
"all_permissive": true
} |
ansible_role | khmarochos/percona-xtradb-cluster | 6278ad6028bba96e0bc3af950d4ad0cb493c0e47 | 2 | roles/nodes_percona_cluster | 8,188 | [
"permissive"
] | [
{
"path": "roles/nodes_percona_cluster/tasks/update_my_cnf.yaml",
"content": "---\n\n- name: Create or update the root's ~/.my.cnf file\n ansible.builtin.template:\n src: .my.cnf.j2\n dest: /root/.my.cnf\n owner: root\n group: root\n mode: 0600\n force: true\n no_log: true\n",
"licen... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 4019,
"all_permissive": true
} |
ansible_role | khmarochos/percona-xtradb-cluster | 6278ad6028bba96e0bc3af950d4ad0cb493c0e47 | 2 | roles/nodes_ssh_keys | 8,188 | [
"permissive"
] | [
{
"path": "roles/nodes_ssh_keys/tasks/main.yaml",
"content": "---\n\n- name: Add the SSH host key for each node\n ansible.builtin.include_tasks: ssh_key.yaml\n loop: \"{{ groups.percona }}\"\n loop_control:\n loop_var: percona_cluster_node\n",
"license_type": "permissive",
"detected_licenses":... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1103,
"all_permissive": true
} |
ansible_role | khmarochos/percona-xtradb-cluster | 6278ad6028bba96e0bc3af950d4ad0cb493c0e47 | 2 | roles/proxysql | 8,188 | [
"permissive"
] | [
{
"path": "roles/proxysql/tasks/cluster.yaml",
"content": "---\n\n- name: Create the spool directory\n ansible.builtin.file:\n path: \"{{ cluster_spool_directory }}\"\n mode: 0700\n state: directory\n recurse: true\n\n- name: \"Find the bootstrapper node of {{ percona_cluster }}\"\n ansible.bu... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 3226,
"all_permissive": true
} |
ansible_role | khmarochos/percona-xtradb-cluster | 6278ad6028bba96e0bc3af950d4ad0cb493c0e47 | 2 | roles/ssh_key | 8,188 | [
"permissive"
] | [
{
"path": "roles/ssh_key/tasks/main.yaml",
"content": "---\n\n- name: Create the directory for the RSA key\n ansible.builtin.file:\n name: \"{{ ssh_private_key_file | dirname }}\"\n state: directory\n mode: 0700\n recurse: true\n\n- name: Generate the RSA key\n community.crypto.openssh_keypair... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 600,
"all_permissive": true
} |
ansible_role | plesk/plesk-deploy-ansible | 54f76cec1390be0a09c6d218914cef56a5251f66 | 9 | roles/amazon-ec2 | 8,188 | [
"no_license"
] | [
{
"path": "roles/amazon-ec2/tasks/main.yml",
"content": "---\n\n- name: Find AMI Image by Name\n ec2_ami_find:\n name: \"{{ec2_ami_name}}\"\n region: \"{{ec2_region_id}}\"\n no_result_action: fail\n register: ami_find\n when: ec2_ami_id is undefined\n\n- name: ec2_ami_id is not defined in config... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1558,
"all_permissive": false
} |
ansible_role | plesk/plesk-deploy-ansible | 54f76cec1390be0a09c6d218914cef56a5251f66 | 9 | roles/azure-vm | 8,188 | [
"no_license"
] | [
{
"path": "roles/azure-vm/tasks/main.yml",
"content": "---\n- name: Provision Azure VM\n azure:\n name: \"{{azure_name}}\"\n role_size: \"{{azure_role_size}}\"\n image: \"{{azure_image}}\"\n location: \"{{azure_location}}\"\n user: \"{{azure_user}}\"\n ssh_cert_path: \"{{ssh_pubkey_file}}... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 361,
"all_permissive": false
} |
ansible_role | plesk/plesk-deploy-ansible | 54f76cec1390be0a09c6d218914cef56a5251f66 | 9 | roles/digitalocean-droplet | 8,188 | [
"no_license"
] | [
{
"path": "roles/digitalocean-droplet/tasks/main.yml",
"content": "---\n\n- name: Load credentials.yml with auth data\n include_vars:\n file: group_vars/credentials.yml\n name: auth\n\n- name: Create DigitalOcean Droplet\n digital_ocean:\n state: present\n command: droplet\n name: \"{{do_pr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 732,
"all_permissive": false
} |
ansible_role | plesk/plesk-deploy-ansible | 54f76cec1390be0a09c6d218914cef56a5251f66 | 9 | roles/plesk-configure | 8,188 | [
"no_license"
] | [
{
"path": "roles/plesk-configure/tasks/main.yml",
"content": "---\n\n- name: Download Plesk license file\n get_url: url={{plesk_license_url}} dest=/root/plsk-license.xml mode=0644\n when: plesk_license_url is defined\n ignore_errors: true\n\n- name: Install Plesk License from File\n command: plesk bin l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1141,
"all_permissive": false
} |
ansible_role | plesk/plesk-deploy-ansible | 54f76cec1390be0a09c6d218914cef56a5251f66 | 9 | roles/plesk-get-access | 8,188 | [
"no_license"
] | [
{
"path": "roles/plesk-get-access/tasks/main.yml",
"content": "---\n\n- name: Load credentials.yml with auth data\n include_vars:\n file: group_vars/credentials.yml\n name: auth\n\n- name: Plesk Access via token\n command: echo \"To access Plesk Panel you should follow the link in your browser.\"\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 610,
"all_permissive": false
} |
ansible_role | plesk/plesk-deploy-ansible | 54f76cec1390be0a09c6d218914cef56a5251f66 | 9 | roles/plesk-install | 8,188 | [
"no_license"
] | [
{
"path": "roles/plesk-install/tasks/main.yml",
"content": "---\n# This playbook contains common plays that will be run on all nodes.\n\n- name: Download one-click-installer\n get_url: url={{one_click_installer}} dest=/root/one-click-installer mode=0755\n\n- name: Install Plesk\n command: /root/one-click-... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 505,
"all_permissive": false
} |
ansible_role | plesk/plesk-deploy-ansible | 54f76cec1390be0a09c6d218914cef56a5251f66 | 9 | roles/plesk-multi-server-mn | 8,188 | [
"no_license"
] | [
{
"path": "roles/plesk-multi-server-mn/tasks/main.yml",
"content": "---\n# This playbook contains common plays that will be run on all nodes.\n\n- ini_file: dest=/usr/local/psa/admin/conf/panel.ini\n section=extensions\n option=catalog.url\n value={{extore_url}}\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 451,
"all_permissive": false
} |
ansible_role | plesk/plesk-deploy-ansible | 54f76cec1390be0a09c6d218914cef56a5251f66 | 9 | roles/ssh-available | 8,188 | [
"no_license"
] | [
{
"path": "roles/ssh-available/tasks/main.yml",
"content": "---\n\n- set_fact:\n ssh_delay: 60\n when: ssh_delay is undefined\n\n- set_fact:\n ssh_timeout: 400\n when: ssh_timout is undefined\n\n- name: Wait for SSH to come up\n wait_for:\n host: \"{{item}}\"\n port: 22\n delay: \"{{ssh_de... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 580,
"all_permissive": false
} |
ansible_role | plesk/plesk-deploy-ansible | 54f76cec1390be0a09c6d218914cef56a5251f66 | 9 | roles/swap-enabled | 8,188 | [
"no_license"
] | [
{
"path": "roles/swap-enabled/tasks/main.yml",
"content": "---\n# This playbook contains common plays that will be run on all nodes.\n\n- name: Create swapfile\n shell: if [ ! -f /swapfile ]; then fallocate -l {{swap_size}} /swapfile; fi\n register: result\n tags: swapfile\n\n- file: path=/swapfile mode=... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 556,
"all_permissive": false
} |
ansible_role | thiagoinacioalves/my_ansible_vagrant | 2ce42f41b6f50cb7888cfc72612a24d3df765cfb | 0 | roles/mysql | 8,188 | [
"no_license"
] | [
{
"path": "roles/mysql/tasks/main.yml",
"content": "---\r\n- name: Install pacotes do mysql no SO\r\n apt:\r\n name: \"{{ item }}\"\r\n state: latest\r\n with_items:\r\n - mysql-server-5.6\r\n - python-mysqldb\r\n\r\n- name: cria banco do mysql\r\n mysql_db:\r\n name: \"{{ wp_db_name }}\"\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 674,
"all_permissive": false
} |
ansible_role | thiagoinacioalves/my_ansible_vagrant | 2ce42f41b6f50cb7888cfc72612a24d3df765cfb | 0 | roles/webserver | 8,188 | [
"no_license"
] | [
{
"path": "roles/webserver/tasks/main.yml",
"content": "---\r\n- name: Install pacotes de dempendencia do SO\r\n apt:\r\n name: \"{{ item }}\"\r\n state: latest\r\n with_items:\r\n - php5\r\n - apache2\r\n - libapache2-mod-php5\r\n - php5-gd\r\n - libssh2-php\r\n - php5-mcrypt\r\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 243,
"all_permissive": false
} |
ansible_role | thiagoinacioalves/my_ansible_vagrant | 2ce42f41b6f50cb7888cfc72612a24d3df765cfb | 0 | roles/wordpress | 8,188 | [
"no_license"
] | [
{
"path": "roles/wordpress/tasks/main.yml",
"content": "---\r\n- name: Baixa o arquivo de instalacao do wordpress\r\n get_url:\r\n url: https://wordpress.org/wordpress-4.7.tar.gz\r\n dest: /tmp/wordpress.tar.gz \r\n\r\n- name: Descompactar arquivo\r\n unarchive:\r\n src: /tmp/wordpress.tar.gz\r\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1106,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/api-test-prep | 8,188 | [
"no_license"
] | [
{
"path": "roles/api-test-prep/tasks/main.yml",
"content": "---\n# api-test-prep/tasks/main.yml\n\n- name: Install node packages for api tests with npm\n command: \"npm install --production\"\n args:\n chdir: \"/opt/xos/tests/api\"\n tags:\n - skip_ansible_lint # run during testing only\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 293,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/api-tests | 8,188 | [
"no_license"
] | [
{
"path": "roles/api-tests/tasks/main.yml",
"content": "---\n# api-tests/tasks/main.yml\n\n- name: Copy apiary.apib to target location\n copy:\n src: \"{{ cord_dir }}/orchestration/xos/apiary.apib\"\n dest: \"/opt/xos/tests/api/apiary.apib\"\n\n- name: Run API tests\n command: \"npm test\"\n args:\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 678,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/automation-integration | 8,188 | [
"no_license"
] | [
{
"path": "roles/automation-integration/templates/do-enlist-compute-node.j2",
"content": "#!/bin/ash\n\nID=$1\nHOSTNAME=$2\nLOG=/etc/maas/ansible/logs/$ID.log\nCOMPUTE_USER=ubuntu\n\nINV=$(mktemp)\ncat >$INV <<EO_INV\n[head]\njuju-head-node.cord.lab ansible_user={{ ansible_user_id }}\n\n[compute]\n$HOSTNAME... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1299,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/compute-node-config | 8,188 | [
"no_license"
] | [
{
"path": "roles/compute-node-config/templates/openstack-compute.yaml.j2",
"content": "tosca_definitions_version: tosca_simple_yaml_1_0\n\nimports:\n - custom_types/xos.yaml\n\ndescription: Adds OpenStack compute nodes\n\ntopology_template:\n node_templates:\n\n# Site/Deployment, fully defined in deploym... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 5915,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/compute-node-enable | 8,188 | [
"no_license"
] | [
{
"path": "roles/compute-node-enable/tasks/main.yml",
"content": "---\n# compute-node-enable/tasks/main.yml\n\n- name: Load TOSCA to add OpenStack compute nodes\n command: \"python /opt/xos/tosca/run.py {{ xos_admin_user }} {{ cord_profile_dir }}/{{ item }}\"\n with_items:\n - openstack.yaml\n - ope... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 816,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/compute-node-enable-maas | 8,188 | [
"no_license"
] | [
{
"path": "roles/compute-node-enable-maas/tasks/main.yml",
"content": "---\n# compute-node-enable-maas/tasks/main.yml\n\n- name: Fetch generated nodes.yaml file\n fetch:\n src: \"{{ cord_profile_dir + '/' + item }}\"\n dest: \"/tmp/{{ item }}\"\n flat: yes\n fail_on_missing: yes\n with_items:\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1358,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/compute-prep | 8,188 | [
"no_license"
] | [
{
"path": "roles/compute-prep/tasks/main.yml",
"content": "---\n# file: roles/compute-prep/tasks/main.yml\n\n- name: Install packages\n apt:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n cache_valid_time: 3600\n with_items:\n - python-yaml\n\n- name: Add ubuntu user\n user:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1487,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/cord-profile | 8,188 | [
"no_license"
] | [
{
"path": "roles/cord-profile/files/disable-onboarding.yaml",
"content": "tosca_definitions_version: tosca_simple_yaml_1_0\n\ndescription: Disable builds for the Onboarding synchronizer\n\nimports:\n - custom_types/xos.yaml\n\ntopology_template:\n node_templates:\n xos:\n type: tosca.nodes.XOS\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 20,
"total_bytes": 36780,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/docker-install | 8,188 | [
"no_license"
] | [
{
"path": "roles/docker-install/defaults/main.yml",
"content": "---\n# docker-install/defaults/main.yml\n\ndocker_apt_repo: \"deb https://apt.dockerproject.org/repo ubuntu-trusty main\"\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 118
},
{
"path": "roles/doc... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1267,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/exampleservice-config | 8,188 | [
"no_license"
] | [
{
"path": "roles/exampleservice-config/tasks/main.yml",
"content": "---\n# exampleservice-config/tasks/main.yml\n\n- name: Create fake/empty ssh keys if profile hasn't created them\n copy:\n remote_src: True # file is local to the remote machine\n force: False # only copy if destination file doesn't ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1680,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/exampleservice-onboard | 8,188 | [
"no_license"
] | [
{
"path": "roles/exampleservice-onboard/defaults/main.yml",
"content": "---\n# exampleservice-onboard/defaults/main.yml\n\ncord_dir: \"{{ ansible_user_dir + '/cord' }}\"\ncord_profile_dir: \"{{ ansible_user_dir + '/cord_profile' }}\"\n\nxos_bootstrap_ui_port: 9001\n\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1694,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/fabric-compute-prep | 8,188 | [
"no_license"
] | [
{
"path": "roles/fabric-compute-prep/tasks/main.yml",
"content": "- name: Ensure no host entry for fabric interface\n uri:\n url: http://10.1.0.1:8181/onos/v1/hosts/{{ ansible_fabric.macaddress | replace(\":\", \"%3A\") }}/None\n method: DELETE\n user: onos\n password: <PASSWORD>\n ignore_erro... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 791,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/fabric-head-prep | 8,188 | [
"no_license"
] | [
{
"path": "roles/fabric-head-prep/tasks/main.yml",
"content": "- name: Check that fabric exists\n command: ifconfig fabric\n changed_when: false\n tags:\n - skip_ansible_lint # running a sub job\n\n# Needed for CPqD switch\n- name: Turn off TCP checksum offload on fabric interface\n become: yes\n co... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 549,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/fabric-pingtest | 8,188 | [
"no_license"
] | [
{
"path": "roles/fabric-pingtest/tasks/main.yml",
"content": "- name: Ping gateway IP addresses\n command: ping -c 20 {{ item }}\n with_items:\n - 10.6.1.1\n - 10.6.1.129\n - 10.6.1.193\n changed_when: false\n tags:\n - skip_ansible_lint # running a sub job\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 198,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/fabric-refresh | 8,188 | [
"no_license"
] | [
{
"path": "roles/fabric-refresh/tasks/main.yml",
"content": "- name: Remove old ONOS fabric configuration file\n file:\n path: \"{{ service_profile_repo_dest }}/{{ xos_configuration }}/network-cfg-quickstart.json\"\n state: absent\n\n- name: Rebuild and reinstall ONOS fabric configuration\n make:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 440,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/head-diag | 8,188 | [
"no_license"
] | [
{
"path": "roles/head-diag/tasks/main.yml",
"content": "---\n# head-diag/tasks/main.yml\n\n- name: Create diag_dir subdirs\n file:\n dest=\"~/{{ diag_dir }}/{{ item }}\"\n state=directory\n with_items:\n - head\n - juju\n - openstack\n - onos\n - docker\n\n- name: Head node diag collection\n s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3211,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/juju-finish | 8,188 | [
"no_license"
] | [
{
"path": "roles/juju-finish/tasks/main.yml",
"content": "---\n# juju-finish/tasks/main.yml\n\n# run another time, so services will be in juju_services list\n- name: Obtain Juju Facts after service creation\n juju_facts:\n register: result\n until: result | success\n retries: 3\n delay: 15\n\n# 1800s =... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1084,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/juju-setup | 8,188 | [
"no_license"
] | [
{
"path": "roles/juju-setup/tasks/main.yml",
"content": "---\n# roles/juju-setup/main/tasks.yml\n\n- name: Initialize Juju\n command: juju generate-config\n creates={{ ansible_user_dir }}/.juju/environments.yaml\n\n- name: Create Juju config file from template\n template:\n src=environments.yaml.j2\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 6717,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/maas-test-client-install | 8,188 | [
"no_license"
] | [
{
"path": "roles/maas-test-client-install/tasks/main.yml",
"content": "---\n# maas-test-client-install/tasks/main.yml\n\n- name: Create testclient LXD profile\n lxd_profile:\n name: testclient\n state: present\n config:\n user.user-data: |\n #cloud-config\n write_files:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1411,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/onos-cord-install | 8,188 | [
"no_license"
] | [
{
"path": "roles/onos-cord-install/defaults/main.yml",
"content": "---\n# onos-vm-install/defaults/main.yml\n\ntrust_store_pw: 222222\n\n# ONOS 1.7 not tagged yet, but latest is 1.7\nonos_docker_image: \"onosproject/onos:latest\"\n\nonos_cord_dest: \"{{ ansible_user_dir }}/onos-cord/\"\n\nnode_private_key: ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3652,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/onos-fabric-install | 8,188 | [
"no_license"
] | [
{
"path": "roles/onos-fabric-install/tasks/main.yml",
"content": "---\n# Common ONOS setup\n\n- name: Pull docker image for ONOS\n become: yes\n command: \"docker pull {{ onos_docker_image }}\"\n tags:\n - skip_ansible_lint # Should replace with http://docs.ansible.com/ansible/docker_module.html, when... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 987,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/pki-cert | 8,188 | [
"no_license"
] | [
{
"path": "roles/pki-cert/tasks/main.yml",
"content": "---\n# pki-cert/tasks/main.yml\n\n- name: Generate server private key (no pw)\n command: >\n openssl genrsa\n -out {{ pki_dir }}/intermediate_ca/private/{{ item.cn }}_key.pem\n args:\n creates: \"{{ pki_dir }}/intermediate_ca/private/{{ ite... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2662,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/pki-install | 8,188 | [
"no_license"
] | [
{
"path": "roles/pki-install/handlers/main.yml",
"content": "---\n# pki-install/handlers/main.yml\n\n- name: Run update-ca-certificates on head node\n become: yes\n command: update-ca-certificates\n\n- name: Copy root CA cert to all service VMs\n command: ansible services -b -u ubuntu -m copy -a \"src=/u... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1339,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/pki-intermediate-ca | 8,188 | [
"no_license"
] | [
{
"path": "roles/pki-intermediate-ca/tasks/main.yml",
"content": "---\n# pki-ca/tasks/main.yml\n\n- name: Create intermediate CA directory\n become: yes\n file:\n dest: \"{{ pki_dir }}/intermediate_ca\"\n state: directory\n owner: \"{{ ansible_user_id }}\"\n mode: 0755\n\n- name: Create interm... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3868,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/pki-root-ca | 8,188 | [
"no_license"
] | [
{
"path": "roles/pki-root-ca/tasks/main.yml",
"content": "---\n# pki-root-ca/tasks/main.yml\n\n- name: Make sure credentials directory has proper ownership\n become: yes\n file:\n dest: \"{{ credentials_dir }}\"\n state: directory\n owner: \"{{ ansible_user_id }}\"\n mode: 0700\n\n- name: Crea... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2712,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/platform-check | 8,188 | [
"no_license"
] | [
{
"path": "roles/platform-check/tasks/main.yml",
"content": "---\n# platform-check/tasks/main.yml\n\n- name: Ensure br-int exists on all compute nodes (check VTN)\n shell: ansible -i /etc/maas/ansible/pod-inventory compute -u ubuntu -m shell -s -a \"ovs-vsctl br-exists br-int\"\n register: result\n until... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1960,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/repo | 8,188 | [
"no_license"
] | [
{
"path": "roles/repo/defaults/main.yml",
"content": "---\n# repo/defaults/main.yml\n\ncord_dir: \"{{ ansible_user_dir + '/cord' }}\"\nrepo_dl_url: \"https://storage.googleapis.com/git-repo-downloads/repo\"\n\n# This is for repo v1.23, and will change, as repo_dl_url unfortunately lacks a version...\nrepo_c... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1555,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/teardown-openstack | 8,188 | [
"no_license"
] | [
{
"path": "roles/teardown-openstack/tasks/main.yml",
"content": "- name: Remove Juju directory\n file:\n path: \"{{ ansible_user_dir }}/.juju\"\n state: absent\n\n- name: Remove containers for the OpenStack services\n become: yes\n lxd_container:\n name: \"{{ item.name }}\"\n state: absent\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 483,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/teardown-profile | 8,188 | [
"no_license"
] | [
{
"path": "roles/teardown-profile/defaults/main.yml",
"content": "---\n# teardown-profile/defaults/main.yml\n\ncord_dir: \"{{ ansible_user_dir + '/cord' }}\"\n\ncord_profile_dir: \"{{ ansible_user_dir + '/cord_profile' }}\"\n\nxos_docker_networks:\n - \"xos\"\n\n",
"license_type": "no_license",
"de... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1201,
"all_permissive": false
} |
ansible_role | pan2za/platform-install | 667334f396ecdc9078b088ebbf44597818cfa3b3 | 0 | roles/test-subscriber-config | 8,188 | [
"no_license"
] | [
{
"path": "roles/test-subscriber-config/defaults/main.yml",
"content": "---\n# test-subscriber-config/defaults/main.yml\n\ncord_profile_dir: \"{{ ansible_user_dir + '/cord_profile' }}\"\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 110
},
{
"path": "roles/tes... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 349,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.