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
katsuobushiFPGA/ansible-apache-tomcat-mysql
4cdd4aa86c83d2c1baabd43baef81358f7ab07bf
0
roles/java
8,116
[ "no_license" ]
[ { "path": "roles/java/tasks/main.yml", "content": "---\n- name: Install packages\n ansible.builtin.dnf:\n name: java-11-amazon-corretto-devel\n state: present\n\n- name: Change alternatives\n community.general.alternatives:\n name: java\n path: /usr/lib/jvm/java-11-amazon-corretto.aarch64/bin/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 252, "all_permissive": false }
ansible_role
katsuobushiFPGA/ansible-apache-tomcat-mysql
4cdd4aa86c83d2c1baabd43baef81358f7ab07bf
0
roles/mysql
8,116
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: Download mysql community repo\n ansible.builtin.get_url:\n url: https://dev.mysql.com/get/mysql80-community-release-el9-4.noarch.rpm\n dest: /tmp/mysql80-community-release-el9-4.noarch.rpm\n http_agent: curl/7.76.1\n\n- name: Downloa...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2698, "all_permissive": false }
ansible_role
katsuobushiFPGA/ansible-apache-tomcat-mysql
4cdd4aa86c83d2c1baabd43baef81358f7ab07bf
0
roles/tomcat
8,116
[ "no_license" ]
[ { "path": "roles/tomcat/tasks/main.yml", "content": "---\n- name: Install packages\n ansible.builtin.dnf:\n name:\n - tomcat9\n - tomcat9-lib\n - tomcat9-webapps\n state: present\n\n- name: Copy server.xml\n ansible.builtin.copy:\n src: files/server.xml\n dest: /etc/tomcat9/serv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 708, "all_permissive": false }
ansible_role
rahulinux/ansible-portus
6fdbc92b4f33ff39c997fbc508ab746893fe9239
1
roles/portus
8,036
[ "no_license" ]
[ { "path": "roles/portus/templates/env.j2", "content": "MACHINE_FQDN={{ external_cn }}\nSECRET_KEY_BASE={{ secrets.secret_key_base | default(secret_key_base) }}\nPORTUS_PASSWORD={{ secrets.portus_password | default(portus_password) }}\nDATABASE_PASSWORD={{ secrets.db_password | default(db_password) }}\nSMTP...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 5715, "all_permissive": false }
ansible_role
rahulinux/ansible-portus
6fdbc92b4f33ff39c997fbc508ab746893fe9239
1
roles/vault-load-certs
8,036
[ "no_license" ]
[ { "path": "roles/vault-load-certs/tasks/main.yml", "content": "---\n - block:\n - name: read certs from vault\n hashivault_read:\n secret: \"{{vault_path}}/certs\"\n register: certs_data\n become: false\n delegate_to: localhost\n\n - name: extract certs\n set_fact:\n cert...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 276, "all_permissive": false }
ansible_role
navodit-sharma/ansible-efk
77025dca2d89399f9bc0d57e67545fa6a08266e3
0
efk/roles/elasticsearch
8,036
[ "no_license" ]
[ { "path": "efk/roles/elasticsearch/templates/elasticsearch/elasticsearch.yml.j2", "content": "# ======================== Elasticsearch Configuration =========================\n#\n# NOTE: Elasticsearch comes with reasonable defaults for most settings.\n# Before you set out to tweak and tune the configu...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 8855, "all_permissive": false }
ansible_role
navodit-sharma/ansible-efk
77025dca2d89399f9bc0d57e67545fa6a08266e3
0
efk/roles/fluentd
8,036
[ "no_license" ]
[ { "path": "efk/roles/fluentd/tasks/main.yml", "content": "---\n- name: Create fluentd's yaml storage directory\n file:\n path: \"{{ fl_yaml_dir }}\"\n state: directory\n group: \"{{ fl_system_group }}\"\n owner: \"{{ fl_system_user }}\"\n mode: 0750\n recurse: no\n\n- name: Add fluentd co...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 3148, "all_permissive": false }
ansible_role
navodit-sharma/ansible-efk
77025dca2d89399f9bc0d57e67545fa6a08266e3
0
efk/roles/kibana
8,036
[ "no_license" ]
[ { "path": "efk/roles/kibana/handlers/main.yml", "content": "---\n- name: Restart kibana.service\n systemd:\n name: kibana\n daemon-reload: yes\n state: restarted\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 107 }, { "path": "efk/roles/kibana/tasks/re...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2890, "all_permissive": false }
ansible_role
navodit-sharma/ansible-efk
77025dca2d89399f9bc0d57e67545fa6a08266e3
0
efk/roles/openjdk
8,036
[ "no_license" ]
[ { "path": "efk/roles/openjdk/vars/main.yml", "content": "---\n# Java type to install, available values :\n# - jre\n# - jdk\njava_type: jre\njava_register_alternative: true\n\n# Version of openjdk JRE to install on Redhat based systems, available values :\n# - 1.7.0\n# - 1.8.0\n# - 11\njava_redhat_version_fu...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2184, "all_permissive": false }
ansible_role
devilathag/expense-ansible
7a441d7a7a6897dc0425e516eebe3798fba5eb45
0
roles/backend
8,036
[ "no_license" ]
[ { "path": "roles/backend/tasks/main.yml", "content": "- name: verfiy nodejs\n ansible.builtin.shell: type npm\n register: npm\n ignore_errors: yes\n\n\n#- name: reas npm\n # ansible.builtin.debug:\n # msg: \"{{npm}}\"\n\n- name: Install NodeJS Repos\n ansible.builtin.shell: curl -sl https://rpm.nodeso...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1478, "all_permissive": false }
ansible_role
devilathag/expense-ansible
7a441d7a7a6897dc0425e516eebe3798fba5eb45
0
roles/common
8,036
[ "no_license" ]
[ { "path": "roles/common/tasks/filebeat.yml", "content": "- name: run filebeat command\n ansible.builtin.shell: ansible-pull -i localhost, -U https://github.com/devilathag/Infra-Ansible1 elk.yml -e elk_component=filebeat\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 16...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 163, "all_permissive": false }
ansible_role
s1ckoleg/geodns-web-setup
d6c9529f4d7e42628467929fa2dceafeb6e040ae
0
ansible/roles/coredns
8,036
[ "no_license" ]
[ { "path": "ansible/roles/coredns/handlers/main.yml", "content": "---\n- name: Reload CoreDNS\n become: true\n ansible.builtin.systemd:\n name: coredns\n state: reloaded\n\n- name: Restart CoreDNS\n become: true\n ansible.builtin.systemd:\n name: coredns\n state: restarted", "license_type...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 9102, "all_permissive": false }
ansible_role
s1ckoleg/geodns-web-setup
d6c9529f4d7e42628467929fa2dceafeb6e040ae
0
ansible/roles/grafana
8,036
[ "no_license" ]
[ { "path": "ansible/roles/grafana/defaults/main.yml", "content": "grafana_version: \"10.2.3\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 25 }, { "path": "ansible/roles/grafana/tasks/main.yml", "content": "---\n- name: Open common ports\n become: true\n an...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1197, "all_permissive": false }
ansible_role
s1ckoleg/geodns-web-setup
d6c9529f4d7e42628467929fa2dceafeb6e040ae
0
ansible/roles/k8s
8,036
[ "no_license" ]
[ { "path": "ansible/roles/k8s/defaults/main.yml", "content": "is_master: false\nsrc_helm_path: \"{{ playbook_dir }}/../k8s/helm\"\ndest_helm_path: \"/tmp/helm\"\nrelease_name: \"web\"\nnamespace: \"default\"\nyandex_oauth: \"\"\nnode_label: \"\"", "license_type": "no_license", "detected_licenses": []...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 8459, "all_permissive": false }
ansible_role
s1ckoleg/geodns-web-setup
d6c9529f4d7e42628467929fa2dceafeb6e040ae
0
ansible/roles/nginx
8,036
[ "no_license" ]
[ { "path": "ansible/roles/nginx/handlers/main.yml", "content": "---\n- name: Reload Nginx\n become: true\n ansible.builtin.systemd:\n name: nginx\n state: reloaded\n\n- name: Restart Nginx\n become: true\n ansible.builtin.systemd:\n name: nginx\n state: restarted\n", "license_type": "no_l...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2590, "all_permissive": false }
ansible_role
s1ckoleg/geodns-web-setup
d6c9529f4d7e42628467929fa2dceafeb6e040ae
0
ansible/roles/node_exporter
8,036
[ "no_license" ]
[ { "path": "ansible/roles/node_exporter/defaults/main.yml", "content": "node_exporter_version: \"1.8.2\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "ansible/roles/node_exporter/handlers/main.yml", "content": "---\n- name: Reload Daemon\n an...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2353, "all_permissive": false }
ansible_role
s1ckoleg/geodns-web-setup
d6c9529f4d7e42628467929fa2dceafeb6e040ae
0
ansible/roles/prometheus
8,036
[ "no_license" ]
[ { "path": "ansible/roles/prometheus/templates/prometheus.yml.j2", "content": "# my global config\nglobal:\n scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.\n evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.\n # scrap...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 6026, "all_permissive": false }
ansible_role
szhelepov/Maria_Apache_WordPress
7c8a53737b5c17f609cb59796c40d2877479deb0
0
roles/apache
8,036
[ "no_license" ]
[ { "path": "roles/apache/vars/main.yml", "content": "---\napache_packages:\n - httpd\n - httpd-devel\n - openssl\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 56 }, { "path": "roles/apache/tasks/setup.yml", "content": "---\n- name: install apache\n yum: \n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 558, "all_permissive": false }
ansible_role
szhelepov/Maria_Apache_WordPress
7c8a53737b5c17f609cb59796c40d2877479deb0
0
roles/mysql
8,036
[ "no_license" ]
[ { "path": "roles/mysql/handlers/main.yml", "content": "---\n- name: restart mariadb\n service: name=mariadb state=restarted enabled=yes\n\n- name: reload mariadb\n service: name=mariadb state=reloaded\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 143 }, { "pa...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1055, "all_permissive": false }
ansible_role
langakipkoech/Ansible-LEMP-Stack
11bda68949bdd8542b186c69fb8f72cb40029686
0
ansible/roles/elisha.mysql
8,036
[ "no_license" ]
[ { "path": "ansible/roles/elisha.mysql/templates/my.cnf.j2", "content": "[client]\nuser=root\npassword=<PASSWORD>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "ansible/roles/elisha.mysql/tasks/main.yml", "content": "---\n# MySQL Installation...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 1060, "all_permissive": false }
ansible_role
langakipkoech/Ansible-LEMP-Stack
11bda68949bdd8542b186c69fb8f72cb40029686
0
ansible/roles/elisha.nginx
8,036
[ "no_license" ]
[ { "path": "ansible/roles/elisha.nginx/tasks/main.yml", "content": "---\n# tasks file for elisha.nginx\n- name: Task to Install NginxWebserver\n apt:\n name: nginx\n state: present\n \n- name: Starting NginxWebserver\n service:\n name: nginx\n state: restarted\n\n\n- name: Remove apache2\n ap...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 637, "all_permissive": false }
ansible_role
langakipkoech/Ansible-LEMP-Stack
11bda68949bdd8542b186c69fb8f72cb40029686
0
ansible/roles/elisha.php
8,036
[ "no_license" ]
[ { "path": "ansible/roles/elisha.php/defaults/main.yml", "content": "---\n# defaults file for elisha.php\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "ansible/roles/elisha.php/tasks/main.yml", "content": "---\n - name: Add the <NAME> PHP PP...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 604, "all_permissive": false }
ansible_role
langakipkoech/Ansible-LEMP-Stack
11bda68949bdd8542b186c69fb8f72cb40029686
0
ansible/roles/elisha.wordpress
8,036
[ "no_license" ]
[ { "path": "ansible/roles/elisha.wordpress/handlers/main.yml", "content": "---\n# handlers file for elisha.wordpress\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 41 }, { "path": "ansible/roles/elisha.wordpress/templates/wp-config.php", "content": "<?php\n/*...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 3566, "all_permissive": false }
ansible_role
Silouanlc/ansible
acf2a04b527b4a066b26b9a782eb8873b5a2785b
0
devops-ansible/roles/apache
8,036
[ "no_license" ]
[ { "path": "devops-ansible/roles/apache/tasks/main.yml", "content": "- name: Update server\n apt:\n upgrade: yes\n update_cache: yes\n\n- name: Install Apache2\n apt:\n name: apache2\n\n- name: Allow Apache2\n ufw:\n rule: allow\n name: Apache\n\n- name: Php\n apt:\n name: php\n \n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 417, "all_permissive": false }
ansible_role
Silouanlc/ansible
acf2a04b527b4a066b26b9a782eb8873b5a2785b
0
devops-ansible/roles/mysql
8,036
[ "no_license" ]
[ { "path": "devops-ansible/roles/mysql/tasks/main.yml", "content": "- name: Update server\n apt:\n upgrade: yes\n update_cache: yes\n\n- name: mysql-server\n apt:\n name: mysql-server\n \n- name: python-mysqldb\n apt:\n name: python-mysqldb\n \n- name: python-pip\n apt:\n name: python-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 653, "all_permissive": false }
ansible_role
Silouanlc/ansible
acf2a04b527b4a066b26b9a782eb8873b5a2785b
0
devops-ansible/roles/wordpress
8,036
[ "no_license" ]
[ { "path": "devops-ansible/roles/wordpress/tasks/main.yml", "content": "- name: Download WordPress\n get_url:\n url=https://wordpress.org/latest.tar.gz\n dest=/tmp/wordpress.tar.gz\n validate_certs=no\n \n- name: Extract WordPress \n unarchive: src=/tmp/wordpress.tar.gz dest=/var/www/ copy=no\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1011, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/calico-etcd
8,036
[ "no_license" ]
[ { "path": "roles/calico-etcd/templates/v3.1/calico_ipv4pool_cidr.yaml.j2", "content": "apiVersion: projectcalico.org/v3\nkind: IPPool\nmetadata:\n name: my.ippool-1\nspec:\n cidr: {{ pod_cidr }}\n ipipMode: CrossSubnet\n natOutgoing: true\n disabled: false\n", "license_type": "no_license", "det...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 2359, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/calico-k8s-api-datastore
8,036
[ "no_license" ]
[ { "path": "roles/calico-k8s-api-datastore/templates/v3.10/calicoctl.cfg.j2", "content": "apiVersion: projectcalico.org/v3\nkind: CalicoAPIConfig\nmetadata:\nspec:\n datastoreType: \"etcdv3\"\n etcdEndpoints: \"{% for item in groups['etcd'] %}https://{{ hostvars[item]['inventory_hostname'] }}:2379{% if n...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 5546, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/common
8,036
[ "no_license" ]
[ { "path": "roles/common/tasks/Ubuntu/20/security.yml", "content": "---\n- name: disable UFW\n ufw:\n state: disabled\n failed_when: false\n\n- name: disable AppArmor\n service:\n name: apparmor\n state: stopped\n enabled: no\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 6038, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/containerd
8,036
[ "no_license" ]
[ { "path": "roles/containerd/tasks/main.yml", "content": "---\n- import_tasks: containerd_{{ install_or_uninstall }}.yml\n tags: containerd\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 81 }, { "path": "roles/containerd/handlers/main.yml", "content": "---\n...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 3376, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/coredns
8,036
[ "no_license" ]
[ { "path": "roles/coredns/tasks/coredns_uninstall.yml", "content": "---\n- name: delete coredns \n shell: kubectl -s {{ kubernetes_apiserver }} delete -f /var/tmp/coredns/{{ coredns_version.split('.')[:2] | join('.') }}\n ignore_errors: true\n\n- name: remove coredns yaml\n file:\n path: \"{{ item }}\"...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 4165, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/coredns-prepare
8,036
[ "no_license" ]
[ { "path": "roles/coredns-prepare/tasks/main.yml", "content": "---\n- import_tasks: coredns-prepare_{{ install_or_uninstall }}.yml\n tags: coredns-prepare\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 91 }, { "path": "roles/coredns-prepare/tasks/coredns-prepare...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1023, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/cri-o
8,036
[ "no_license" ]
[ { "path": "roles/cri-o/templates/v1.18/policy.json.j2", "content": "{\n \"default\": [\n {\n \"type\": \"insecureAcceptAnything\"\n }\n ],\n \"transports\": {\n \"docker\": {}\n }\n}\n", "license_type": "no_license", "detected_licenses": [], "size_byte...
{ "task_files": 9, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 14, "total_bytes": 8048, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/cri-tools
8,036
[ "no_license" ]
[ { "path": "roles/cri-tools/tasks/cri-tools_install.yml", "content": "---\n- name: unarchive crictl tar\n unarchive:\n src: \"{{ cri_tools_bin_tar_url }}/{{ item }}\"\n dest: /usr/local/bin/\n remote_src: yes\n owner: root\n group: root\n mode: 0755\n loop:\n - crictl-{{ cri_tools_vers...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1768, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/csr-certificate
8,036
[ "no_license" ]
[ { "path": "roles/csr-certificate/tasks/clusterrolebinding.yml", "content": "---\n- name: clusterrolebinding kubelet-bootstrap exist ?\n raw: kubectl -s {{ kubernetes_apiserver }} get clusterrolebinding kubelet-bootstrap\n register: kubelet_bootstrap\n failed_when: false\n\n- name: clusterrolebinding syst...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1945, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/dashboard
8,036
[ "no_license" ]
[ { "path": "roles/dashboard/handlers/main.yml", "content": "---\n- name: apply dashboard\n shell: kubectl -s {{ kubernetes_apiserver }} apply -f /var/tmp/dashboard/{{ kubernetes_dashboard_version.split('.')[:2] | join('.') }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 2899, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/docker
8,036
[ "no_license" ]
[ { "path": "roles/docker/tasks/19.03/docker-bin_install.yml", "content": "- name: install docker bin to /usr/bin\n copy:\n remote_src: yes\n src: /tmp/docker/{{ item }}\n dest: /usr/bin\n owner: root\n group: root\n mode: 0755\n loop:\n - runc\n - ctr\n - containerd\n - contai...
{ "task_files": 9, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 14, "total_bytes": 9319, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/efk
8,036
[ "no_license" ]
[ { "path": "roles/efk/tasks/efk_install.yml", "content": "---\n- name: label kubernetes-node \"beta.kubernetes.io/fluentd-ds-ready=true\"\n shell: kubectl -s {{ kubernetes_apiserver }} label nodes --overwrite=true $(kubectl -s {{ kubernetes_apiserver }} get nodes -ojsonpath='{.items[*].metadata.name}') 'bet...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1524, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/etcd
8,036
[ "no_license" ]
[ { "path": "roles/etcd/templates/v3.4/etcd.service.j2", "content": "[Unit]\nDescription=Etcd Server\nAfter=network.target\nAfter=network-online.target\nWants=network-online.target\nDocumentation=https://github.com/coreos\n\n[Service]\nType=notify\nUser=etcd\nExecStart=/usr/bin/etcd --config-file /etc/etcd/et...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 7, "total_bytes": 5990, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/flannel
8,036
[ "no_license" ]
[ { "path": "roles/flannel/handlers/main.yml", "content": "---\n- name: apply flannel\n shell: kubectl -s {{ kubernetes_apiserver }} apply -f /var/tmp/flannel/{{ flannel_version.split('.')[:2] | join('.') }}/{{ item }}\n loop:\n - kube-flannel.yaml\n", "license_type": "no_license", "detected_lice...
{ "task_files": 2, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1908, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/flannel-systemd
8,036
[ "no_license" ]
[ { "path": "roles/flannel-systemd/tasks/flannel_uninstall.yml", "content": "---\n- name: stop the flannel service\n service: \n name: flanneld \n state: stopped \n enabled: no\n ignore_errors: true\n\n- name: uninstall flannel\n yum: \n name: flannel\n state: absent\n\n- name: remove cni\n ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 4997, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/heapster
8,036
[ "no_license" ]
[ { "path": "roles/heapster/handlers/main.yml", "content": "---\n- name: apply heapster\n shell: kubectl -s {{ kubernetes_apiserver }} apply -f /var/tmp/heapster/{{ kubernetes_heapster_version.split('.')[:2] | join('.') }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 1...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1272, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/ingress
8,036
[ "no_license" ]
[ { "path": "roles/ingress/handlers/main.yml", "content": "---\n- name: apply k8s-ingress\n shell: kubectl -s {{ kubernetes_apiserver }} apply -f /var/tmp/k8s-ingress/{{ item }}\n loop:\n - namespace.yaml\n - default-backend.yaml\n - configmap.yaml\n - tcp-services-configmap.yaml\n - udp-serv...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1873, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/kata-containers
8,036
[ "no_license" ]
[ { "path": "roles/kata-containers/tasks/kata-containers_install.yml", "content": "---\n- name: container engine is docker ?\n stat:\n path: /var/run/dockershim.sock\n register: docker\n\n- name: container engine is containerd ?\n stat:\n path: /var/run/containerd/containerd.sock\n register: contain...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 6220, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/kubectl
8,036
[ "no_license" ]
[ { "path": "roles/kubectl/tasks/kubectl_uninstall.yml", "content": "---\n- name: remove kubectl\n file:\n path: \"{{ item }}\"\n state: absent\n loop:\n - /usr/local/bin/kubectl\n - ~/.kube/\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 128 }, { "p...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 799, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/kubedns
8,036
[ "no_license" ]
[ { "path": "roles/kubedns/handlers/main.yml", "content": "---\n- name: apply kubedns\n shell: kubectl -s {{ kubernetes_apiserver }} apply -f /var/tmp/kubedns/\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 100 }, { "path": "roles/kubedns/tasks/main.yml", "co...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 983, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/kubernetes-cni
8,036
[ "no_license" ]
[ { "path": "roles/kubernetes-cni/tasks/main.yml", "content": "---\n- import_tasks: kubernetes-cni_{{ install_or_uninstall }}.yml\n tags: kubernetes-cni\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "roles/kubernetes-cni/tasks/kubernetes-cni_unin...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 626, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/kubernetes-master
8,036
[ "no_license" ]
[ { "path": "roles/kubernetes-master/tasks/kubernetes-master_install.yml", "content": "---\n- import_tasks: tls.yml\n tags: tls\n- import_tasks: kube-apiserver.yml\n tags: kube-apiserver\n- import_tasks: kube-controller-manager.yml\n tags: kube-controller-manager\n- import_tasks: kube-scheduler.yml\n tags...
{ "task_files": 7, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 16, "total_bytes": 14195, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/kubernetes-node
8,036
[ "no_license" ]
[ { "path": "roles/kubernetes-node/tasks/main.yml", "content": "---\n- import_tasks: \"kubernetes-node_{{ install_or_uninstall }}.yml\"\n tags: kubernetes-node\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 93 }, { "path": "roles/kubernetes-node/handlers/main.yml...
{ "task_files": 9, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 19, "total_bytes": 13186, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/lb
8,036
[ "no_license" ]
[ { "path": "roles/lb/tasks/lb_install.yml", "content": "---\n- include_tasks: \"{{ ansible_distribution }}/{{ ansible_distribution_major_version }}/lb_install.yml\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 106 }, { "path": "roles/lb/templates/Debian/10/keep...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 4382, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/metrics-server
8,036
[ "no_license" ]
[ { "path": "roles/metrics-server/tasks/metrics-server_install.yml", "content": "---\n- name: create metrics-server yaml dir\n file:\n path: /var/tmp/metrics-server/{{ metrics_server_version.split('.')[:2] | join('.') }}\n state: directory\n owner: root\n group: root\n mode: 0755\n\n- name: sy...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 6943, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/ntp
8,036
[ "no_license" ]
[ { "path": "roles/ntp/tasks/CentOS/7/ntp_install.yml", "content": "---\n- name: install chrony\n yum: \n name: chrony \n state: present\n update_cache: yes\n\n- name: configure chrony \n template: \n src: chrony.conf.j2 \n dest: /etc/chrony.conf\n owner: root\n group: root\n mode: 0...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 3116, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/podman
8,036
[ "no_license" ]
[ { "path": "roles/podman/tasks/Ubuntu/18/podman_depends.yml", "content": "---\n- name: install podman depends (ostree)\n apt: \n name: ['libostree-dev', 'libseccomp-dev']\n state: present\n update_cache: yes\n cache_valid_time: 3600\n install_recommends: no\n\n- name: link libdevmapper.so.1.0...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 2907, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/pouch
8,036
[ "no_license" ]
[ { "path": "roles/pouch/tasks/Ubuntu/20/pouch_install.yml", "content": "---\n- name: add pouch signing key\n apt_key:\n url: http://mirrors.aliyun.com/opsx/pouch/linux/debian/opsx@service.alibaba.com.gpg.key\n state: present\n\n- name: add pouch repo\n apt_repository:\n repo: deb http://mirrors.a...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 2907, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/repo
8,036
[ "no_license" ]
[ { "path": "roles/repo/tasks/Debian/10/repo_install.yml", "content": "---\n- name: add {{ ansible_distribution }}:{{ ansible_distribution_version }}({{ ansible_distribution_release }}) offline repo\n apt_repository:\n repo: deb [trusted=yes] {{ item }} {{ ansible_distribution_release }} main contrib \n ...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 7012, "all_permissive": false }
ansible_role
cooltux008/ansible-k8s-tls
42e33036aac8e4da53a17e9307ae6ea4bcb82acc
1
roles/traefik
8,036
[ "no_license" ]
[ { "path": "roles/traefik/tasks/main.yml", "content": "---\n- import_tasks: traefik_{{ install_or_uninstall }}.yml\n tags: traefik\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "roles/traefik/templates/v2.1/traefik_ingressroutes.yaml.j2", "c...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 8733, "all_permissive": false }
ansible_role
tamalin/ansible-libvirt-vms
f010ee2a87398ba70b60f80fbadfdfcc042f8fae
0
ansible/roles/get_ubuntu_image
8,036
[ "permissive" ]
[ { "path": "ansible/roles/get_ubuntu_image/tasks/main.yml", "content": "---\n\n- name: Create cache dir if needed\n ansible.builtin.file:\n path: \"{{ ubuntu.cache }}\"\n state: directory\n mode: \"0755\"\n\n- name: Download Ubuntu Cloud image to cache if needed\n ansible.builtin.get_url:\n des...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 886, "all_permissive": true }
ansible_role
tamalin/ansible-libvirt-vms
f010ee2a87398ba70b60f80fbadfdfcc042f8fae
0
ansible/roles/libvirt_vm
8,036
[ "permissive" ]
[ { "path": "ansible/roles/libvirt_vm/templates/network-config.j2", "content": "ethernets:\n{% for nic in libvirt_vm.nics %}\n nic{{ loop.index0 }}:\n match:\n macaddress: {{ nic.mac | lower }}\n{% if nic.name is defined %}\n set-name: \"{{ nic.name }}\"\n{% endif %}\n{% if nic.addr is defi...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 13840, "all_permissive": true }
ansible_role
tamalin/ansible-libvirt-vms
f010ee2a87398ba70b60f80fbadfdfcc042f8fae
0
ansible/roles/setup_ssh
8,036
[ "permissive" ]
[ { "path": "ansible/roles/setup_ssh/tasks/create_config.yml", "content": "---\n\n- name: Generate SSH config for VMs\n ansible.builtin.template:\n dest: \"{{ [setup_ssh_key.path.local, setup_ssh_key.config.file] | join('/') }}\"\n src: \"ssh_config.j2\"\n mode: \"{{ setup_ssh_key.config.mode }}\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 222, "all_permissive": true }
ansible_role
tamalin/ansible-libvirt-vms
f010ee2a87398ba70b60f80fbadfdfcc042f8fae
0
ansible/roles/ubuntu_image_details
8,036
[ "permissive" ]
[ { "path": "ansible/roles/ubuntu_image_details/defaults/main.yml", "content": "---\n\n_ubuntu_image_name: >-\n {{ ([ubuntu.image.release,\n ubuntu.image.type,\n ubuntu.image.build,\n ubuntu.image.arch] | join('-')) ~ '.img' }}\n\n_ubuntu_image_url_base: >-\n {{ [ubuntu.image.base_url,\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 650, "all_permissive": true }
ansible_role
htmlacademy-nestjs/103121-readme-7
3a90ccc47c711730b76288b45ba105c767202fbc
0
ansible/roles/nvm
8,036
[ "no_license" ]
[ { "path": "ansible/roles/nvm/tasks/main.yml", "content": "---\n- name: Установить NVM (Node Version manager)\n ansible.builtin.shell:\n cmd: \"curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash\"\n", "license_type": "no_license", "detected_licenses": [], "size_by...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 166, "all_permissive": false }
ansible_role
pfh-hbq/devops
3e5b66486e176db2239490d4b75dfa270f4d5d14
0
ansible/roles/app_deploy
8,136
[ "no_license" ]
[ { "path": "ansible/roles/app_deploy/tasks/main.yml", "content": "---\n- name: Ensure python is installed.\n become: true\n package:\n name: \"python3\"\n state: present\n\n- name: Ensure Pip is installed.\n become: true\n package:\n name: \"python3-pip\"\n state: present\n\n- name: Install d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 864, "all_permissive": false }
ansible_role
mpalacio2583/terrafom_cloud
bbb9ae603ea04d636416f6d03a2e755b4247953b
0
roles/add_host_to_tower_inventory
8,136
[ "no_license" ]
[ { "path": "roles/add_host_to_tower_inventory/tasks/main.yml", "content": "---\n- name: Add new VM to Tower Inventory\n tower_host:\n name: \"{{ vm_hostname }}\"\n inventory: \"{{ tower_inventory_name }}\"\n state: present\n enabled: true\n tower_verify_ssl: no\n variables:\n ansible_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 241, "all_permissive": false }
ansible_role
mpalacio2583/terrafom_cloud
bbb9ae603ea04d636416f6d03a2e755b4247953b
0
roles/validate_deployed_application
8,136
[ "no_license" ]
[ { "path": "roles/validate_deployed_application/tasks/main.yml", "content": "---\n- name: Check that application is deployed and running as expected\n uri:\n url: \"http://{{ vm_ip }}:8080/\"\n return_content: yes\n register: result\n until: \"result.status == 200\"\n retries: 10\n delay: 5\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 214, "all_permissive": false }
ansible_role
CodeJuan/ansible_play
f947170a3e70facfadb5b5aa86e1ac57350359da
0
advancded_play/roles/test
8,136
[ "no_license" ]
[ { "path": "advancded_play/roles/test/handlers/main.yml", "content": "---\n- name: restart\n service: name=iptables state=restarted enabled=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 73 }, { "path": "advancded_play/roles/test/tasks/main.yml", "conten...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 187, "all_permissive": false }
ansible_role
github-hiroki/fastapi.sample
a655bff0432b8a93b704a828b73ff7741e02e681
0
ansible/roles/app
8,136
[ "no_license" ]
[ { "path": "ansible/roles/app/tasks/set_nginx.yml", "content": "---\n- name: add nginx repogitry\n yum:\n name: http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm\n state: present\n\n- name: install nginx\n yum:\n name: nginx\n state: present\n enabler...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 4657, "all_permissive": false }
ansible_role
github-hiroki/fastapi.sample
a655bff0432b8a93b704a828b73ff7741e02e681
0
ansible/roles/common
8,136
[ "no_license" ]
[ { "path": "ansible/roles/common/tasks/main.yml", "content": "---\n# 日本語の環境を設定\n- name: install glibc-common\n yum:\n name: glibc-common\n state: latest\n\n- name: check if ja_JP in locales list\n command: localectl list-locales\n register: check_result\n changed_when: false\n\n- name: reinstall gl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 792, "all_permissive": false }
ansible_role
github-hiroki/fastapi.sample
a655bff0432b8a93b704a828b73ff7741e02e681
0
ansible/roles/firewalld
8,136
[ "no_license" ]
[ { "path": "ansible/roles/firewalld/tasks/main.yml", "content": "---\n- name: stop firewalld service\n systemd:\n name: firewalld\n state: stopped\n enabled: no\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 101 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 101, "all_permissive": false }
ansible_role
github-hiroki/fastapi.sample
a655bff0432b8a93b704a828b73ff7741e02e681
0
ansible/roles/pip
8,136
[ "no_license" ]
[ { "path": "ansible/roles/pip/tasks/main.yml", "content": "---\n- name: download get-pip.py\n get_url:\n url: https://bootstrap.pypa.io/get-pip.py\n dest: /usr/local/src/get-pip.py\n validate_certs: no\n\n- name: get installed pip version\n command: pip --version\n register: check_result\n ignor...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 432, "all_permissive": false }
ansible_role
github-hiroki/fastapi.sample
a655bff0432b8a93b704a828b73ff7741e02e681
0
ansible/roles/pipenv
8,136
[ "no_license" ]
[ { "path": "ansible/roles/pipenv/tasks/main.yml", "content": "---\n- name: install pipenv\n pip:\n name: pipenv\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 70 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 70, "all_permissive": false }
ansible_role
github-hiroki/fastapi.sample
a655bff0432b8a93b704a828b73ff7741e02e681
0
ansible/roles/pyenv
8,136
[ "no_license" ]
[ { "path": "ansible/roles/pyenv/vars/pyenv_vars.yml", "content": "---\npyenv_root: /usr/local/pyenv\n\npyenv_required_package:\n - bzip2-1.0.6-13.el7.x86_64\n - bzip2-devel-1.0.6-13.el7.x86_64\n - git-1.8.3.1-22.el7_8.x86_64\n - gcc-4.8.5-39.el7.x86_64\n - gcc-c++-4.8.5-39.el7.x86_64\n - libffi-devel-3...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1272, "all_permissive": false }
ansible_role
github-hiroki/fastapi.sample
a655bff0432b8a93b704a828b73ff7741e02e681
0
ansible/roles/selinux
8,136
[ "no_license" ]
[ { "path": "ansible/roles/selinux/tasks/main.yml", "content": "---\n- name: install selinux tools\n yum:\n name: libselinux-python\n state: present\n\n- name: disable selinux\n selinux:\n state: disabled\n register: disable_selinux\n\n- name: reboot\n reboot:\n reboot_timeout: 3600\n when: d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 255, "all_permissive": false }
ansible_role
github-hiroki/fastapi.sample
a655bff0432b8a93b704a828b73ff7741e02e681
0
ansible/roles/syslog
8,136
[ "no_license" ]
[ { "path": "ansible/roles/syslog/tasks/main.yml", "content": "---\n- name: install rsyslog\n yum:\n name: rsyslog\n state: present\n\n- name: start rsyslog service\n systemd:\n name: rsyslog\n state: started\n enabled: yes\n", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 168, "all_permissive": false }
ansible_role
UmairAliShah/Ansible-Wagtail-CMS-Nginx
4b81186ddd2beb828431c617f03ad395209576bb
0
roles/mysql
8,136
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n# tasks file for mysql\n#\n- name: \"Install Utility Software\"\n apt:\n name: [ 'python3', 'python3-pip', 'python3-dev', 'software-properties-common', 'python3-pymysql']\n state: latest\n update_cache: yes\n\n- name: \"Add apt key\"\n comm...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1861, "all_permissive": false }
ansible_role
UmairAliShah/Ansible-Wagtail-CMS-Nginx
4b81186ddd2beb828431c617f03ad395209576bb
0
roles/nginx
8,136
[ "no_license" ]
[ { "path": "roles/nginx/templates/nginx.j2", "content": "server {\n listen 80;\n server_name 127.0.0.1;\n\n location = /favicon.ico { access_log off; log_not_found off; }\n location /static/ {\n root {{ project_name_path }};\n }\n\n location / {\n include uwsgi_params;...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 903, "all_permissive": false }
ansible_role
UmairAliShah/Ansible-Wagtail-CMS-Nginx
4b81186ddd2beb828431c617f03ad395209576bb
0
roles/wagtail-cms
8,136
[ "no_license" ]
[ { "path": "roles/wagtail-cms/defaults/main.yml", "content": "---\n# defaults file for wagtail-cms", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/wagtail-cms/tasks/main.yml", "content": "---\n# tasks file for wagtail-cms\n#\n- name: \"upd...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2757, "all_permissive": false }
ansible_role
ramin-i/inovus
5f5767f2c247493fee8b53e7a5fd9b758dc32296
0
roles/docker_install
8,136
[ "no_license" ]
[ { "path": "roles/docker_install/tasks/main.yml", "content": "- name: check if docker install on host\n shell: /usr/bin/docker version\n register: docker_exists\n ignore_errors: yes\n\n- name: get docker exists status\n debug:\n msg: \"{{ docker_exists.rc }}\"\n ignore_errors: yes\n\n- debug:\n ms...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1000, "all_permissive": false }
ansible_role
ramin-i/inovus
5f5767f2c247493fee8b53e7a5fd9b758dc32296
0
roles/postgres_user
8,136
[ "no_license" ]
[ { "path": "roles/postgres_user/templates/create_user.sql.j2", "content": "CREATE ROLE {{ pg_user }} LOGIN;\nCREATE DATABASE {{ pg_database }};\nALTER DATABASE {{ pg_database }} OWNER TO {{ pg_user }};", "license_type": "no_license", "detected_licenses": [], "size_bytes": 125 }, { "path"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 583, "all_permissive": false }
ansible_role
ramin-i/inovus
5f5767f2c247493fee8b53e7a5fd9b758dc32296
0
roles/yandex
8,136
[ "no_license" ]
[ { "path": "roles/yandex/defaults/main.yml", "content": "vm_name: test-inovus\nvm_cores: 2\nvm_mem: 4GB\nvm_boot_disk_size: 30GB\nvm_image: centos-7", "license_type": "no_license", "detected_licenses": [], "size_bytes": 87 }, { "path": "roles/yandex/tasks/main.yml", "content": "- name...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 368, "all_permissive": false }
ansible_role
ramin-i/inovus
5f5767f2c247493fee8b53e7a5fd9b758dc32296
0
roles/zabbix_install
8,136
[ "no_license" ]
[ { "path": "roles/zabbix_install/tasks/main.yml", "content": "- template:\n src: docker-compose.yml.j2\n dest: /opt/docker-compose.yaml\n \n- name: run docker containers\n shell: docker stack deploy -c /opt/docker-compose.yaml zabbix", "license_type": "no_license", "detected_licenses": [], ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1122, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/base-facts
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/base-facts/tasks/main.yml", "content": "# vim: sw=2 ai nowrap expandtab\n---\n\n- import_tasks: assign_facts.yml\n when: not configured_c93fca421c233d1529ad859ac1adff81\n tags: [always]\n\n- name: set this role as configured\n set_fact:\n configured_c93fca421c233d1529ad859ac...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3665, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/demo-script
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/demo-script/tasks/main.yml", "content": "# vim: ts=2 sw=2 expandtab ai\n---\n\n- block:\n - debug:\n var: msg\n vars:\n msg:\n - \"You need to give a step:\"\n - \"0) build rpm\"\n - \"1) publish performance - upload and publish rpm...
{ "task_files": 5, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 7785, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/dns
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/dns/handlers/main.yml", "content": "# vim: ts=2 sw=2 expandtab ai\n---\n- name: restart haproxy\n systemd:\n name: haproxy\n daemon_reload: true\n enabled: true\n state: restarted\n\n- name: restart dnsmasq\n systemd:\n name: dnsmasq\n daemon_reload: true\n ...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 10802, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/localconfig
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/localconfig/vars/main.yml", "content": "# vim: ts=2 sw=2 expandtab ai\n---\neasy_rsa_master_pki: \"{{ demo_certificates }}/pki.master\"\neasy_rsa_ocp_pki: \"{{ demo_certificates }}/pki.cluster\"\neasy_rsa_cmd: ./easy-rsa/easyrsa3/easyrsa\neasy_rsa_args: >-\n --batch\n --days=30\...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 6727, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/rhel
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/rhel/defaults/main.yml", "content": "# vim: ts=2 sw=2 expandtab ai\n---\nsubscription_repos: [ ]\ndocker_storage_dev: ''\n\nrhel_install_packages: [ ] \n\nsubscription_org:\nsubscription_ak:\n\nsubscription_register: true\n", "license_type": "no_license", "detected_license...
{ "task_files": 8, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 17764, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/router
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/router/defaults/main.yml", "content": "# vim: sw=2 ai ts=102\n---\nrole_task: configure\n# default dhcp configuration\n# satellite server is assumed to be first satellite in the group (should only be one)\n\nsatellite_server: \"{{ groups['satellites'][0] }}\"\nsatellite_server_ip:...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 12, "total_bytes": 7992, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/satellite-capsule
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/satellite-capsule/tasks/satellite_install.yml", "content": "---\n# vim: sw=2 ts=102 ai\n\n- name: \"kick off reboots for hosts that need it\"\n meta: flush_handlers\n\n- include_role:\n name: rhel\n tasks_from: hostname.yml\n\n- include_role:\n name: rhel\n tasks_from...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 10, "total_bytes": 14274, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/satellite-client
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/satellite-client/defaults/main.yml", "content": "# vim: ts=2 sw=2 expandtab ai\n---\nsatellite_client_repos:\n - rhel-7-server-rpms\n - \"rhel-7-server-satellite-tools-{{ satellite_tools_version }}-rpms\"\nsatellite_tools_repo: \"rhel-7-server-satellite-tools-{{ satellite_tools_...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2553, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/satellite-post
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/satellite-post/meta/main.yml", "content": "---\n# vim: sw=2 ts=102 ai\ndependencies:\n - role: satellite-shared\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 67 }, { "path": "playbooks/roles/satellite-post/library/check_capsules", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 6281, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/satellite-server
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/satellite-server/tasks/satellite_provision_cleanup_templates.yml", "content": "---\n# vim: sw=2 ts=2 ai expandtab\n- name: \"Provisioning|Cleanup | Get list of all templates belonging to Org: {{ satellite_default_organization }}\"\n command: \"/usr/bin/hammer --output=json templa...
{ "task_files": 25, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 34, "total_bytes": 68579, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/satellite-shared
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/satellite-shared/meta/main.yml", "content": "---\n# vim: sw=2 ts=102 ai\ndependencies:\n - role: rhel\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 55 }, { "path": "playbooks/roles/satellite-shared/tasks/main.yml", "content": "--...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 3315, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/vms-ec2
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/vms-ec2/vars/main.yml", "content": "# vim: ts=2 sw=2 expandtab ai\n---\nec2_tags:\n Name: '{{ inventory_hostname }}'\n demo: \"{{ ec2_demo_tag }}\"\n\nec2_security_group_tags:\n Name: \"{{ ec2_security_group_name }}\"\n demo: \"{{ ec2_demo_tag }}\"\n", "license_type": "no_...
{ "task_files": 4, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 6822, "all_permissive": false }
ansible_role
RedHatSatellite/satellite-demo
7f41461d08107dc263d71e789b3e7bc28977b1c0
23
playbooks/roles/vms-ovirt
8,136
[ "no_license" ]
[ { "path": "playbooks/roles/vms-ovirt/tasks/disks.yml", "content": "# vim: sw=2 ai ts=102\n---\n\n- block:\n - name: get vm facts\n ovirt_vms_facts:\n auth: \"{{ ovirt_auth }}\"\n pattern: \"name={{ vm_name }} and cluster={{ vm_cluster }}\"\n fetch_nested: true\n\n - name: set primary dis...
{ "task_files": 7, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 11, "total_bytes": 11395, "all_permissive": false }
ansible_role
Takuya-Yoshida-sti/wordpress-mysql
9ee9822948075afde762b739836cf1fecfa5b842
0
roles/mysql
8,136
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: install repo\n yum:\n name: https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm\n\n- name: install MySQL8\n yum:\n name: \"{{ item }}\"\n state: latest\n with_items:\n - mysql\n - mysql-server\n - MySQL-python\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1372, "all_permissive": false }
ansible_role
jparrill/global-cloud-director
df57520bac1c8768e38c1ab3e7ea988c651b08ee
0
ansible/roles/cluster_formation
8,136
[ "no_license" ]
[ { "path": "ansible/roles/cluster_formation/tasks/main.yml", "content": "---\n- include: 01_cluster-config.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "ansible/roles/cluster_formation/handlers/main.yml", "content": "---\n- name: clean p...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 2762, "all_permissive": false }
ansible_role
jparrill/global-cloud-director
df57520bac1c8768e38c1ab3e7ea988c651b08ee
0
ansible/roles/pacemaker_initiator
8,136
[ "no_license" ]
[ { "path": "ansible/roles/pacemaker_initiator/handlers/main.yml", "content": "---\n- name: clean packages\n shell: /usr/bin/yum clean all\n\n- name: firewall-reload\n shell: firewall-cmd --reload\n\n- name: Change hacluster pass\n shell: passwd\n\n- name: Manage Service pcsd\n service: name=pcsd state=st...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 2096, "all_permissive": false }
ansible_role
agombault/dotrc
86592d9db9a312c7beb13d58698ae87c5800588a
0
roles/common
8,136
[ "no_license" ]
[ { "path": "roles/common/files/erlang-elixir.j2", "content": "# Erlang / Elixir\nsource {{ ansible_env.HOME }}/.kerl/installs/{{ erlang_version }}-wx/activate\nsource {{ ansible_env.HOME }}/.kex/installs/v{{ elixir_version }}/activate\nexport PATH=$PATH:{{ ansible_env.HOME }}/.cache/rebar3/bin\n", "licen...
{ "task_files": 10, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 13, "total_bytes": 8797, "all_permissive": false }
ansible_role
adampielak/security-server
89c8595f1d15f501e198e23a19208a4a941a45cf
0
ansible/roles/xroad-base
8,156
[ "no_license" ]
[ { "path": "ansible/roles/xroad-base/tasks/ubuntu.yml", "content": "---\n- name: Update all packages to the latest version\n apt:\n force: yes\n upgrade: full\n update_cache: yes\n\n- name: install packages\n apt:\n name: \"{{ items }}\"\n state: present\n vars:\n items:\n - acl\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 872, "all_permissive": false }
ansible_role
adampielak/security-server
89c8595f1d15f501e198e23a19208a4a941a45cf
0
ansible/roles/xroad-ss
8,156
[ "no_license" ]
[ { "path": "ansible/roles/xroad-ss/tasks/ubuntu.yml", "content": "---\n- name: install packages\n apt:\n name: \"{{ items }}\"\n state: present\n vars:\n items:\n - postgresql\n - postgresql-contrib\n\n- name: debconf xroad-proxy\n debconf:\n name: xroad-proxy\n question: \"{{ ite...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 4833, "all_permissive": false }
ansible_role
egraff/winconfig
cd981f60a834b90f095ece52959f79fa6c022a67
1
ansible/roles/winconfig
8,156
[ "no_license" ]
[ { "path": "ansible/roles/winconfig/tasks/install_notepadplusplus.yml", "content": "---\n- name: 'Install Notepad++'\n chocolatey.chocolatey.win_chocolatey:\n state: present\n name: notepadplusplus\n\n- name: 'Notepad++ :: default tab settings :: size=4'\n community.windows.win_xml:\n state: prese...
{ "task_files": 11, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 13, "total_bytes": 44339, "all_permissive": false }