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
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/gcp_filestore_create
7,499
[ "no_license" ]
[ { "path": "roles/gcp_filestore_create/tasks/main.yml", "content": "- name: Add Filestore CSI Driver\n shell: gcloud container clusters update ascn-cluster --zone=\"{{ gcp_zone }}\" --update-addons=GcpFilestoreCsiDriver=ENABLED\n\n- name: Create a Filestore instance\n google.cloud.gcp_filestore_instance:\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 559, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/gcp_filestore_destroy
7,499
[ "no_license" ]
[ { "path": "roles/gcp_filestore_destroy/tasks/main.yml", "content": "- name: Destroy Filestore instance\n google.cloud.gcp_filestore_instance:\n name: fs001\n zone: \"{{ gcp_zone }}\"\n tier: STANDARD\n file_shares:\n - capacity_gb: 1024\n name: fs001\n networks:\n - network: defau...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 398, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/ghost_app_autoscaling
7,499
[ "no_license" ]
[ { "path": "roles/ghost_app_autoscaling/templates/ghost_autoscale.j2", "content": "apiVersion: autoscaling/v2beta2\nkind: HorizontalPodAutoscaler\nmetadata:\n name: store-autoscale\n namespace: ascn-cluster\nspec:\n scaleTargetRef:\n apiVersion: apps/v1\n kind: Deployment\n name: ghost-deployment...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 822, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/ghost_app_deploy
7,499
[ "no_license" ]
[ { "path": "roles/ghost_app_deploy/tasks/main.yml", "content": "- name: Create k8s namespace\n kubernetes.core.k8s:\n state: present\n definition:\n apiVersion: v1 \n kind: Namespace\n metadata:\n name: ascn-cluster\n\n- name: Ghost service \n kubernetes.core.k8s:\n state: pr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 862, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/ghost_app_undeploy
7,499
[ "no_license" ]
[ { "path": "roles/ghost_app_undeploy/tasks/main.yml", "content": "---\n- name: Undeploy Ghost\n kubernetes.core.k8s:\n state: absent\n src: containers/ghost/ghost_deployment.yml\n\n- name: Undeploy Ghost service \n kubernetes.core.k8s:\n state: absent\n src: containers/ghost/ghost_service.yml\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 479, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/ghost_app_undeploy_autoscale
7,499
[ "no_license" ]
[ { "path": "roles/ghost_app_undeploy_autoscale/tasks/main.yml", "content": "- name: Undeploy autoscale\n kubernetes.core.k8s:\n state: absent\n src: containers/ghost/ghost_autoscale.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 114 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 114, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/ghost_db_create
7,499
[ "no_license" ]
[ { "path": "roles/ghost_db_create/tasks/main.yml", "content": "\n- name: Create k8s namespace\n kubernetes.core.k8s:\n state: present\n definition:\n apiVersion: v1 \n kind: namespace\n metadata:\n name: ascn-cluster\n\n- name: Mysql service\n kubernetes.core.k8s:\n state: pr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 501, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/ghost_db_undeploy
7,499
[ "no_license" ]
[ { "path": "roles/ghost_db_undeploy/tasks/main.yml", "content": "---\n- name: Undeploy Mysql\n kubernetes.core.k8s:\n state: absent\n src: containers/mysql/mysql_deployment.yml\n\n- name: Undeploy Mysql pvc\n when: \"{{ delete_data}}\"\n kubernetes.core.k8s:\n state: absent\n src: containers/m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 614, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/init
7,499
[ "no_license" ]
[ { "path": "roles/init/tasks/main.yml", "content": "---\n- name: Change Namespace config\n shell: kubectl config set-context --current --namespace=\"{{ namespace }}\"\n\n- name: Add Filestore CSI Driver\n shell: gcloud container clusters update ascn-cluster --zone=\"{{ gcp_zone }}\" --update-addons=GcpFile...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 459, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/init_ghost
7,499
[ "no_license" ]
[ { "path": "roles/init_ghost/tasks/main.yml", "content": "---\n- name: Get Mysql Pod Status\n shell: kubectl get pods -l app=mysql -o jsonpath='{.items[0].status.phase}'\n register: mysql_pod_status\n until: mysql_pod_status.stdout_lines[0] == \"Running\"\n delay: 60\n retries: 15\n\n- name: Get Ghost P...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1829, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/monitoring
7,499
[ "no_license" ]
[ { "path": "roles/monitoring/tasks/main.yml", "content": "- name: Add dashboard_name\n template:\n src: ../templates/dashboard_config.j2\n dest: monitoring/dashboards/dashboard_config.json\n\n- name: Create dashboard\n shell: gcloud monitoring dashboards create --project=\"{{ gcp_project }}\" --confi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 284, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/monitoring_undeploy
7,499
[ "no_license" ]
[ { "path": "roles/monitoring_undeploy/tasks/main.yml", "content": "- name: Delete dashboard\n shell: gcloud monitoring dashboards delete \"{{dashboard_name}}\" --project=\"{{ gcp_project }}\" --quiet\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 129 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 129, "all_permissive": false }
ansible_role
dianarodrigues2/ASCN_TP_G28
b21b21b004bddf989017ec61cf0e54fd99a07d34
1
roles/test_scalability
7,499
[ "no_license" ]
[ { "path": "roles/test_scalability/tasks/main.yml", "content": "---\n- name: update config with variables\n template:\n src: ../templates/jmeter_config.j2\n dest: jmeter/jmeter_config.jmx\n\n\n- name: Get all pod names\n shell: kubectl get pods -o jsonpath='{.items[*].metadata.name}'\n register: pod...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1563, "all_permissive": false }
ansible_role
Hamadou9203/test_roles
c8d89ca2eb4410d84f38b47c27a098fce1ea4c93
0
roles/monrole
7,499
[ "no_license" ]
[ { "path": "roles/monrole/tasks/main.yml", "content": "---\n- name: Construire l'image Docker\n docker_image:\n build:\n path: \"/home/ubuntu/Test\"\n name: \"{{image_name}}\"\n tag: \"{{ image_tag }}\"\n source: build\n\n- name: Exécuter le conteneur Docker\n docker_container:\n name: ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 418, "all_permissive": false }
ansible_role
jaimegago/ansible-vagrant-playbooks
592f694545ddb8432b15007646c3ce257281de18
0
latest-ansible-on-guest/roles/ansible-admin
7,500
[ "no_license" ]
[ { "path": "latest-ansible-on-guest/roles/ansible-admin/templates/ansible-hack-profile.j2", "content": "source /home/vagrant/ansible/hacking/env-setup >/dev/null\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 58 }, { "path": "latest-ansible-on-guest/roles/ansible...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 715, "all_permissive": false }
ansible_role
Nonamed123/roles-dbserver
74fb299a7f6e5986410b935a3f51708a9186c27c
0
molecule/default/roles/db
7,500
[ "no_license" ]
[ { "path": "molecule/default/roles/db/tasks/install_mongo.yml", "content": "# Install MongoDB\n---\n- name: Add mongo ppa key\n sudo: yes\n apt_key: >\n keyserver=hkp://keyserver.ubuntu.com:80\n id=EA312927\n state=present\n- name: Add mongo sources list\n sudo: yes\n lineinfile: >\n line=\"d...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1870, "all_permissive": false }
ansible_role
18xxdepot/playbook
503b3e8ece498dfa6c170c3e6219e7d36df804fd
0
roles/db
7,500
[ "no_license" ]
[ { "path": "roles/db/tasks/main.yml", "content": "---\n- name: Create mariadb config folder\n file:\n path: /etc/mariadb\n state: directory\n owner: root\n group: root\n mode: 0770\n tags: db\n\n- include_tasks: db.yml\n loop:\n - wordpress\n - board18\n loop_control:\n index_...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 765, "all_permissive": false }
ansible_role
18xxdepot/playbook
503b3e8ece498dfa6c170c3e6219e7d36df804fd
0
roles/docker
7,500
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n- name: Install docker repo packages\n apt:\n name:\n - apt-transport-https\n - ca-certificates\n - curl\n - gnupg2\n - python-pip\n - software-properties-common\n tags:\n - docker\n - packages...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1097, "all_permissive": false }
ansible_role
18xxdepot/playbook
503b3e8ece498dfa6c170c3e6219e7d36df804fd
0
roles/mail
7,500
[ "no_license" ]
[ { "path": "roles/mail/handlers/main.yml", "content": "---\n- name: reload postfix\n command: /usr/sbin/postfix reload\n- name: reload postfix virtual\n command: /usr/sbin/postmap /etc/postfix/virtual\n- name: restart opendkim\n service:\n name: opendkim\n state: restarted\n", "license_type": "n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 3029, "all_permissive": false }
ansible_role
18xxdepot/playbook
503b3e8ece498dfa6c170c3e6219e7d36df804fd
0
roles/web
7,500
[ "no_license" ]
[ { "path": "roles/web/tasks/wordpress.yml", "content": "---\n- name: Create wordpress config folder\n file:\n path: /etc/wordpress\n state: directory\n owner: root\n group: root\n mode: 0770\n tags:\n - sites\n - wordpress\n\n- name: Create the uploads.ini file\n copy:\n src: w...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 9166, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/auditd_setup
7,500
[ "no_license" ]
[ { "path": "roles/auditd_setup/defaults/main.yml", "content": "---\nauditd_num_logs: 10\nauditd_max_log_file: 50\nauditd_max_log_file_action: ROTATE\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 83 }, { "path": "roles/auditd_setup/templates/execve.rules.j2", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 3644, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/certs_setup
7,500
[ "no_license" ]
[ { "path": "roles/certs_setup/defaults/main.yml", "content": "---\n# Путь к папке с сертификатами в проекте Ansible\ncerts_source_dir: \"/etc/ansible/files/certs\"\n\n# Целевой путь для сертификатов в системе\ncerts_dest_dir: \"/usr/local/share/ca-certificates\"\n", "license_type": "no_license", "det...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1277, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/clamav_wazuh_setup
7,500
[ "no_license" ]
[ { "path": "roles/clamav_wazuh_setup/tasks/install_rhel.yml", "content": "---\n- name: Включаем репозиторий EPEL для RHEL\n dnf:\n name: epel-release\n state: present\n\n- name: Устанавливаем ClamAV для RHEL\n dnf:\n name:\n - clamav\n - clamav-update\n - clamav-scanner\n state: ...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 4122, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/disable_ipv6
7,500
[ "no_license" ]
[ { "path": "roles/disable_ipv6/tasks/main.yml", "content": "---\n- name: Ensure sysctl configurations are present for disabling IPv6\n copy:\n dest: /etc/sysctl.d/99-disable-ipv6.conf\n content: |\n net.ipv6.conf.all.disable_ipv6 = 1\n net.ipv6.conf.default.disable_ipv6 = 1\n net.ipv6.c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1292, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/docker_setup
7,500
[ "no_license" ]
[ { "path": "roles/docker_setup/tasks/main.yml", "content": "---\n- name: Install prerequisite packages\n ansible.builtin.apt:\n name:\n - ca-certificates\n - curl\n - gnupg\n - lsb-release\n state: present\n update_cache: yes\n become: yes\n when: ansible_distribution in ['Ubu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2404, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/fail2ban_setup
7,500
[ "no_license" ]
[ { "path": "roles/fail2ban_setup/tasks/main.yml", "content": "---\n- name: Install Fail2Ban\n package:\n name: fail2ban\n state: present\n\n- name: Configure Fail2Ban for SSH Protection\n template:\n src: jail.local.j2\n dest: /etc/fail2ban/jail.local\n owner: root\n group: root\n mode...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 413, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/filebeat_setup
7,500
[ "no_license" ]
[ { "path": "roles/filebeat_setup/templates/auditd.yml.j2", "content": "- module: auditd\n log:\n enabled: true\n var.paths:\n - /var/log/audit/audit.log\n fields:\n type: auditd\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 121 }, { "path": "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 3151, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/iptables_setup
7,500
[ "no_license" ]
[ { "path": "roles/iptables_setup/tasks/main.yml", "content": "---\n- name: Установить iptables-persistent\n ansible.builtin.apt:\n name:\n - iptables-persistent\n - netfilter-persistent\n state: present\n when: ansible_os_family == \"Debian\"\n\n- name: Установить iptables-services (для Red...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1634, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/lmd_setup
7,500
[ "no_license" ]
[ { "path": "roles/lmd_setup/handlers/main.yml", "content": "---\n- name: Перезапустить LMD\n service:\n name: maldet\n state: restarted\n\n- name: Перезапустить Wazuh Agent\n service:\n name: wazuh-manager\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1923, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/manage_users
7,500
[ "no_license" ]
[ { "path": "roles/manage_users/vars/main.yml", "content": "#SPDX-License-Identifier: MIT-0\n---\n# vars file for manage_users\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 65 }, { "path": "roles/manage_users/defaults/main.yml", "content": "---\nsudo_group: \...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 5859, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/network_security
7,500
[ "no_license" ]
[ { "path": "roles/network_security/tasks/main.yml", "content": "---\n- name: Enable TCP SYN Cookies\n sysctl:\n name: net.ipv4.tcp_syncookies\n value: '1'\n state: present\n sysctl_set: true\n reload: yes\n\n- name: Limit incoming TCP connections (Rate Limit)\n sysctl:\n name: net.ipv4.tc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 671, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/ntp_setup
7,500
[ "no_license" ]
[ { "path": "roles/ntp_setup/defaults/main.yml", "content": "# Определение переменных\nntp_server: \"172.20.181.20\"\ntimezone: \"Europe/Moscow\"\nchrony_config_path: \"/etc/chrony/chrony.conf\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 125 }, { "path": "role...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1188, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/postfix_setup
7,500
[ "no_license" ]
[ { "path": "roles/postfix_setup/templates/main.cf.j2", "content": "# See /usr/share/postfix/main.cf.dist for a commented, more complete version\n\nmyhostname = {{ ansible_hostname }}\n\nsmtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)\nbiff = no\n\n# appending .domain is the MUA's job.\nappend_dot_my...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 925, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/qemu-agent_setup
7,500
[ "no_license" ]
[ { "path": "roles/qemu-agent_setup/tasks/main.yml", "content": "---\n- name: Установка qemu-guest-agent на Debian и Ubuntu\n apt:\n name: qemu-guest-agent\n state: present\n update_cache: true\n when: ansible_facts['distribution'] in [\"Debian\", \"Ubuntu\"]\n\n- name: Установка qemu-guest-agent н...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 563, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/selinux_setup
7,500
[ "no_license" ]
[ { "path": "roles/selinux_setup/handlers/main.yml", "content": "---\n- name: Update GRUB\n command: grub2-mkconfig -o /boot/grub2/grub.cfg\n when: ansible_os_family == \"RedHat\"\n\n- name: Update GRUB (Debian-based)\n command: update-grub\n when: ansible_os_family == \"Debian\"\n\n- name: Reboot Server\...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1827, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/update_upgrade
7,500
[ "no_license" ]
[ { "path": "roles/update_upgrade/tasks/main.yml", "content": "---\n- name: Update and upgrade packages on Ubuntu\n apt:\n update_cache: yes\n upgrade: dist\n when: ansible_distribution == \"Ubuntu\"\n register: apt_update\n\n- name: Update and upgrade packages on Debian\n apt:\n update_cache: ye...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 889, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/wazuh-agent_setup
7,500
[ "no_license" ]
[ { "path": "roles/wazuh-agent_setup/vars/main.yml", "content": "---\nwazuh_server: \"192.168.21.190\"\nwazuh_agent_config:\n agent_name: \"{{ inventory_hostname }}\"\n server_ip: \"192.168.21.190\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 126 }, { "path":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1024, "all_permissive": false }
ansible_role
fotventy/ansible
6e6cc97ae96a2ad15245a4a0434f3cd97eda3b56
0
roles/zabbix-agent_setup
7,500
[ "no_license" ]
[ { "path": "roles/zabbix-agent_setup/defaults/main.yml", "content": "---\nzabbix_server:\n - \"172.20.171.110\"\n - \"192.168.88.248\"\n\nzabbix_agent_hostname: \"{{ inventory_hostname }}\" # Имя хоста для агента\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 136 },...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 5165, "all_permissive": false }
ansible_role
narusejun/isucon10-ansible
fb326424961c72b7407e5570c22b196bfa4ab740
0
roles/general
7,500
[ "no_license" ]
[ { "path": "roles/general/tasks/main.yml", "content": "- name: set hostname\n hostname:\n name: \"{{ inventory_hostname_short }}\"\n\n- name: install tools\n apt:\n update_cache: yes\n pkg:\n - dstat\n - fish\n - graphviz\n - nano\n - unzip\n - percona-toolkit\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1245, "all_permissive": false }
ansible_role
narusejun/isucon10-ansible
fb326424961c72b7407e5570c22b196bfa4ab740
0
roles/hq
7,500
[ "no_license" ]
[ { "path": "roles/hq/tasks/main.yml", "content": "- name: set hostname\n hostname:\n name: \"{{ inventory_hostname_short }}\"\n\n- name: install packages\n pacman:\n update_cache: yes\n name:\n - docker\n - docker-compose\n - fish\n - git\n - nano\n - rsync\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 717, "all_permissive": false }
ansible_role
narusejun/isucon10-ansible
fb326424961c72b7407e5570c22b196bfa4ab740
0
roles/myprofiler
7,500
[ "no_license" ]
[ { "path": "roles/myprofiler/tasks/main.yml", "content": "- name: download myprofiler\n get_url:\n url: https://github.com/KLab/myprofiler/releases/download/0.2/myprofiler.linux_amd64.tar.gz\n checksum: sha1:b3eddc558a2ec5da4721edbb2c9a360f1d05b124\n dest: /tmp/myprofiler.tar.gz\n\n- name: install ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 346, "all_permissive": false }
ansible_role
narusejun/isucon10-ansible
fb326424961c72b7407e5570c22b196bfa4ab740
0
roles/netdata
7,500
[ "no_license" ]
[ { "path": "roles/netdata/tasks/main.yml", "content": "- name: download install script for netdata\n get_url:\n url: https://my-netdata.io/kickstart-static64.sh\n dest: /opt/netdata.sh\n mode: 0755\n register: netdata\n\n- name: install netdata\n shell: yes | /opt/netdata.sh\n when: netdata.chan...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 249, "all_permissive": false }
ansible_role
narusejun/isucon10-ansible
fb326424961c72b7407e5570c22b196bfa4ab740
0
roles/pprof
7,500
[ "no_license" ]
[ { "path": "roles/pprof/tasks/main.yml", "content": "- name: download pprof\n get_url:\n url: https://github.com/narusejun/pprof/releases/download/pprof/pprof\n checksum: sha1:16f811884676e1415ac5b6ee5b6d977f2de9bba4\n dest: /usr/local/bin/pprof\n mode: 0755\n", "license_type": "no_license",...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 214, "all_permissive": false }
ansible_role
narusejun/isucon10-ansible
fb326424961c72b7407e5570c22b196bfa4ab740
0
roles/repo
7,500
[ "no_license" ]
[ { "path": "roles/repo/tasks/main.yml", "content": "- name: create ssh dir for root\n file:\n path: /root/.ssh\n state: directory\n mode: 0700\n\n- name: put id_rsa for root\n copy:\n src: ../hq/tun/id_rsa\n dest: /root/.ssh/id_rsa\n mode: 0600\n\n- name: put .gitconfig for root\n copy:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 912, "all_permissive": false }
ansible_role
narusejun/isucon10-ansible
fb326424961c72b7407e5570c22b196bfa4ab740
0
roles/slackcat
7,500
[ "no_license" ]
[ { "path": "roles/slackcat/tasks/main.yml", "content": "- name: download slackcat\n get_url:\n url: https://github.com/bcicen/slackcat/releases/download/v1.6/slackcat-1.6-linux-amd64\n checksum: sha1:96ae37071da6a5811b0edc28b79a9cf1f649ee23\n dest: /usr/local/bin/slackcat.original\n mode: \"6755...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 559, "all_permissive": false }
ansible_role
narusejun/isucon10-ansible
fb326424961c72b7407e5570c22b196bfa4ab740
0
roles/users
7,500
[ "no_license" ]
[ { "path": "roles/users/tasks/main.yml", "content": "- name: make wheel group\n group:\n name: wheel\n\n- name: make wheel sudoer\n copy:\n dest: /etc/sudoers.d/wheel_nopasswd\n content: |\n %wheel ALL=(ALL) NOPASSWD: ALL\n\n- name: add users\n user:\n name: \"{{ item }}\"\n append: ye...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 832, "all_permissive": false }
ansible_role
mrMikoma/SaLKo_website
c3e5e9aa81119f93791cc203d538a5bc714a54e5
0
infra/ansible/roles/base
7,500
[ "no_license" ]
[ { "path": "infra/ansible/roles/base/tasks/main.yml", "content": "---\n- name: Update and upgrade system\n ansible.builtin.apt:\n update_cache: true\n upgrade: dist\n\n- name: Create salko admin\n ansible.builtin.user:\n name: salko\n shell: /bin/bash\n create_home: true\n home: /home/sal...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1954, "all_permissive": false }
ansible_role
mrMikoma/SaLKo_website
c3e5e9aa81119f93791cc203d538a5bc714a54e5
0
infra/ansible/roles/docker_install
7,500
[ "no_license" ]
[ { "path": "infra/ansible/roles/docker_install/tasks/main.yml", "content": "---\n- name: Install Docker dependencies\n ansible.builtin.apt:\n name:\n - ca-certificates\n - curl\n state: present\n\n- name: Add Docker GPG key\n ansible.builtin.get_url:\n url: https://download.docker.com/li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1384, "all_permissive": false }
ansible_role
mrMikoma/SaLKo_website
c3e5e9aa81119f93791cc203d538a5bc714a54e5
0
infra/ansible/roles/security
7,500
[ "no_license" ]
[ { "path": "infra/ansible/roles/security/tasks/main.yml", "content": "---\n- name: Install security packages\n ansible.builtin.apt:\n name:\n - ufw\n - fail2ban\n state: present\n update_cache: true\n\n- name: Configure UFW\n community.general.ufw:\n rule: allow\n port: \"{{ item }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 965, "all_permissive": false }
ansible_role
mrMikoma/SaLKo_website
c3e5e9aa81119f93791cc203d538a5bc714a54e5
0
infra/ansible/roles/ssh_hardening
7,500
[ "no_license" ]
[ { "path": "infra/ansible/roles/ssh_hardening/tasks/main.yml", "content": "---\n- name: Harden SSH configuration\n ansible.builtin.lineinfile:\n path: /etc/ssh/sshd_config\n regexp: \"{{ item.regexp }}\"\n line: \"{{ item.line }}\"\n state: present\n backrefs: true\n with_items:\n - {rege...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1251, "all_permissive": false }
ansible_role
eniac05/ansible
2e88a4684fff67a90e339859e40343b482136eb2
0
roles/base
7,500
[ "no_license" ]
[ { "path": "roles/base/tasks/ufw_ssh.yml", "content": "- name: Install ufw\n package:\n name: ufw\n state: latest\n when: ansible_distribution == \"Ubuntu\"\n- name: Allow SSH from specific IP addresses\n ufw:\n rule: allow\n port: '22'\n from_ip: \"{{ ip_workstation }}\"\n when:...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 705, "all_permissive": false }
ansible_role
eniac05/ansible
2e88a4684fff67a90e339859e40343b482136eb2
0
roles/db_servers
7,500
[ "no_license" ]
[ { "path": "roles/db_servers/tasks/main.yml", "content": "- name: install mysql package\n tags: db, mysql\n package:\n name: \"{{ db_package_name }}\"\n state: latest\n\n- name: update mysql.cnf, comment change bind to local\n tags: mysql.conf\n blockinfile:\n path: /etc/mysql/mysql.conf.d/my...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1073, "all_permissive": false }
ansible_role
eniac05/ansible
2e88a4684fff67a90e339859e40343b482136eb2
0
roles/localhost
7,500
[ "no_license" ]
[ { "path": "roles/localhost/tasks/main.yml", "content": "- name: install unzip\n package:\n name: unzip\n\n- name: install terraform\n unarchive:\n src: https://releases.hashicorp.com/terraform/1.6.6/terraform_1.6.6_linux_386.zip\n dest: /usr/local/bin\n remote_src: yes\n mode: 075...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 345, "all_permissive": false }
ansible_role
eniac05/ansible
2e88a4684fff67a90e339859e40343b482136eb2
0
roles/web_servers
7,500
[ "no_license" ]
[ { "path": "roles/web_servers/handlers/main.yml", "content": "- name: restart_apache \n tags: restart_apache2, restart_httpd\n service:\n name: \"{{ apache_service }}\"\n state: restarted\n \n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 135 }, { "pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1453, "all_permissive": false }
ansible_role
xbox1994/vagrant-ansible-myDoit
ea108310698dba68f875ee7fa2639538fe7d114c
1
playbooks/roles/deploy
7,500
[ "no_license" ]
[ { "path": "playbooks/roles/deploy/tasks/main.yml", "content": "- name: get ruby repo\n apt_repository:\n repo: 'ppa:brightbox/ruby-ng'\n\n- name: install apt packages\n apt: pkg={{ item }} update_cache=yes cache_valid_time=360000\n become: yes\n with_items:\n - git\n - ruby2.1\n - mongodb-cl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 324, "all_permissive": false }
ansible_role
xbox1994/vagrant-ansible-myDoit
ea108310698dba68f875ee7fa2639538fe7d114c
1
playbooks/roles/dns
7,500
[ "no_license" ]
[ { "path": "playbooks/roles/dns/tasks/main.yml", "content": "- name: DNS | install bind\n apt: pkg={{ item }} update_cache=yes cache_valid_time=360000\n with_items:\n - bind9\n - bind9utils\n - bind9-doc\n\n- name: DNS | copy nginx config file\n template:\n src: named.conf.options\n dest: /...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 288, "all_permissive": false }
ansible_role
xbox1994/vagrant-ansible-myDoit
ea108310698dba68f875ee7fa2639538fe7d114c
1
playbooks/roles/jenkins
7,500
[ "no_license" ]
[ { "path": "playbooks/roles/jenkins/tasks/main.yml", "content": "- name: jenkins apt key\n apt_key:\n url: https://pkg.jenkins.io/debian/jenkins-ci.org.key\n state: present\n\n- name: jenkins private key\n command: sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 718, "all_permissive": false }
ansible_role
xbox1994/vagrant-ansible-myDoit
ea108310698dba68f875ee7fa2639538fe7d114c
1
playbooks/roles/mongodb
7,500
[ "no_license" ]
[ { "path": "playbooks/roles/mongodb/tasks/main.yml", "content": "- name: install apt packages\n apt: pkg={{ item }}\n with_items:\n - mongodb-server\n\n- name: configure mongodb\n template: src=mongod.conf.j2 dest=/etc/mongod.conf\n\n- name: restart mongodb\n command: /etc/init.d/mongodb restart\n#\n#...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 679, "all_permissive": false }
ansible_role
xbox1994/vagrant-ansible-myDoit
ea108310698dba68f875ee7fa2639538fe7d114c
1
playbooks/roles/nginx
7,500
[ "no_license" ]
[ { "path": "playbooks/roles/nginx/tasks/main.yml", "content": "- name: NGINX | installing nginx\n apt:\n name: nginx\n update_cache: yes\n #ignore_errors: True\n #register: result\n#- debug: var=result\n\n- name: NGINX | create directories for ssl certiifcates\n file:\n path: /etc/nginx/ssl\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1199, "all_permissive": false }
ansible_role
hvvit/ansible-roles
f34d8b7b34f230119f6d55330901a3e20b14455c
0
project/roles/podman_proxy
7,500
[ "no_license" ]
[ { "path": "project/roles/podman_proxy/vars/main.yaml", "content": "---\n\npodman_proxy:\n username: admin\n password: <PASSWORD>\n\nbinaries:\n - {src: podman_proxy, dest: ~/.local/bin/podman_proxy}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 127 }, { "path"...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 1755, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/01-generate-ssh-key
7,500
[ "no_license" ]
[ { "path": "ansible/roles/01-generate-ssh-key/tasks/main.yaml", "content": "- name: Create Directory ~/.ssh\n become: true\n ansible.builtin.file:\n dest: \"/home/{{ ansible_user }}/.ssh\"\n state: directory\n mode: \"0700\"\n owner: \"{{ ansible_user }}\"\n group: \"{{ ansible_user }}\"\n\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 363, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/02-copy-ssh-key
7,500
[ "no_license" ]
[ { "path": "ansible/roles/02-copy-ssh-key/tasks/main.yaml", "content": "- name: Copy Public SSH Key\n ansible.builtin.copy:\n src: \"/home/{{ ansible_user }}/.ssh/id_ed25519.pub\"\n dest: \"/home/{{ ansible_user }}/.ssh/id_ed25519.pub\"\n mode: \"0644\"\n\n- name: Set authorized key taken from file...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 800, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/03-configure-node
7,500
[ "no_license" ]
[ { "path": "ansible/roles/03-configure-node/tasks/main.yaml", "content": "---\n- name: Configure modules conf\n become: true\n ansible.builtin.lineinfile:\n path: /etc/modules-load.d/containerd.conf\n line: \"{{ item }}\"\n with_items:\n - \"overlay\"\n - \"br_netfilter\"\n\n- name: Add module...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1011, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/04-install-cri
7,500
[ "no_license" ]
[ { "path": "ansible/roles/04-install-cri/tasks/main.yaml", "content": "---\n- name: Get Arch variables\n ansible.builtin.command: dpkg --print-architecture\n register: arch_results\n changed_when: arch_results.rc != 0\n\n- name: Get Ubuntu release variables\n ansible.builtin.command: lsb_release -cs\n r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1475, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/05-install-kubeadm
7,500
[ "no_license" ]
[ { "path": "ansible/roles/05-install-kubeadm/tasks/main.yaml", "content": "---\n- name: Configure Kernel\n become: true\n ansible.posix.sysctl:\n sysctl_file: /etc/sysctl.d/k8s.conf\n name: \"{{ item.key }}\"\n value: \"{{ item.value }}\"\n state: present\n sysctl_set: true\n reload: fals...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1586, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/06-disable-swap
7,500
[ "no_license" ]
[ { "path": "ansible/roles/06-disable-swap/tasks/main.yaml", "content": "---\n- name: Disable swap\n become: true\n ansible.builtin.command: swapoff -a\n changed_when: false\n\n- name: Configure CRI endpoints\n become: true\n ansible.builtin.blockinfile:\n path: /etc/crictl.yaml\n block: |\n '...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 444, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/07-pull-k8s-images
7,500
[ "no_license" ]
[ { "path": "ansible/roles/07-pull-k8s-images/tasks/main.yaml", "content": "---\n- name: Pull k8s images\n become: true\n ansible.builtin.command: kubeadm config images pull\n changed_when: false\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 119, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/08-create-kubeadm-init-configtation
7,500
[ "no_license" ]
[ { "path": "ansible/roles/08-create-kubeadm-init-configtation/tasks/main.yaml", "content": "---\n- name: Register kubeadm token\n ansible.builtin.command: echo \"$(openssl rand -hex 3).$(openssl rand -hex 8)\"\n register: k8s_bootstarp_token\n changed_when: false\n\n- name: Create kubeadm init file\n bec...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1120, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/09-install-kubernetes
7,500
[ "no_license" ]
[ { "path": "ansible/roles/09-install-kubernetes/tasks/main.yaml", "content": "---\n- name: Install Kuberentes\n become: true\n ansible.builtin.command: kubeadm init --config \"{{ ansible_env.HOME }}\"/init_kubeadm.yaml --skip-phases=addon/kube-proxy --ignore-preflight-errors=NumCPU,Mem\n changed_when: fal...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 455, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/10-install-helm
7,500
[ "no_license" ]
[ { "path": "ansible/roles/10-install-helm/tasks/main.yaml", "content": "---\n- name: Get a install script\n ansible.builtin.uri:\n url: https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3\n return_content: \"yes\"\n register: get_helm_script\n\n- name: Install Helm CLI\n ansible.bu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 318, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/11-install-cilium
7,500
[ "no_license" ]
[ { "path": "ansible/roles/11-install-cilium/tasks/main.yaml", "content": "---\n- name: Get Cilium version\n ansible.builtin.uri:\n url: https://raw.githubusercontent.com/cilium/cilium-cli/master/stable.txt\n return_content: \"yes\"\n register: cilium_cli_version\n\n- name: Download Cilium CLI SHA-256...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1100, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/12-install-argocd
7,500
[ "no_license" ]
[ { "path": "ansible/roles/12-install-argocd/tasks/main.yaml", "content": "---\n- name: Add Argo repository\n kubernetes.core.helm_repository:\n name: argo\n repo_url: \"https://argoproj.github.io/argo-helm\"\n\n- name: Deploy ArgoCD\n kubernetes.core.helm:\n name: argocd\n chart_ref: argo/argo-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 299, "all_permissive": false }
ansible_role
SoaB1/home-k8s
abe5036f23062c035dd050a51a3f61855807ed47
0
ansible/roles/13-wk-join-cluster
7,500
[ "no_license" ]
[ { "path": "ansible/roles/13-wk-join-cluster/tasks/main.yaml", "content": "---\n- name: Create config for worker nodes\n ansible.builtin.blockinfile:\n path: '\"{{ ansible_env.HOME }}\"/join_kubeadm_wk.yaml'\n block: |\n apiVersion: kubelet.config.k8s.io/v1beta1\n kind: KubeletConfiguration\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1049, "all_permissive": false }
ansible_role
KennethSV/DevOps_Path
3c5468891d8064ceefdc37b92a59c340b6955154
0
Ansible/Challenge/roles/apache_install
7,500
[ "no_license" ]
[ { "path": "Ansible/Challenge/roles/apache_install/tasks/main.yml", "content": "- name: Update apt package index\n apt:\n update_cache: yes\n\n- name: Install Apache\n apt:\n name: apache2\n state: present\n\n- name: Ensure Apache is configured to listen on port 8080\n lineinfile:\n path: /etc...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1417, "all_permissive": false }
ansible_role
robpickerill/node_react_redis_mysql
4876cf91b6a4f9d81652f78eda6553bcc6b5e672
0
ansible/roles/bootstrap
7,500
[ "no_license" ]
[ { "path": "ansible/roles/bootstrap/tasks/main.yml", "content": "---\n\n- name: update software\n yum:\n name: '*'\n state: latest", "license_type": "no_license", "detected_licenses": [], "size_bytes": 67 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 67, "all_permissive": false }
ansible_role
robpickerill/node_react_redis_mysql
4876cf91b6a4f9d81652f78eda6553bcc6b5e672
0
ansible/roles/cloudformation
7,500
[ "no_license" ]
[ { "path": "ansible/roles/cloudformation/tasks/main.yml", "content": "---\n\n- name: deploy cloudformation stack\n cloudformation:\n stack_name: 'nodereactredismysql'\n region: 'eu-west-2'\n state: 'present'\n template: '../cloudformation/ec2/template.yml'\n register: stack\n\n- name: add host\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 302, "all_permissive": false }
ansible_role
robpickerill/node_react_redis_mysql
4876cf91b6a4f9d81652f78eda6553bcc6b5e672
0
ansible/roles/docker
7,500
[ "no_license" ]
[ { "path": "ansible/roles/docker/tasks/main.yml", "content": "---\n\n- name: install docker\n yum:\n name: docker\n state: installed\n notify: restart docker\n\n- meta: flush_handlers\n\n- name: wait for docker\n wait_for:\n path: /var/run/docker.sock\n state: present\n\n- name: enable docker\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 397, "all_permissive": false }
ansible_role
robpickerill/node_react_redis_mysql
4876cf91b6a4f9d81652f78eda6553bcc6b5e672
0
ansible/roles/gitlab-runner
7,500
[ "no_license" ]
[ { "path": "ansible/roles/gitlab-runner/defaults/main.yml", "content": "---\n\n# Maximum number of jobs to run concurrently\ngitlab_runner_concurrent: '{{ ansible_processor_cores }}'\n\n# GitLab coordinator URL\ngitlab_runner_coordinator_url: 'https://gitlab.com/ci'\n# GitLab registration token\ngitlab_runne...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2325, "all_permissive": false }
ansible_role
wing-tail/builder_for_mac
5f97c0c50e2b25a6f82c5ab1b21118322cbe6b13
0
linux/roles/gcp
7,500
[ "no_license" ]
[ { "path": "linux/roles/gcp/vars/main.yml", "content": "packages:\n - name: google-cloud-sdk\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "linux/roles/gcp/tasks/main.yml", "content": "- name: homebrew packages install\n homebrew:\n name...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 432, "all_permissive": false }
ansible_role
wing-tail/builder_for_mac
5f97c0c50e2b25a6f82c5ab1b21118322cbe6b13
0
linux/roles/vim
7,500
[ "no_license" ]
[ { "path": "linux/roles/vim/files/init.vim", "content": "if &compatible\n set nocompatible\nendif\n\nlet $CACHE = expand('~/.cache')\nif !isdirectory($CACHE)\n call mkdir($CACHE, 'p')\nendif\n\nif &runtimepath !~# '/dein.vim'\n let s:dein_dir = fnamemodify('dein.vim', ':p')\n if !isdirectory(s:dein_dir)\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 9, "total_bytes": 12945, "all_permissive": false }
ansible_role
wing-tail/builder_for_mac
5f97c0c50e2b25a6f82c5ab1b21118322cbe6b13
0
mac/roles/homebrew
7,500
[ "no_license" ]
[ { "path": "mac/roles/homebrew/vars/main.yml", "content": "homebrew_taps:\n - homebrew/cask\n - homebrew/core\nhomebrew_packages:\n - name: ansible\n - name: deno\n - name: git\n - name: python3\n - name: ripgrep\n - name: tig\n - name: tree\n - name: vim\n - name: wget\n - name: zsh-completions\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1134, "all_permissive": false }
ansible_role
wing-tail/builder_for_mac
5f97c0c50e2b25a6f82c5ab1b21118322cbe6b13
0
mac/roles/pip
7,500
[ "no_license" ]
[ { "path": "mac/roles/pip/tasks/main.yml", "content": "- name: pip install\n pip:\n name: \"{{ item }}\"\n executable: pip3\n with_items: \"{{ pip }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 97 }, { "path": "mac/roles/pip/vars/main.yml", "cont...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 113, "all_permissive": false }
ansible_role
phenomenone/install_collection
77f1964ecc1e8aef8456926cf9526173972f6963
0
roles/publicar_collection
7,503
[ "no_license" ]
[ { "path": "roles/publicar_collection/defaults/main.yml", "content": "---\npublicar_collection_galaxy_api_content_url:\n lab: \"https://192.168.64.9/api/galaxy/content/published/\"\n desa: \"https://ansibledesa.uiotest.bpichinchatest.tes/api/galaxy/content/published/\"\n dcp: \"https://ansible.uio.bpichin...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2621, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/aws
7,503
[ "no_license" ]
[ { "path": "roles/aws/tasks/main.yml", "content": "---\n- name: WebServer | Create the WebServer Instance(s)\n local_action:\n module: ec2\n region: \"{{ web_region }}\"\n group_id: \"{{ web_group_id}}\"\n keypair: \"{{ web_key_name }}\"\n instance_type: \"{{ web_ins_type }}\"\n image: \"{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1769, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/curl
7,503
[ "no_license" ]
[ { "path": "roles/curl/tasks/main.yml", "content": "---\n- name: Install cURL\n become: yes\n become_user: root\n apt: pkg=curl state=latest\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 89, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/elb
7,503
[ "no_license" ]
[ { "path": "roles/elb/tasks/main.yml", "content": "---\n- name: Gathering ec2 facts\n local_action: ec2_facts\n\n- set_fact:\n instance_id_1: \"{{ansible_ec2_instance_id}}\"\n instance_id_2: \"{{ansible_ec2_instance_id}}\"\n\n- name: ELB | Adding EC2 instance(s) to the ELB provided\n local_action:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 568, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/git
7,503
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n- name: Install Git\n become: yes\n become_user: root\n apt: pkg=git state=latest\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 87 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 87, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/init
7,503
[ "no_license" ]
[ { "path": "roles/init/tasks/main.yml", "content": "---\n - name: Update apt\n become: yes\n become_user: root\n apt: update_cache=yes\n \n - name: Install system packages\n become: yes\n become_user: root\n apt: pkg={{ item }} state=latest\n with_items:\n - curl\n - wge...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 492, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/mongo
7,503
[ "no_license" ]
[ { "path": "roles/mongo/tasks/main.yml", "content": "---\n- name: Install MongoDB\n become: yes\n become_user: root\n apt: pkg=mongodb state=latest\n\n- name: Install MongoDB\n become: yes\n become_user: root\n apt: pkg=python-pymongo state=latest\n\n- name: Allow access to MongoDB from anywhere\n b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 513, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/nginx
7,503
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Define nginx_user.\n set_fact:\n nginx_user: \"{{ __nginx_user }}\"\n when: nginx_user is not defined\n\n- name: Add PPA for Nginx.\n apt_repository:\n repo: 'ppa:nginx/{{ nginx_ppa_version }}'\n state: present\n update_cache: y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3173, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/php
7,503
[ "no_license" ]
[ { "path": "roles/php/tasks/configure.yml", "content": "---\n- name: Update apt cache.\n apt: update_cache=yes cache_valid_time=86400\n\n- name: Ensure configuration directories exist.\n file:\n path: \"{{ item }}\"\n state: directory\n follow: true\n with_flattened:\n - \"{{ php_conf_paths }}...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 4654, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/postgres
7,503
[ "no_license" ]
[ { "path": "roles/postgres/templates/repmgr.conf.j2", "content": "cluster='{{ postgresql_cluster_name }}'\n{% if postgres_status == \"master\" %}\nnode=1\n{% else %}\nnode=2\n{% endif %}\nnode_name='{{ ansible_eth1.ipv4.address }}'\nconninfo='host='{{ ansible_eth1.ipv4.address }}' user='{{ postgresql_repmgr_...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 11111, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/ssh_setup
7,503
[ "no_license" ]
[ { "path": "roles/ssh_setup/templates/known_hosts.j2", "content": "{% for host in play_hosts %}\n{{ host }},{{ hostvars[host]['ansible_'+ssh_interface].ipv4.address }} ssh-rsa {{ hostvars[host].ansible_ssh_host_key_rsa_public }}\n{% endfor %}\n\n\n", "license_type": "no_license", "detected_licenses":...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 761, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/symfony
7,503
[ "no_license" ]
[ { "path": "roles/symfony/templates/symfony.sh.j2", "content": "export PATH=$PATH:{{ symfony_path }}", "license_type": "no_license", "detected_licenses": [], "size_bytes": 36 }, { "path": "roles/symfony/tasks/main.yml", "content": "---\n- name: Set php_executable variable to a default...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 894, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/webserver
7,503
[ "no_license" ]
[ { "path": "roles/webserver/tasks/main.yml", "content": "---\n- name: Clone git repository\n git: dest={{ symfony_web_dir }} repo=https://github.com/adildhar/symfony.git update=yes force=yes\n become: yes\n register: cloned\n\n- name: Apply permissions to webroot\n become: yes\n become_user: root\n fil...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2391, "all_permissive": false }
ansible_role
adildhar/ansible-aws
5c0996aa1b069768c594cd7129d815605d505f00
0
roles/wget
7,503
[ "no_license" ]
[ { "path": "roles/wget/tasks/main.yml", "content": "---\n- name: Install wget\n become: yes\n become_user: root\n apt: pkg=wget state=latest\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 89, "all_permissive": false }
ansible_role
sreedharm07/learn-ansible
d8ccd874042a89ac24aaf8cf6c1257d235dea094
0
roles/catalogue
7,503
[ "no_license" ]
[ { "path": "roles/catalogue/vars/main.yml", "content": "schema: true\ncomponent: catalogue", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "roles/catalogue/tasks/main.yml", "content": "- name: importing role\n ansible.builtin.import_role:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 133, "all_permissive": false }
ansible_role
sreedharm07/learn-ansible
d8ccd874042a89ac24aaf8cf6c1257d235dea094
0
roles/common
7,503
[ "no_license" ]
[ { "path": "roles/common/tasks/req.yml", "content": "- name: Add app user\n ansible.builtin.user:\n name: roboshop\n\n- name: create app directory\n ansible.builtin.file:\n path: /app\n state: directory\n\n- name: Unzip and download\n ansible.builtin.unarchive:\n src: https://roboshop-artifact...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1373, "all_permissive": false }
ansible_role
sreedharm07/learn-ansible
d8ccd874042a89ac24aaf8cf6c1257d235dea094
0
roles/dispatch
7,503
[ "no_license" ]
[ { "path": "roles/dispatch/tasks/main.yml", "content": "- name: installing golang\n ansible.builtin.yum:\n name: golang\n state: latest\n\n- name: Add app user\n ansible.builtin.user:\n name: roboshop\n\n- name: create app directory\n ansible.builtin.file:\n path: /app\n state: directory\n\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 775, "all_permissive": false }
ansible_role
sreedharm07/learn-ansible
d8ccd874042a89ac24aaf8cf6c1257d235dea094
0
roles/frontend
7,503
[ "no_license" ]
[ { "path": "roles/frontend/files/nginx.conf", "content": "proxy_http_version 1.1;\nlocation /images/ {\n expires 5s;\n root /usr/share/nginx/html;\n try_files $uri /images/placeholder.jpg;\n}\nlocation /api/catalogue/ { proxy_pass http://catalogue-dev.cloudev7.online:8080/; }\nlocation /api/user/ { prox...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1382, "all_permissive": false }