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
salvadormrf/multi-project-box
b640e9b7ca1d69f5de41c191ac7afbdddd3be9fb
1
deployment/ansible/playbook/roles/php5
7,347
[ "no_license" ]
[ { "path": "deployment/ansible/playbook/roles/php5/vars/main.yml", "content": "# php.ini\nphp_max_execution_time: '90'\nphp_display_errors: 'On'\nphp_display_startup_errors: 'On'\nphp_html_errors: 'On'\nphp_post_max_size: '24M'\nphp_upload_max_filesize: '32M'\nphp_date_timezone: 'Europe/London'\n", "lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 589, "all_permissive": false }
ansible_role
salvadormrf/multi-project-box
b640e9b7ca1d69f5de41c191ac7afbdddd3be9fb
1
deployment/ansible/playbook/roles/php5-fpm
7,347
[ "no_license" ]
[ { "path": "deployment/ansible/playbook/roles/php5-fpm/tasks/packages.yml", "content": "---\n- name: PHP5-FPM | Install required system packages.\n apt: >\n pkg={{ item }}\n state=installed\n update-cache=yes\n cache_valid_time=3600\n with_items:\n - php5-xcache\n - php5-fpm\n notify:\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1443, "all_permissive": false }
ansible_role
salvadormrf/multi-project-box
b640e9b7ca1d69f5de41c191ac7afbdddd3be9fb
1
deployment/ansible/playbook/roles/postgres
7,347
[ "no_license" ]
[ { "path": "deployment/ansible/playbook/roles/postgres/tasks/packages.yml", "content": "---\n- name: PostgreSQL | Install Packages\n apt: >\n pkg={{ item }}\n state=installed\n update-cache=yes\n cache_valid_time=3600\n with_items:\n - build-essential\n - postgresql\n - python-dev\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 523, "all_permissive": false }
ansible_role
salvadormrf/multi-project-box
b640e9b7ca1d69f5de41c191ac7afbdddd3be9fb
1
deployment/ansible/playbook/roles/staticapp
7,347
[ "no_license" ]
[ { "path": "deployment/ansible/playbook/roles/staticapp/tasks/directories.yml", "content": "---\n- name: StaticApp | Directories | Create root directory.\n file: >\n path=\"{{ project.root }}\"\n state=directory\n owner=\"{{ project.user }}\"\n group=\"{{ project.user }}\"\n tags:\n - config...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1202, "all_permissive": false }
ansible_role
salvadormrf/multi-project-box
b640e9b7ca1d69f5de41c191ac7afbdddd3be9fb
1
deployment/ansible/playbook/roles/ubuntu
7,347
[ "no_license" ]
[ { "path": "deployment/ansible/playbook/roles/ubuntu/tasks/uninstall.yml", "content": "---\n- name: Ubuntu | Services | Stop services before removing packages.\n sudo_user: root\n ignore_errors: yes\n service: >\n name={{ item }} \n state=stopped\n enabled=no\n with_items:\n - postfix\n - ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1260, "all_permissive": false }
ansible_role
salvadormrf/multi-project-box
b640e9b7ca1d69f5de41c191ac7afbdddd3be9fb
1
deployment/ansible/playbook/roles/uwsgi
7,347
[ "no_license" ]
[ { "path": "deployment/ansible/playbook/roles/uwsgi/tasks/logging.yml", "content": "---\n- name: uWsgi | Create log directory\n file: >\n dest=\"{{ project.root }}/logs/\"\n state=directory\n tags:\n - uwsgi\n - logs\n - provision", "license_type": "no_license", "detected_licenses": ...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1664, "all_permissive": false }
ansible_role
salvadormrf/multi-project-box
b640e9b7ca1d69f5de41c191ac7afbdddd3be9fb
1
deployment/ansible/playbook/roles/varnish
7,347
[ "no_license" ]
[ { "path": "deployment/ansible/playbook/roles/varnish/handlers/main.yml", "content": "---\n- name: start varnish\n sudo_user: root\n service: >\n name=varnish \n state=started \n enabled=yes\n\n- name: restart varnish\n sudo_user: root\n service: >\n name=varnish \n state=restarted \n e...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 1103, "all_permissive": false }
ansible_role
hagbarddenstore/nginx-ansible-example
bc8a127308a0ce990d2bb297f637103e7a768dd3
0
roles/nginx
7,347
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: configure virtual hosts\n template: >\n src=\"{{ item }}.j2\"\n dest=\"/etc/nginx/sites-enabled/{{ item }}\"\n with_items: \"{{ nginx_sites }}\"\n become: yes\n tags:\n - nginx\n - virtual-hosts\n", "license_type": "no_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 209, "all_permissive": false }
ansible_role
gajenc/train-devops
5003229b6b31ee6aef46e91b676d737a8917b48d
0
ansible/roles/common
7,347
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n- name: Install lsb_release\n yum: name=redhat-lsb-core state=present\n when: ansible_os_family == \"RedHat\"\n become: true\n\n- name: Reread ansible_lsb facts\n setup: filter=ansible_lsb*\n\n# - name: Enable RHEL extras repository\n# ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1358, "all_permissive": false }
ansible_role
gajenc/train-devops
5003229b6b31ee6aef46e91b676d737a8917b48d
0
ansible/roles/etcd
7,347
[ "no_license" ]
[ { "path": "ansible/roles/etcd/tasks/main.yml", "content": "---\n- name: Install etcd\n yum: name=etcd state=present\n become: true\n\n- name: Update etcd conf\n become: true\n copy: src=etcd.conf dest=/etc/etcd/etcd.conf mode=0644\n\n- name: restart and enable etcd services\n systemd: name=etcd daemon_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 620, "all_permissive": false }
ansible_role
gajenc/train-devops
5003229b6b31ee6aef46e91b676d737a8917b48d
0
ansible/roles/master
7,347
[ "no_license" ]
[ { "path": "ansible/roles/master/templates/api_server.j2", "content": "KUBE_API_ADDRESS=\"--address=0.0.0.0\"\nKUBE_API_PORT=\"--port=8080\"\nKUBELET_PORT=\"--kubelet_port=10250\"\nKUBE_ETCD_SERVERS=\"--etcd_servers={{ groups['etcd'] | map('map_format', 'http://%s:2379') | join(',') }}\"\nKUBE_SERVICE_ADDRES...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2787, "all_permissive": false }
ansible_role
gajenc/train-devops
5003229b6b31ee6aef46e91b676d737a8917b48d
0
ansible/roles/minion
7,347
[ "no_license" ]
[ { "path": "ansible/roles/minion/tasks/ssl_config.yml", "content": "---\n- name: Create worker key\n become: true\n command: openssl genrsa -out /etc/kubernetes/keys/worker-key.pem 2048 creates=/etc/kubernetes/keys/worker-key.pem\n\n- name: Create worker certificate signing request\n become: true\n comma...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 3736, "all_permissive": false }
ansible_role
sky29/hashicorp_vault_k8s_examples
4d8cd2fb8f838a28bb522d8c15889fdfef293899
0
ansible/roles/bitnami-rabbitmq
7,347
[ "no_license" ]
[ { "path": "ansible/roles/bitnami-rabbitmq/tasks/print-vault-secret.yml", "content": "# In mac:\n# command: ansible-playbook print-vault-secret.yml -vvvv\n\n# if you are getting this error: ERROR! A worker was found in a dead state \n# then try:\n# export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=yes\n# export no_...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 3114, "all_permissive": false }
ansible_role
sky29/hashicorp_vault_k8s_examples
4d8cd2fb8f838a28bb522d8c15889fdfef293899
0
ansible/roles/hashicorp-vault-setup
7,347
[ "no_license" ]
[ { "path": "ansible/roles/hashicorp-vault-setup/defaults/main.yml", "content": "---\n# defaults file for hashicorp-vault-setup", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 }, { "path": "ansible/roles/hashicorp-vault-setup/tasks/install-hashicorp-vault.yml", ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 3901, "all_permissive": false }
ansible_role
Guilherme-Silveira/elastic-terraform-gcp
196942355204ed9e10ebfa6ed37c8a6e2f81f27e
0
ansible/roles/build_hosts
7,347
[ "no_license" ]
[ { "path": "ansible/roles/build_hosts/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - build_hosts", "license_type": "no_license", "detected_licenses": [], "size_bytes": 69 }, { "path": "ansible/roles/build_hosts/handlers/main.yml", "content":...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 568, "all_permissive": false }
ansible_role
ifelsenayeem/ansible-create-user
4d3a0709c2a24b17801a76d200d20693b21c7304
1
roles/create-user
7,346
[ "no_license" ]
[ { "path": "roles/create-user/tasks/main.yml", "content": "---\n - name: Creating a user\n user:\n name: \"{{user_name}}\"\n password: \"{{<PASSWORD>}}\"\n state: present\n shell: /bin/bash\n system: no\n createhome: yes\n home: \"{{user_path}}\"\n sudo: yes\n\n - n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 670, "all_permissive": false }
ansible_role
teja-cloudnative/ansible
40cbe6ad14d364fb6b1b46d4b9be0fd355e9aff6
0
roles/common
7,346
[ "no_license" ]
[ { "path": "roles/common/tasks/download.yml", "content": "- name: Add application user\n ansible.builtin.user:\n name: roboshop\n state: present\n register: appUser\n\n- name: Download {{COMPONENT}} from git repo\n ansible.builtin.unarchive:\n src: https://github.com/roboshop-devops-project/{{COM...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1682, "all_permissive": false }
ansible_role
teja-cloudnative/ansible
40cbe6ad14d364fb6b1b46d4b9be0fd355e9aff6
0
roles/elk
7,346
[ "no_license" ]
[ { "path": "roles/elk/tasks/main.yml", "content": "- name: Setup Logstash\n ansible.builtin.import_role:\n name: elk\n tasks_from: logstash\n tags: logstash\n\n- name: Setup AFilebeat\n ansible.builtin.import_role:\n name: elk\n tasks_from: filebeat\n tags: filebeat", "license_type": "no_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 221, "all_permissive": false }
ansible_role
teja-cloudnative/ansible
40cbe6ad14d364fb6b1b46d4b9be0fd355e9aff6
0
roles/frontend
7,346
[ "no_license" ]
[ { "path": "roles/frontend/templates/nginx.conf", "content": "user nginx;\nworker_processes auto;\nerror_log /var/log/nginx/error.log;\npid /run/nginx.pid;\n\ninclude /usr/share/nginx/modules/*.conf;\n\nevents {\n worker_connections 1024;\n}\n#192.168.3.11 - - [16/Feb/2022:06:00:29 +0000] \"GET /api/user/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2157, "all_permissive": false }
ansible_role
teja-cloudnative/ansible
40cbe6ad14d364fb6b1b46d4b9be0fd355e9aff6
0
roles/prometheus
7,346
[ "no_license" ]
[ { "path": "roles/prometheus/templates/alertmanager.yml", "content": "route:\n group_by: ['alertname']\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 1h\n receiver: 'email'\nreceivers:\n - name: \"email\"\n email_configs:\n - to: \"<EMAIL>\"\n from: \"<EMAIL>\"\n smarth...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1041, "all_permissive": false }
ansible_role
teja-cloudnative/ansible
40cbe6ad14d364fb6b1b46d4b9be0fd355e9aff6
0
roles/rabbitmq
7,346
[ "no_license" ]
[ { "path": "roles/rabbitmq/vars/main.yml", "content": "COMPONENT: rabbitmq\nAPPTYPE: db", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "roles/rabbitmq/tasks/main.yml", "content": "- name: Setup Yum Repo for RabbitMQ\n ansible.builtin.shell: cur...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 766, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/playbooks/roles/docker
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/playbooks/roles/docker/tasks/main.yml", "content": "---\n- name: Install required packages\n command: \"sudo yum install -y yum-utils device-mapper-persistent-data lvm2\"\n\n- name: Set up stable repo\n command: \"sudo yum-config-manager --add-repo https://download...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 378, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/playbooks/roles/gpu-prom-exporter
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/playbooks/roles/gpu-prom-exporter/tasks/main.yml", "content": "---\n- name: Set up system service file\n template:\n src: gpu-prom-exporter.service.j2\n dest: /etc/systemd/system/gpu-prom-exporter.service\n owner: root\n group: root\n mode: 0644\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 812, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/playbooks/roles/helm
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/playbooks/roles/helm/tasks/main.yml", "content": "---\n- name: helm init\n command: \"helm init\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 45 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 45, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/playbooks/roles/kube-dashboard
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/playbooks/roles/kube-dashboard/tasks/main.yml", "content": "---\n- name: set up yml file\n template:\n src: kube-dashb-sa.yml.j2\n dest: ~/kube-dashb-sa.yml\n owner: hanwang\n group: hanwang\n mode: 0664\n\n- name: create service account for kubernete...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 261, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/playbooks/roles/node-util
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/playbooks/roles/node-util/tasks/main.yml", "content": "---\n- name: yum install python-pip\n command: \"sudo yum install python-pip -y\"\n\n- name: pip install NVIDIA-ml-py, prometheus_client\n command: \"sudo pip install nvidia-ml-py prometheus_client\"\n", "l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 193, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/playbooks/roles/nvidia
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/playbooks/roles/nvidia/tasks/main.yml", "content": "---\n- name: Download NVIDIA driver\n command: \"curl -LO http://us.download.nvidia.com/tesla/390.30/nvidia-diag-driver-local-repo-rhel7-390.30-1.0-1.x86_64.rpm\"\n\n- name: Install NVDIA driver\n command: \"sudo ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 502, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/playbooks/roles/nvidia-docker
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/playbooks/roles/nvidia-docker/tasks/main.yml", "content": "---\n- name: Add the package repositories\n shell: \"curl -s -L https://nvidia.github.io/nvidia-docker/centos7/x86_64/nvidia-docker.repo | sudo tee /etc/yum.repos.d/nvidia-docker.repo\"\n\n- name: Install NV...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 348, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/playbooks/roles/prom-pushgateway
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/playbooks/roles/prom-pushgateway/tasks/main.yml", "content": "---\n- name: Set up pushgateway.yml\n template:\n src: pushgateway.yml.j2\n dest: ~/pushgateway.yml\n owner: hanwang\n group: hanwang\n mode: 0600\n\n- name: Deploy Pushgateway-Prometheus\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 265, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/roles/docker-runtime-node
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/roles/docker-runtime-node/tasks/main.yml", "content": "---\n- name: set up docker daemon file for nodes\n template:\n src: daemon.json.j2\n dest: /etc/docker/daemon.json\n owner: root\n group: root\n mode: 0600\n\n- name: Start docker\n command: \"su...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 231, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/roles/prometheus
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/roles/prometheus/tasks/main.yml", "content": "---\n- name: helm add repo\n command: \"helm repo add coreos https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/\"\n\n- name: helm install prometheus operator\n command: \"helm install coreos/prometheus-operator --...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 419, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/roles/tensorflow
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/roles/tensorflow/tasks/main.yml", "content": "---\n- name: Set up tensorflow yml\n template:\n src: tensorflow.yml.j2\n dest: ~/tensorflow.yml\n owner: hanwang\n group: hanwang\n mode: 0644\n\n- name: deploy tensorflow\n command: \"kubectl create -f ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1624, "all_permissive": false }
ansible_role
wy2simple/myfunproject
f07592654ee1aca4a2840e5c1cea0d9725a49753
1
k8s-tensorflow-infrastructure/roles/wait-server-reboot
7,346
[ "no_license" ]
[ { "path": "k8s-tensorflow-infrastructure/roles/wait-server-reboot/tasks/main.yml", "content": "---\n- name: wait server reboot\n become: no\n local_action: wait_for host={{ hostvars[inventory_hostname].ansible_ssh_host }}\n state=started\n port=22\n delay=10\n timeout=600\n connect_timeout=...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 233, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/architecture/roles/cluster
7,346
[ "no_license" ]
[ { "path": "ansible/shared/architecture/roles/cluster/tasks/main.yaml", "content": "---\n- name: Installer les dépendances sur tous les nœuds\n hosts: k8s_cluster\n become: yes\n include_role:\n - dependencies\n\n- name: Configurer le nœud master\n hosts: master\n become: yes\n include_role:\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 669, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/architecture/roles/flannel
7,346
[ "no_license" ]
[ { "path": "ansible/shared/architecture/roles/flannel/tasks/main.yaml", "content": "- name: Apply Flannel CNI network to the cluster\n shell: |\n export KUBECONFIG=/home/vagrant/.kube/config\n kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml\n re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 312, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/architecture/roles/ingress-nginx
7,346
[ "no_license" ]
[ { "path": "ansible/shared/architecture/roles/ingress-nginx/tasks/main.yaml", "content": "# Installer le controlleur Ingress NGINX\n# kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/cloud/deploy.yaml loadBalancer\n- name: Déployer Ingress NGINX\n shell...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 724, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/architecture/roles/master
7,346
[ "no_license" ]
[ { "path": "ansible/shared/architecture/roles/master/tasks/main.yaml", "content": "- name: Initialize Kubernetes cluster on master\n shell: kubeadm init --pod-network-cidr=10.244.0.0/16 --apiserver-advertise-address=192.168.56.10\n register: kubeadm_init\n ignore_errors: yes\n\n- name: Debug kubeadm init\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1221, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/architecture/roles/rancher
7,346
[ "no_license" ]
[ { "path": "ansible/shared/architecture/roles/rancher/defaults/main.yaml", "content": "---\n# Defaults for rancher installation\n\nrancher_namespace: \"cattle-system\"\nrancher_hostname: \"rancher.samagp.com\"\ningress_tls: false\ncert_directory: \"/etc/kubernetes/pki\"\ncert_name: \"rancher-tls\"\nkubecfg_p...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2789, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/architecture/roles/workers
7,346
[ "no_license" ]
[ { "path": "ansible/shared/architecture/roles/workers/tasks/main.yaml", "content": "- name: Ensure .kube directory exists\n file:\n path: \"/home/vagrant/.kube\"\n state: directory\n mode: '0755'\n owner: vagrant\n group: vagrant\n\n- name: Copy kubeconfig to workers\n copy:\n src: \"/tmp...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 570, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/deploy/roles/build_docker
7,346
[ "no_license" ]
[ { "path": "ansible/shared/deploy/roles/build_docker/tasks/main.yml", "content": "# roles/build_docker/tasks/main.yml\n---\n- name: Debug afficher le chemin du projet cloné\n debug: \n var: git_clone_result\n\n- name: Construire l'image Docker avec un tag spécifique\n docker_image:\n build:\n pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 433, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/deploy/roles/clone_repo
7,346
[ "no_license" ]
[ { "path": "ansible/shared/deploy/roles/clone_repo/tasks/main.yml", "content": "---\n- name: Cloner le projet depuis Git\n git:\n repo: \"https://{{ composants.github_token }}@{{ github.repo_url }}\"\n dest: \"{{ github.project_dir }}\"\n version: \"{{ branch }}\"\n force: yes\n register: git_c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 302, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/deploy/roles/run_test
7,346
[ "no_license" ]
[ { "path": "ansible/shared/deploy/roles/run_test/tasks/main.yaml", "content": "---\n- name: Installer les dépendances nécessaires pour NVM\n apt:\n name:\n - curl\n - bash\n state: present\n\n- name: Télécharger et installer NVM\n shell: |\n curl -o- https://raw.githubusercontent.com/nvm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1487, "all_permissive": false }
ansible_role
vincentdione/infra
0beaf075721312a2d31d5106de8960b7cc4db546
0
ansible/shared/jenkins/roles/jenkins
7,346
[ "no_license" ]
[ { "path": "ansible/shared/jenkins/roles/jenkins/handlers/main.yaml", "content": "---\n- name: Redémarrer Jenkins\n systemd:\n name: jenkins\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 }, { "path": "ansible/shared/jenkins/roles/jen...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 4415, "all_permissive": false }
ansible_role
ankitalode/ansible-git
9cacd87fdf948a2e9e20cb6d27516af76702d509
0
roles/first_role
7,346
[ "no_license" ]
[ { "path": "roles/first_role/tasks/main.yml", "content": "---\n# tasks file for first_role\n- name: Copy file\n template:\n src: ../../../inventory.yml\n dest: /tmp/\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 112, "all_permissive": false }
ansible_role
ankitalode/ansible-git
9cacd87fdf948a2e9e20cb6d27516af76702d509
0
roles/verify_file
7,346
[ "no_license" ]
[ { "path": "roles/verify_file/vars/main.yml", "content": "---\n# vars file for verify_file", "license_type": "no_license", "detected_licenses": [], "size_bytes": 31 }, { "path": "roles/verify_file/tasks/main.yml", "content": "---\n# tasks file for verify_file\n- name: Verify copied fi...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 268, "all_permissive": false }
ansible_role
SchmidtJonathan1/gitlab_automate
be8fabb7e8e71c71b625f416a2dd5494570a5233
0
roles/gitlab-install
7,346
[ "no_license" ]
[ { "path": "roles/gitlab-install/tasks/gitlab-install.yml", "content": "---\n# /roles/gitlab-install/tasks/gitlab-install.yml\n- name: install gitlab finally ;)\n dnf:\n name: gitlab-ee\n state: latest\n \n- name: gitlab restart service\n shell: gitlab-ctl restart\n...\n", "license_type": "no_...
{ "task_files": 8, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 9, "total_bytes": 3207, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/cgroups
7,346
[ "no_license" ]
[ { "path": "roles/cgroups/templates/limits.conf.j2", "content": "[Unit]\nBefore=systemd-logind.service\n\n[Slice]\n{% for property in cgroups_properties %}\n{{ property.name }}={{ property.value }}\n{% endfor %}\n\n[Install]\nWantedBy=multi-user.target\n", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3138, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/cvmfs_opts
7,346
[ "no_license" ]
[ { "path": "roles/cvmfs_opts/tasks/main.yml", "content": "---\n# Complement Galaxy CVMFS role\n- name: Additional options for CernVM-FS config repository\n ansible.builtin.template:\n src: config.d/config_repo.local.j2\n dest: /etc/cvmfs/config.d/{{ cvmfs_config_repo.repository.repository }}.local\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 3382, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/environment
7,346
[ "no_license" ]
[ { "path": "roles/environment/README.md", "content": "# Environment\n\nThis role manages system-wide environment configuration files and shell\ninitialization scripts.\n\n## Features\n\n* Configure `/etc/environment` with system-wide environment variables\n* Manage shell initialization scripts in `/etc/profi...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 9025, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/fail2ban
7,346
[ "no_license" ]
[ { "path": "roles/fail2ban/templates/ignore.conf.j2", "content": "[DEFAULT]\nignoreip = {{ local_vlans|join(' ') }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 49 }, { "path": "roles/fail2ban/templates/sendmail.conf.j2", "content": "[DEFAULT]\n# Destinatio...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 9286, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/local_users
7,346
[ "no_license" ]
[ { "path": "roles/local_users/templates/sshd/mila_authorized_keys.j2", "content": "#!/bin/bash\nCACHE={{ local_users_authorized_keys_cache }}/mila\nGDOCS='{{ local_users_authorized_keys_url }}'\nUSER=$1\nGKEY=$(mktemp) || exit 1\n\nif curl -sL \"$GDOCS\" --connect-timeout 10 --max-time 10 > \"$GKEY\" 2>/dev/...
{ "task_files": 8, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 15953, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/modules
7,346
[ "no_license" ]
[ { "path": "roles/modules/tasks/main.yml", "content": "---\n- name: Install lua Debian\n ansible.builtin.apt:\n name:\n - lua5.1\n - liblua5.1-0\n - liblua5.1-0-dev\n - lua-json\n - lua-filesystem\n - lua-filesystem-dev\n - lua-posix\n - tcl\n when: ansible_facts[...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1988, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/motd
7,346
[ "no_license" ]
[ { "path": "roles/motd/defaults/main.yml", "content": "---\nmotd_scripts: []\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 21 }, { "path": "roles/motd/templates/motd_script.j2", "content": "#!/bin/bash\n# {{ ansible_managed }}\n{{ item.content }}\n", "li...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3042, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/mount
7,346
[ "no_license" ]
[ { "path": "roles/mount/handlers/main.yml", "content": "---\n- name: Ensure mountpoints permissions are correct\n ansible.builtin.file:\n path: \"{{ item.path }}\"\n owner: \"{{ item.owner | default('root') }}\"\n group: \"{{ item.group | default('root') }}\"\n mode: \"{{ item.mode | default('07...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 3027, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/msmtp
7,346
[ "no_license" ]
[ { "path": "roles/msmtp/templates/msmtprc.j2", "content": "# {{ ansible_managed }}\naccount default\ntls on\ntls_starttls on\ntls_certcheck off\nauth on\nhost {{ msmtp_host }}\nport {{ msmtp_port }}\nuser {{ msmtp_user }}\nfrom {{ msmtp_from }}\npassword {{ msmtp_password }}\n", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 2219, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/multipath
7,346
[ "no_license" ]
[ { "path": "roles/multipath/tasks/install-Debian.yml", "content": "---\n- name: Install multipath packages\n ansible.builtin.apt:\n update_cache: true\n name:\n - multipath-tools\n - multipath-tools-boot\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 148...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2965, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/packages
7,346
[ "no_license" ]
[ { "path": "roles/packages/README.md", "content": "# Packages\n\nA simple role for installing/removing packages without any configuration steps.\n\nTo install a package, add it to `packages_install_list`:\n\n```yaml\npackages_install_list:\n - ansible\n - python3\n```\n\nTo remove a package, add it to `pac...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 985, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/pam
7,346
[ "no_license" ]
[ { "path": "roles/pam/tasks/main.yml", "content": "---\n- name: Configure pam.d files\n loop: \"{{ pam_config }}\"\n when: pam_config is defined\n community.general.pamd:\n backup: \"{{ item.backup | default(omit) }}\"\n control: \"{{ item.control | mandatory }}\"\n module_arguments: \"{{ item.mo...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1956, "all_permissive": false }
ansible_role
mila-iqia/ansible-collection-linux_system
2473c3aa19dab90c5d17c43766c680158e28e6ab
0
roles/time
7,346
[ "no_license" ]
[ { "path": "roles/time/tasks/main.yml", "content": "---\n- name: Configure time\n ansible.builtin.import_tasks: time.yml\n when: baremetal|default(true)|bool\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 }, { "path": "roles/time/README.md", "content": ...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 2108, "all_permissive": false }
ansible_role
Hossam-Soliman-1864/udacity
1d2f186488be858d576c53b263143f6a041d8f85
0
.circleci/ansible/roles/deploy
7,346
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\n- name: Creates directory\n file:\n path: ~/backend\n state: directory\n\n- name: Copy files\n copy:\n src: \"artifact.tar.gz\"\n dest: \"~/backend/artifact.tar.gz\"\n \n\n- name: Extract \n unarchive:\n src: \"~/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1156, "all_permissive": false }
ansible_role
nucleuspoc/AnsibleTower
e88df9baf70d41e6bc42338e9b9f3f258da2c9db
0
roles/Create Ethernet Network
7,351
[ "no_license" ]
[ { "path": "roles/Create Ethernet Network/tasks/main.yml", "content": "- name: Create Ethernet network for Ansible Tower\n oneview_ethernet_network:\n state: present\n data:\n name: 'Ansible Tower 1'\n vlanId: '201'\n privateNetwork: false\n smartLink: false\n purpose: Managem...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 637, "all_permissive": false }
ansible_role
nucleuspoc/AnsibleTower
e88df9baf70d41e6bc42338e9b9f3f258da2c9db
0
roles/Create Volume
7,351
[ "no_license" ]
[ { "path": "roles/Create Volume/tasks/main.yml", "content": "#\n# gather Uri information and store as a local variable\n#\n- name: Gather facts about FC_r5\n oneview_storage_pool_facts:\n name: \"{{ Vol_Stor_Pool5 }}\"\n\n- set_fact: Vol_Stor_Pool5_uri=\"{{ storage_pools[0].uri }}\"\n\n- name: Gather fac...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 901, "all_permissive": false }
ansible_role
nucleuspoc/AnsibleTower
e88df9baf70d41e6bc42338e9b9f3f258da2c9db
0
roles/Delete Ethernet Network
7,351
[ "no_license" ]
[ { "path": "roles/Delete Ethernet Network/tasks/main.yml", "content": "- name: Ensure that the Ethernet Network is absent\n oneview_ethernet_network:\n state: absent\n data:\n name: 'Ansible Tower 1'\n\n- name: Ensure that the Ethernet Network is absent\n oneview_ethernet_network:\n state: ab...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 279, "all_permissive": false }
ansible_role
nucleuspoc/AnsibleTower
e88df9baf70d41e6bc42338e9b9f3f258da2c9db
0
roles/Delete Volume
7,351
[ "no_license" ]
[ { "path": "roles/Delete Volume/tasks/main.yml", "content": "- name: Delete the volume previously created with a Storage Pool\n oneview_volume:\n state: absent\n data:\n name: 'Tower Volume'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 138 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 138, "all_permissive": false }
ansible_role
ZoSam32/ansible_awsssm_lab
4ee9c99171467eb76725ea27e96cb256de9caeef
1
roles/install-apache
7,351
[ "no_license" ]
[ { "path": "roles/install-apache/tasks/main.yml", "content": "---\n\n- name: \"Install Apache yum\"\n yum:\n name: httpd\n state: latest\n\n- name: \"Start Apache\"\n service: name=httpd enabled=yes state=started", "license_type": "no_license", "detected_licenses": [], "size_bytes": 146 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 146, "all_permissive": false }
ansible_role
ZoSam32/ansible_awsssm_lab
4ee9c99171467eb76725ea27e96cb256de9caeef
1
roles/linux_java
7,351
[ "no_license" ]
[ { "path": "roles/linux_java/tasks/linux.yml", "content": "---\n# tasks file for apache\n\n- name: Install base packages\n package:\n name: ['wget','tar','unzip']\n state: present\n\n- name: Install Java\n yum:\n name: {{ java_package }}\n state: present", "license_type": "no_license", ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2049, "all_permissive": false }
ansible_role
ZoSam32/ansible_awsssm_lab
4ee9c99171467eb76725ea27e96cb256de9caeef
1
roles/linux_tomcat
7,351
[ "no_license" ]
[ { "path": "roles/linux_tomcat/README.md", "content": "Role Name\n=========\n\nlinux_tomcat :: Ansible Role used to install Tomcat on Linux Servers.\n\nRequirements\n------------\n\nTomcat is installed from a RPM which is pulled from a Source URL. Post installation we are using Template blocks to configure T...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 4733, "all_permissive": false }
ansible_role
ZoSam32/ansible_awsssm_lab
4ee9c99171467eb76725ea27e96cb256de9caeef
1
roles/web
7,351
[ "no_license" ]
[ { "path": "roles/web/tasks/main.yml", "content": "--- \n\n- name: \"copy webpage\"\n copy:\n src: \"{{ role_path }}/files/index.html\"\n dest: \"{{ install_path }}{{ index_file}}\"\n\n- name: \"Insert Ansible Time\"\n blockinfile:\n path: \"{{ install_path }}{{ index_file}}\"\n marker: \"<!--{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 362, "all_permissive": false }
ansible_role
GregMorel/Admin-TP8
1159f640cac25c4078c5fa817ba19f898f367cf9
0
roles/apache
7,351
[ "no_license" ]
[ { "path": "roles/apache/tasks/php7-install.yml", "content": "---\n\n#1. Cette tâche installe PHP7 et ses extensions\n- name: \"install php70 packages\"\n apt:\n name: \"php7.4\"\n state: latest\n changed_when: yes\n notify: [ \"apache restart\" ]\n", "license_type": "no_license", "detected_...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 736, "all_permissive": false }
ansible_role
jicarretero/DeployThings
20309424c784294125aa8939b184071a43159ee8
0
DeployDatabase/playbooks/roles/galera_cluster
7,351
[ "no_license" ]
[ { "path": "DeployDatabase/playbooks/roles/galera_cluster/tasks/main.yml", "content": "---\n- name: Add MariaDB Galera apt-Key\n apt_key: keyserver=keyserver.ubuntu.com id=BC19DDBA state=present\n\n- name: Add MariaDB Galera Repo.\n template: src=templates/galera.list.j2 dest=/etc/apt/sources.list.d/galera...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1421, "all_permissive": false }
ansible_role
jicarretero/DeployThings
20309424c784294125aa8939b184071a43159ee8
0
DeployDatabase/playbooks/roles/mysql_server
7,351
[ "no_license" ]
[ { "path": "DeployDatabase/playbooks/roles/mysql_server/files/tasks/main.yml", "content": "---\n- name: Install MySQL Server\n apt: name={{item}} update_cache=yes state=latest\n with_items:\n - mysql-server\n\n- name: Service start on primary node\n service: name=mysql state=restarted\n when: containe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 977, "all_permissive": false }
ansible_role
jicarretero/DeployThings
20309424c784294125aa8939b184071a43159ee8
0
DeployKeystone/playbooks/roles/keystone
7,351
[ "no_license" ]
[ { "path": "DeployKeystone/playbooks/roles/keystone/tasks/main.yml", "content": "---\n- name: Install keystone packages\n apt: pkg={{item}} state=installed\n with_items:\n - keystone \n - python-openstackclient \n - memcached \n - python-memcache\n - python-mysqldb\n\n- name: Configure keystone admin ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1805, "all_permissive": false }
ansible_role
jicarretero/DeployThings
20309424c784294125aa8939b184071a43159ee8
0
DeployKeystone/playbooks/roles/openstack_liberty
7,351
[ "no_license" ]
[ { "path": "DeployKeystone/playbooks/roles/openstack_liberty/tasks/main.yml", "content": "---\n- name: Install cloud-ring\n apt: name=software-properties-common state=latest update-cache=yes\n\n- name: Add Liberty Repositories\n shell: add-apt-repository -y cloud-archive:liberty\n\n- name: Install opensta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 329, "all_permissive": false }
ansible_role
CiscoSE/DEVNET-2594-CLUS18
1051de507d82cb0e69a2eb7d1c2d40453e4cbab1
1
vxlan/roles/common
7,351
[ "no_license" ]
[ { "path": "vxlan/roles/common/tasks/main.yml", "content": "\n- name: Set switch hostname\n nxos_config:\n lines: hostname {{ inventory_hostname }}\n provider: \"{{ nxos_provider }}\"\n\n- name: Set switch interfaces to default to L3\n nxos_config:\n lines: no system default switchport\n provid...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 561, "all_permissive": false }
ansible_role
CiscoSE/DEVNET-2594-CLUS18
1051de507d82cb0e69a2eb7d1c2d40453e4cbab1
1
vxlan/roles/leaf
7,351
[ "no_license" ]
[ { "path": "vxlan/roles/leaf/vars/main.yml", "content": "---\n\n nxos_provider:\n username: \"{{ user }}\"\n password: \"{{ pwd }}\"\n transport: nxapi\n timeout: 30\n host: \"{{ ansible_host }}\"\n\n features:\n - { feature: bgp }\n - { feature: ospf }\n - { feature: \"nv overlay\" }\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3677, "all_permissive": false }
ansible_role
CiscoSE/DEVNET-2594-CLUS18
1051de507d82cb0e69a2eb7d1c2d40453e4cbab1
1
vxlan/roles/tenant
7,351
[ "no_license" ]
[ { "path": "vxlan/roles/tenant/tasks/main.yml", "content": "- name: CONFIGURE VLAN TO VNI MAPPING\n nxos_vlan:\n vlan_id: \"{{ item.vlan_id }}\"\n mapped_vni: \"{{ item.vni_id }}\"\n provider: \"{{ nxos_provider }}\"\n with_items: \n - \"{{ vlans_l2vni }}\"\n - \"{{ vlans_l3vni }}\"\n\n- name: C...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3760, "all_permissive": false }
ansible_role
shubhamrajput11/project3try1
50d25595a33a53f4612d4e40d12e0c0c696471d5
0
.circleci/ansible/roles/deploy
7,340
[ "no_license" ]
[ { "path": ".circleci/ansible/roles/deploy/tasks/readme.md", "content": "## Deployment playbook goes here.y\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": ".circleci/ansible/roles/deploy/tasks/main.yml", "content": "---\n- name: \"Move backend...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1394, "all_permissive": false }
ansible_role
derekhiggins/collaborate
111a4a1349fb494088dc32c563992e0a3d8e466b
0
agent/roles/manifests
7,340
[ "permissive" ]
[ { "path": "agent/roles/manifests/tasks/install-config.yml", "content": "- name: Get mirror settings\n set_fact:\n image_content_sources: \"{{ lookup('file', mirror_info_file) }}\"\n when: mirror_images\n\n- name: write the install-config.yaml \n template:\n src: \"templates/install-config_yaml.j2\"...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 11792, "all_permissive": true }
ansible_role
nashorny/ansible_iac
929432828fd1d4a89c35bfbe26b170594f4f77bb
0
ansible/playbooks/roles/elk-install
7,340
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/elk-install/tasks/elk-install-logstash.yml", "content": "- name: elk-install-logstash > Install logstash\n package: state=present name=logstash\n environment:\n JAVA_HOME: '/usr/share/elasticsearch/jdk'\n\n- name: elk-install-logstash > transfer logstash config files ...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2934, "all_permissive": false }
ansible_role
nashorny/ansible_iac
929432828fd1d4a89c35bfbe26b170594f4f77bb
0
ansible/playbooks/roles/kube-install
7,340
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/kube-install/tasks/main.yml", "content": "---\n- name: kube-master > kube-install-tasks\n become: true\n import_tasks: kube-install-tasks.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 99 }, { "path": "ansible/playbooks/r...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2729, "all_permissive": false }
ansible_role
nashorny/ansible_iac
929432828fd1d4a89c35bfbe26b170594f4f77bb
0
ansible/playbooks/roles/kube-master
7,340
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/kube-master/templates/ingress-svc.yml", "content": "kind: Service\napiVersion: v1\nmetadata:\n name: ingress-nginx-svc\nspec:\n type: NodePort\n selector:\n app: ingress-nginx\n ports:\n - name: http\n port: 80\n targetPort: http", "license_type": "no_lic...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 3509, "all_permissive": false }
ansible_role
nashorny/ansible_iac
929432828fd1d4a89c35bfbe26b170594f4f77bb
0
ansible/playbooks/roles/kube-worker
7,340
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/kube-worker/tasks/kube-worker-tasks.yml", "content": "- name: kube-worker-tasks > Enable kubelet service\n systemd: state=started enabled=yes name=kubelet\n\n- name: kube-worker-tasks > copy join-command to workers\n copy: src=/tmp/join-command.sh dest=/tmp/\n\n- name: k...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 378, "all_permissive": false }
ansible_role
nashorny/ansible_iac
929432828fd1d4a89c35bfbe26b170594f4f77bb
0
ansible/playbooks/roles/kvm-deploy
7,340
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/kvm-deploy/tasks/clone-vm-kvm-tasks.yml", "content": "---\n- name: clone-vm-kvm-tasks > Shutdown current Nodes\n shell: state=destroyed name={{ item.hostn }}\n ignore_errors: yes\n with_items:\n - '{{ KUBENODES }}'\n\n- name: clone-vm-kvm-tasks > Remove storage Nodes...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 730, "all_permissive": false }
ansible_role
nashorny/ansible_iac
929432828fd1d4a89c35bfbe26b170594f4f77bb
0
ansible/playbooks/roles/mesos-install
7,340
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/mesos-install/tasks/mesos-install-tasks.yml", "content": "- name: mesos-install-tasks > Disable selinux\n selinux: state=disabled\n when: ansible_distribution == \"CentOS\"\n\n- name: mesos-install-tasks > change hostname\n hostname: name={{ inventory_hostname }}\n\n# -...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1956, "all_permissive": false }
ansible_role
nashorny/ansible_iac
929432828fd1d4a89c35bfbe26b170594f4f77bb
0
ansible/playbooks/roles/mesos-master
7,340
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/mesos-master/tasks/mesos-install-zk.yml", "content": "- name: mesos-install-zk > Config zookeepers id\n shell: 'echo {{ SERVERNUM }} > /var/lib/zookeeper/myid'\n\n- name: mesos-install-zk > Register masters files\n shell: 'cat /tmp/{{ MASTERSFILE }}'\n register: result\...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3601, "all_permissive": false }
ansible_role
nashorny/ansible_iac
929432828fd1d4a89c35bfbe26b170594f4f77bb
0
ansible/playbooks/roles/mesos-slave
7,340
[ "no_license" ]
[ { "path": "ansible/playbooks/roles/mesos-slave/tasks/mesos-slave-tasks.yml", "content": "- name: mesos-slave-tasks > configure mesos containers engines\n shell: 'echo docker,mesos > /etc/mesos-slave/containerizers'\n\n- name: mesos-slave-tasks > configure docker pull timeout\n shell: 'echo 5mins > /etc/me...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 609, "all_permissive": false }
ansible_role
SergSha/lab-14
2936fac046544a63057e82140ac65bd5e9985fbc
0
roles/ceph_install
7,340
[ "no_license" ]
[ { "path": "roles/ceph_install/tasks/install.yml", "content": "---\n# dnf install podman lvm2 -y\n- name: Install podman lvm2\n ansible.builtin.dnf:\n name:\n - podman\n - lvm2\n state: latest\n\n# systemctl enable podman --now\n- name: Start podman service\n ansible.builtin.systemd:\n n...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3139, "all_permissive": false }
ansible_role
SergSha/lab-14
2936fac046544a63057e82140ac65bd5e9985fbc
0
roles/ceph_setup
7,340
[ "no_license" ]
[ { "path": "roles/ceph_setup/tasks/main.yml", "content": "---\n- name: Include setup\n include_tasks: setup.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 53 }, { "path": "roles/ceph_setup/tasks/setup.yml", "content": "---\n# cp initial-config-primary-cl...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1001, "all_permissive": false }
ansible_role
linh4github/Vagrant-ansible
2b2df0a46060f762eccdbfb504dd839b1b2d2d69
0
ansible/roles/base
7,340
[ "no_license" ]
[ { "path": "ansible/roles/base/tasks/main.yml", "content": "---\n- name: Update apt\n apt: update_cache=yes state=latest cache_valid_time=86400\n\n- name: Configure the timezone\n template: src=timezone.tpl dest=/etc/timezone\n\n- name: More Configure the timezone\n file: src=\"/usr/share/zoneinfo/{{ base...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 830, "all_permissive": false }
ansible_role
linh4github/Vagrant-ansible
2b2df0a46060f762eccdbfb504dd839b1b2d2d69
0
ansible/roles/git
7,340
[ "no_license" ]
[ { "path": "ansible/roles/git/tasks/main.yml", "content": "---\n- name: Setup main repository\n sudo: false\n git: repo={{ item.src }}\n dest={{ item.dest }}\n update=no\n accept_hostkey=yes\n with_items: \"{{ repositories }}\"\n", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 185, "all_permissive": false }
ansible_role
linh4github/Vagrant-ansible
2b2df0a46060f762eccdbfb504dd839b1b2d2d69
0
ansible/roles/mariadb
7,340
[ "no_license" ]
[ { "path": "ansible/roles/mariadb/tasks/main.yml", "content": "---\n- name: Add Key for MariaDB Repository\n apt_key: url=http://keyserver.ubuntu.com/pks/lookup?op=get&search=0<KEY>\n\n- name: Add MariaDB-Repository\n apt_repository: repo='deb http://mirror3.layerjet.com/mariadb/repo/{{ mariadb.version }}/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1208, "all_permissive": false }
ansible_role
linh4github/Vagrant-ansible
2b2df0a46060f762eccdbfb504dd839b1b2d2d69
0
ansible/roles/nginx
7,340
[ "no_license" ]
[ { "path": "ansible/roles/nginx/templates/vhost.tpl", "content": "server {\n listen 80;\n server_name {{ item.servername }};\n\n root {{ item.docroot }};\n\n index {{ item.index }};\n\n access_log /var/log/nginx/{{ item.servername }}.access.log combined;\n error_log /var/log/ngi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3237, "all_permissive": false }
ansible_role
linh4github/Vagrant-ansible
2b2df0a46060f762eccdbfb504dd839b1b2d2d69
0
ansible/roles/php
7,340
[ "no_license" ]
[ { "path": "ansible/roles/php/handlers/main.yml", "content": "---\n- name: restart fpm\n service: name={{ php_mod_prefix }}fpm state=restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 80 }, { "path": "ansible/roles/php/tasks/main.yml", "content": "---\...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1222, "all_permissive": false }
ansible_role
linh4github/Vagrant-ansible
2b2df0a46060f762eccdbfb504dd839b1b2d2d69
0
ansible/roles/rabbitmq
7,340
[ "no_license" ]
[ { "path": "ansible/roles/rabbitmq/tasks/main.yml", "content": "---\n- name: install apt-transport-https\n apt:\n pkg: \"{{item}}\"\n update-cache: yes\n cache_valid_time: 86400\n with_items:\n - apt-transport-https\n - python-pycurl\n\n- name: add the official rabbitmq repository's key\n a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 867, "all_permissive": false }
ansible_role
emmanuelmartindavid/UTNFRA_SO_2do_Parcial_Martin
5abf84895592b9cc5e1a72523ea2cfeef79c80b2
0
202406/ansible/roles/2do_parcial
7,340
[ "no_license" ]
[ { "path": "202406/ansible/roles/2do_parcial/templates/datos_alumno.txt.j2", "content": "Nombre: {{ student_name }}\nApellido: {{ student_lastName }}\nDivision: {{ student_class }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "202406/ansible/rol...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 1507, "all_permissive": false }
ansible_role
JulienDJU/Ansible
aa5f088275792ba258d1fe7d78f43f38e4c87753
0
Ansible_UdemyMasterClass/challenge3/roles/database
7,340
[ "no_license" ]
[ { "path": "Ansible_UdemyMasterClass/challenge3/roles/database/tasks/main.yml", "content": "---\n# tasks file for database\n\n- name: Install database\n apt:\n name: \"{{ database_name }}\"\n state: present\n notify:\n - Start DB\n- name: Display Installed DB\n debug:\n msg: \"{{ database_name...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 442, "all_permissive": false }
ansible_role
JulienDJU/Ansible
aa5f088275792ba258d1fe7d78f43f38e4c87753
0
Ansible_UdemyMasterClass/roles/cleaner
7,340
[ "no_license" ]
[ { "path": "Ansible_UdemyMasterClass/roles/cleaner/tasks/main.yml", "content": "---\n# tasks file for cleaner\n- name: Uninstall Apache\n apt:\n name: httpd\n state: absent\n- name: Remove index.html\n file:\n path: /var/www/html/index.html\n state: absent\n ", "license_type": "no_license"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 184, "all_permissive": false }
ansible_role
ProjectOrangeJuice/iac-ansible
3edcd7e19c97874a645b45d425fdfbf37cfccb8f
0
roles/authentik
7,340
[ "no_license" ]
[ { "path": "roles/authentik/tasks/main.yaml", "content": "- name: Create directory for authentik\n file:\n path: /root/authentik\n state: directory\n\n- name: Copy docker compose\n copy:\n src: docker-compose.yml\n dest: /root/authentik/docker-compose.yml\n\n# instructions for the env file are ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 621, "all_permissive": false }
ansible_role
ProjectOrangeJuice/iac-ansible
3edcd7e19c97874a645b45d425fdfbf37cfccb8f
0
roles/caddy-local
7,340
[ "no_license" ]
[ { "path": "roles/caddy-local/tasks/main.yaml", "content": "- name: Create caddy folders\n file:\n path: /home/oharris/caddy\n state: directory\n owner: oharris\n group: oharris\n\n- name: Create caddy ssl folder\n file:\n path: /home/oharris/caddy/ssl\n state: directory\n owner: oharr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2557, "all_permissive": false }
ansible_role
ProjectOrangeJuice/iac-ansible
3edcd7e19c97874a645b45d425fdfbf37cfccb8f
0
roles/caddy-remote
7,340
[ "no_license" ]
[ { "path": "roles/caddy-remote/templates/Caddyfile", "content": "(geo_details) {\n maxmind_geolocation {\n db_path \"/usr/share/geoip/GeoLite2-Country_20240730/GeoLite2-Country.mmdb\"\n deny_countries GB # is actually the allow list..\n }\n}\n\n(logging) {\n log {\n\t\toutput file /var...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4044, "all_permissive": false }