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
is-molly/ansible-springboot
e306ae1cd45f3d77b49b77d12f0046ca8b54a06b
1
roles/start
243
[ "permissive" ]
[ { "path": "roles/start/tasks/main.yml", "content": "---\n- name: 启动服务\n block:\n - name: 执行服务启动\n ansible.builtin.systemd:\n name: \"{{ service.name }}\"\n state: started\n daemon_reload: yes\n enabled: yes\n register: start_result\n failed_when: false\n c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3828, "all_permissive": true }
ansible_role
is-molly/ansible-springboot
e306ae1cd45f3d77b49b77d12f0046ca8b54a06b
1
roles/stop
243
[ "permissive" ]
[ { "path": "roles/stop/tasks/main.yml", "content": "---\n- name: Ensure service is stopped\n ansible.builtin.systemd:\n name: \"{{ service.name }}\"\n state: stopped\n daemon_reload: yes\n register: stop_result\n\n- name: Wait for service to fully stop\n ansible.builtin.wait_for:\n path: \"/ru...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 404, "all_permissive": true }
ansible_role
SukachVitally/deploy_test
6a3deea31877cf8467999523b6f337fa81f5ba50
0
roles/common
243
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Update system\n yum: name=* state=latest\n\n- name: Install epel-release\n yum: name=epel-release state=latest\n\n- name: Install python-setuptools\n yum: name=python-setuptools state=present\n\n- name: Install selinux bindings\n yum: nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 328, "all_permissive": false }
ansible_role
SukachVitally/deploy_test
6a3deea31877cf8467999523b6f337fa81f5ba50
0
roles/composer
243
[ "no_license" ]
[ { "path": "roles/composer/tasks/main.yml", "content": "---\n- name: Check if composer exists.\n stat: path=/usr/local/bin/composer\n register: composer_file\n\n- name: Install Composer\n shell: >\n curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=compo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 549, "all_permissive": false }
ansible_role
SukachVitally/deploy_test
6a3deea31877cf8467999523b6f337fa81f5ba50
0
roles/mongo
243
[ "no_license" ]
[ { "path": "roles/mongo/tasks/main.yml", "content": "---\n- name: Add mogno repo\n copy: src=mongodb-org.repo dest=/etc/yum.repos.d/mongodb-org.repo\n\n- name: Install mongo\n yum: name={{ item }} state=latest\n with_items:\n - mongo-10gen\n - mongo-10gen-server\n\n- name: Ensure mongo running\n se...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 374, "all_permissive": false }
ansible_role
SukachVitally/deploy_test
6a3deea31877cf8467999523b6f337fa81f5ba50
0
roles/nginx
243
[ "no_license" ]
[ { "path": "roles/nginx/templates/nginx.conf.j2", "content": "server {\n listen 80;\n server_name crm.local;\n root /code/app/public;\n error_log /var/log/nginx/error.log info;\n\n ## Default location\n location / {\n index index.php;\n try_files $uri $uri @front_rewrite;\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2985, "all_permissive": false }
ansible_role
SukachVitally/deploy_test
6a3deea31877cf8467999523b6f337fa81f5ba50
0
roles/php-fpm
243
[ "no_license" ]
[ { "path": "roles/php-fpm/handlers/main.yml", "content": "---\n- name: restart php-fpm\n action: service name=php-fpm state=restarted enabled=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 87 }, { "path": "roles/php-fpm/tasks/main.yml", "content": "---\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 949, "all_permissive": false }
ansible_role
SukachVitally/deploy_test
6a3deea31877cf8467999523b6f337fa81f5ba50
0
roles/phpunit
243
[ "no_license" ]
[ { "path": "roles/phpunit/tasks/main.yml", "content": "---\n- name: Check if phpunit exists.\n stat: path=/usr/local/bin/phpunit\n register: phpunit_file\n\n- name: Install Phpunit\n get_url: url=https://phar.phpunit.de/phpunit.phar dest=/usr/local/bin/phpunit mode=555\n", "license_type": "no_license"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 212, "all_permissive": false }
ansible_role
SukachVitally/deploy_test
6a3deea31877cf8467999523b6f337fa81f5ba50
0
roles/postgres
243
[ "no_license" ]
[ { "path": "roles/postgres/tasks/main.yml", "content": "---\n- name: Install postgres libs\n yum: name={{ item }} state=latest\n with_items:\n - postgresql\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
SukachVitally/deploy_test
6a3deea31877cf8467999523b6f337fa81f5ba50
0
roles/rabbitmq
243
[ "no_license" ]
[ { "path": "roles/rabbitmq/handlers/main.yml", "content": "---\n- name: restart rabbitmq\n action: service name=rabbitmq state=restarted enabled=yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "roles/rabbitmq/tasks/main.yml", "content": "-...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 518, "all_permissive": false }
ansible_role
SukachVitally/deploy_test
6a3deea31877cf8467999523b6f337fa81f5ba50
0
roles/utils
243
[ "no_license" ]
[ { "path": "roles/utils/tasks/main.yml", "content": "---\n- name: Install utils\n yum: name={{ item }} state=latest\n with_items:\n - mc\n - htop\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 96 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 96, "all_permissive": false }
ansible_role
cchen666/OpenShift-Labs
844ec09a46fcfdb0f2b270e2e375a71cd0631c34
8
management/ansible/playbooks/roles/ocp4-configure-admin-users
243
[ "no_license" ]
[ { "path": "management/ansible/playbooks/roles/ocp4-configure-admin-users/tasks/htpasswd-create.yaml", "content": "- name: Create htpasswd file with defined users\n command: \"htpasswd -bBc {{ playbook_dir }}/ocp4-htpasswd {{ item.username }} {{ item.password }}\"\n loop: \"{{ users }}\"\n args:\n crea...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2726, "all_permissive": false }
ansible_role
cchen666/OpenShift-Labs
844ec09a46fcfdb0f2b270e2e375a71cd0631c34
8
management/ansible/playbooks/roles/ocp4-tasks
243
[ "no_license" ]
[ { "path": "management/ansible/playbooks/roles/ocp4-tasks/tasks/main.yaml", "content": "- name: Create htpasswd\n include: cmdline.yaml\n tags: htpasswd", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 64, "all_permissive": false }
ansible_role
kaizenlpi/ansible-playbooks
9ba179b1be5ba48d135d4633e32af632abcf6f90
0
roles/decomAvamar
246
[ "no_license" ]
[ { "path": "roles/decomAvamar/files/decomAvamarClient.py", "content": "# The 2nd script that runs in the role to find the VMname server to retire its client on the avamar grid.\n\nfrom http import server\nimport paramiko\nimport xml.etree.ElementTree as ET \nfrom datetime import datetime, timedelta\nimport o...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 17284, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/apply_calico
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/apply_calico/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Apply calico plugin\n block:\n - name: Ensure that /tmp/{{ cluster_name }} exists\n ansible.builtin.file:\n path: /tmp/{{ configurable.k8s.cluster_name }}\n sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1269, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/apply_cni
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/apply_cni/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Apply calico plugin\n when: configurable.k8s.cni_plugin == 'calico'\n block:\n - name: Ensure that /tmp/{{ cluster_name }} exists\n ansible.builtin.file:\n path: /tmp/{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2976, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/check_connections
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/check_connections/templates/vms_inventory.j2", "content": "all:\n children:\n control_planes:\n hosts:\n {{ configurable.k8s.cluster_name }}-cp[1:{{ configurable.k8s.control_plane.vms }}].{{ configurable.libvirt.network.domain }}:\n ansible_user: ubu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1271, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/cluster_destroy
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/cluster_destroy/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Destroy k8s cluster\n ansible.builtin.command: kubeadm reset -f\n changed_when: true\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 132 } ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 132, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/install_containerd
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/install_containerd/tasks/main.yaml", "content": "- name: Install and Configure containerd\n block:\n - name: Install containerd\n ansible.builtin.apt:\n name: containerd\n state: present\n\n - name: Create /etc/containerd\n ansible.builtin.file...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 951, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/install_cri
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/install_cri/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n- name: Prepare prerequisites\n block:\n - name: Add prerequisite modules to autostart\n ansible.builtin.blockinfile:\n path: /etc/modules-load.d/k8s.conf\n block: |\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1168, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/install_crio
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/install_crio/tasks/main.yaml", "content": "- name: Install cri-o\n block:\n - name: Add crio repo key\n ansible.builtin.apt_key:\n url: \"{{ item.key }}\"\n keyring: \"{{ item.keyring }}\"\n state: present\n loop:\n - key: \"{{ libco...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1965, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/install_kube
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/install_kube/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n- name: Install Kube tools\n block:\n # - name: Add google cloud reposiotry key\n # ansible.builtin.apt_key:\n # url: \"{{ k8s.ubuntu.repo_key }}\"\n # state: present\n\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1316, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/join_cp
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/join_cp/templates/kubeadm-join-cp-config.yaml.j2", "content": "apiVersion: kubeadm.k8s.io/v1beta3\nkind: JoinConfiguration\ndiscovery:\n bootstrapToken:\n apiServerEndpoint: \"{{ hostvars[groups['loadbalancer'][0]].host_fqdn if ( configurable.k8s.control_plane.vms > 1 ) ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1033, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/join_node
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/join_node/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Join nodes to cluster\n block:\n - name: Apply join configuration template for nodes\n ansible.builtin.template:\n src: kubeadm-join-config.yaml.j2\n dest: /tmp/ku...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 530, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/kvm_apply
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/kvm_apply/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Ensure that terraform directory for the cluster exists\n ansible.builtin.file:\n path: \"../terraform/kvm-{{ configurable.k8s.cluster_name }}\"\n state: directory\n mode: '1777...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2324, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/kvm_destroy
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/kvm_destroy/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n\n- name: Apply terraform configuration\n community.general.terraform:\n project_path: \"../terraform/kvm-{{ configurable.k8s.cluster_name }}\"\n state: absent\n variables:\n li...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1572, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/set_vm_facts
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/set_vm_facts/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Extract facts from setup\n ansible.builtin.setup:\n register: machine_facts\n\n- name: set facts\n ansible.builtin.set_fact:\n host_ip: \"{{ machine_facts.ansible_facts.ansible_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 501, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/setup_kubectl
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/setup_kubectl/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Connect cluster to kubectl on vm host\n block:\n - name: Ensure that .kube directory exits\n ansible.builtin.file:\n path: \"/home/{{ vm_host.user }}/.kube\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 780, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
cluster/ansible/roles/setup_lb
246
[ "no_license" ]
[ { "path": "cluster/ansible/roles/setup_lb/templates/haproxy.j2", "content": "global\n log 127.0.0.1 local0\n chroot /var/lib/haproxy\n pidfile /var/run/haproxy.pid\n maxconn 4000\n user haproxy\n group haproxy\n daemon\n stats socket /var/lib/haproxy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2864, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
libvirt/ansible/roles/dnsmasq
246
[ "no_license" ]
[ { "path": "libvirt/ansible/roles/dnsmasq/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n- name: Systemd-resolved setup on hosts\n block:\n - name: Ensure systemd-resolved config directory is present\n ansible.builtin.file:\n path: /etc/systemd/resolved.conf.d\n stat...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1949, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
libvirt/ansible/roles/dnsmasq_destroy
246
[ "no_license" ]
[ { "path": "libvirt/ansible/roles/dnsmasq_destroy/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Remove systemd-resolved config directory\n ansible.builtin.file:\n path: /etc/systemd/resolved.conf.d\n state: absent\n\n- name: Remove NetworkManager config directory\n an...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 434, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
libvirt/ansible/roles/libvirt_apply
246
[ "no_license" ]
[ { "path": "libvirt/ansible/roles/libvirt_apply/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Ensure that terraform directory with right version exists\n ansible.builtin.file:\n path: \"../terraform/libvirt-{{ configurable.libvirt.version }}\"\n state: directory\n m...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1096, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
libvirt/ansible/roles/libvirt_destroy
246
[ "no_license" ]
[ { "path": "libvirt/ansible/roles/libvirt_destroy/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Apply terraform configuration\n community.general.terraform:\n project_path: \"../terraform/libvirt-{{ configurable.libvirt.version }}\"\n state: absent\n variables:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 728, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
single-node/ansible/roles/init_cluster
246
[ "no_license" ]
[ { "path": "single-node/ansible/roles/init_cluster/templates/kubectl_conf.j2", "content": "{{ kube_config }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 18 }, { "path": "single-node/ansible/roles/init_cluster/templates/kubeadm-config.yaml.j2", "content": "...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2898, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
single-node/ansible/roles/install_calico
246
[ "no_license" ]
[ { "path": "single-node/ansible/roles/install_calico/vars/main.yaml", "content": "calico:\n repo: https://raw.githubusercontent.com/projectcalico/calico/v3.25.0/manifests/tigera-operator.yaml\n operator: https://raw.githubusercontent.com/projectcalico/calico/v3.25.0/manifests/tigera-operator.yaml\n crd: h...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1409, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
single-node/ansible/roles/install_cni
246
[ "no_license" ]
[ { "path": "single-node/ansible/roles/install_cni/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Install Flannel\n when: cni_plugin == 'flannel'\n ansible.builtin.include_role:\n name: install_flannel\n\n- name: Install Calico\n when: cni_plugin == 'calico'\n ansible.bu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 266, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
single-node/ansible/roles/install_crio
246
[ "no_license" ]
[ { "path": "single-node/ansible/roles/install_crio/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Install cri-o\n block:\n - name: Add crio repo key\n ansible.builtin.apt_key:\n url: \"{{ item.key }}\"\n keyring: \"{{ item.keyring }}\"\n state: pr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2716, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
single-node/ansible/roles/install_crun
246
[ "no_license" ]
[ { "path": "single-node/ansible/roles/install_crun/files/install.sh", "content": "echo -e \"Building and installing crun\"\ncd crun || exit\n./autogen.sh\n./configure --with-wasmedge\nmake\nsudo make install\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 947, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
single-node/ansible/roles/install_flannel
246
[ "no_license" ]
[ { "path": "single-node/ansible/roles/install_flannel/vars/main.yaml", "content": "flannel:\n repo: https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 }, { "path": "single-n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 917, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
single-node/ansible/roles/install_kube
246
[ "no_license" ]
[ { "path": "single-node/ansible/roles/install_kube/handlers/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n- name: reboot\n ansible.builtin.reboot:\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 76 }, { "path": "single-node/ansible/roles/install_kub...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 1580, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
single-node/ansible/roles/install_wasmedge
246
[ "no_license" ]
[ { "path": "single-node/ansible/roles/install_wasmedge/tasks/main.yaml", "content": "# vim: set filetype=yaml.ansible :\n---\n- name: Install wasm edge\n block:\n - name: Run the installation script\n ansible.builtin.shell:\n cmd: curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 394, "all_permissive": false }
ansible_role
hanapedia/k8s_provisioner
3f0efe117b65d9ee3e6e63a814ae6edbf54e113e
0
single-node/ansible/roles/setup
246
[ "no_license" ]
[ { "path": "single-node/ansible/roles/setup/vars/main.yaml", "content": "# vim: set filetype=yaml.ansible :\nos_packages:\n - apt-transport-https\n - ca-certificates\n - curl\n - software-properties-common\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 132 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1122, "all_permissive": false }
ansible_role
farrrr/ansible
7350fb06be2e5f26b2eb0e9f37ec26cb506672ff
2
roles/common
246
[ "no_license" ]
[ { "path": "roles/common/defaults/main.yml", "content": "---\ntimezone: Asia/Taipei\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 26 }, { "path": "roles/common/tasks/software.yml", "content": "---\n\n- name: 'add software repository - {{ item }}'\n apt_repo...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 6065, "all_permissive": false }
ansible_role
farrrr/ansible
7350fb06be2e5f26b2eb0e9f37ec26cb506672ff
2
roles/user
246
[ "no_license" ]
[ { "path": "roles/user/vars/Debian.yml", "content": "---\n\nadmin_users_sudo_group: sudo\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 34 }, { "path": "roles/user/templates/etc/sudoers.d/sudo_nopasswd.j2", "content": "# {{ ansible_managed }}\n# Enable passwo...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1027, "all_permissive": false }
ansible_role
aymn-mbrk/DEMO_ANSIBLE
5d22c5803d6a086ff8893558749ffb312ff2b4f3
0
roles/flask_web
246
[ "no_license" ]
[ { "path": "roles/flask_web/tasks/main.yml", "content": " - name: Install Python Flask dependency\n become: yes\n command:\n cmd: pip install {{ item }} \n loop:\n - flask==2.3.3\n - flask-mysql\n\n - name: Copy source code\n become: yes\n copy: src=app.py ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 376, "all_permissive": false }
ansible_role
aymn-mbrk/DEMO_ANSIBLE
5d22c5803d6a086ff8893558749ffb312ff2b4f3
0
roles/mysql_db
246
[ "no_license" ]
[ { "path": "roles/mysql_db/vars/main.yml", "content": "---\n# vars file for mysql_db\n#\n db_info: \"{{ instance_info }}\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 63 }, { "path": "roles/mysql_db/tasks/main.yml", "content": " - name: Install MySQL Serv...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1222, "all_permissive": false }
ansible_role
aymn-mbrk/DEMO_ANSIBLE
5d22c5803d6a086ff8893558749ffb312ff2b4f3
0
roles/terraform
246
[ "no_license" ]
[ { "path": "roles/terraform/tasks/main.yml", "content": "---\n# tasks file for terraform\n#\n- name: Initialize Terraform\n command: terraform init\n args:\n chdir: /home/aymanmbarki48/DEMO_ANSIBLE/TERRAFORM\n\n- name: Apply Terraform\n command: terraform apply -auto-approve\n args:\n chdir: /home/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 278, "all_permissive": false }
ansible_role
aymn-mbrk/DEMO_ANSIBLE
5d22c5803d6a086ff8893558749ffb312ff2b4f3
0
roles/update_install
246
[ "no_license" ]
[ { "path": "roles/update_install/vars/main.yml", "content": "---\n# vars file for update_install\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 35 }, { "path": "roles/update_install/defaults/main.yml", "content": "---\n# defaults file for update_install\n", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 542, "all_permissive": false }
ansible_role
auntieNeo/nixrc
425c34dc60332945ecbedba832a99a0c8426ad09
38
ansible/roles/nixos_info
246
[ "no_license" ]
[ { "path": "ansible/roles/nixos_info/tasks/main.yml", "content": "---\n\n- name: check the installed nixos version\n command: /run/current-system/sw/bin/nixos-version\n register: nixos_version\n\n- debug: msg=\"{{ nixos_version.stdout }}\"\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
dommgifer/rancher2.0-ha
0bbbe2a46f5e873a04a74daca13ae29878f31852
0
roles/common
246
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: Generate a SSH key\n user:\n name: \"{{ item }}\"\n generate_ssh_key: yes\n with_items:\n - root\n\n- name: Prepare /home/ubuntu/key\n file:\n path: /home/ubuntu/key\n state: directory\n owner: ubuntu\n\n- name: Fetching publi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 850, "all_permissive": false }
ansible_role
dommgifer/rancher2.0-ha
0bbbe2a46f5e873a04a74daca13ae29878f31852
0
roles/docker
246
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "- name: Install docker\n shell: curl https://releases.rancher.com/install-docker/17.03.sh | sh\n\n- name: Add ubuntu user to docker \n shell: usermod -aG docker ubuntu\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 166, "all_permissive": false }
ansible_role
dommgifer/rancher2.0-ha
0bbbe2a46f5e873a04a74daca13ae29878f31852
0
roles/nginx
246
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "- name: Install nginx\n apt:\n name: nginx\n\n- name: Copy nginx.conf\n template:\n src: nginx.conf.j2\n dest: /etc/nginx/nginx.conf\n\n- name: Restart nginx\n shell: nginx -s reload\n", "license_type": "no_license", "detected_licenses"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 755, "all_permissive": false }
ansible_role
dommgifer/rancher2.0-ha
0bbbe2a46f5e873a04a74daca13ae29878f31852
0
roles/openstack
246
[ "no_license" ]
[ { "path": "roles/openstack/tasks/main.yml", "content": "- name: Create /etc/openstack\n include: directory.yml\n run_once: true\n\n- name: Copy clouds.yaml\n include: config.yml\n run_once: true\n\n- name: Create rancher flavor\n include: flavor.yml\n run_once: true\n\n- name: Create rancher keypair\n...
{ "task_files": 9, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 11088, "all_permissive": false }
ansible_role
dommgifer/rancher2.0-ha
0bbbe2a46f5e873a04a74daca13ae29878f31852
0
roles/rancher
246
[ "no_license" ]
[ { "path": "roles/rancher/templates/deployment-patch.yaml.j2", "content": "spec:\n template:\n spec:\n hostAliases:\n - hostnames:\n - \"{{ dns_hostname }}\"\n ip: 192.168.0.4\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 121 }, { "pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2239, "all_permissive": false }
ansible_role
dommgifer/rancher2.0-ha
0bbbe2a46f5e873a04a74daca13ae29878f31852
0
roles/rke
246
[ "no_license" ]
[ { "path": "roles/rke/defaults/main.yml", "content": "rke_version: \"v0.1.15\"\nrke_url: \"https://github.com/rancher/rke/releases/download/{{ rke_version }}/rke_linux-amd64\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 117 }, { "path": "roles/rke/tasks/main.y...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1818, "all_permissive": false }
ansible_role
zufardhiyaulhaq/openstack-ovs-ansible
03552e7ed9cb6f76cd1daafe4267ea9c5af25348
0
ansible/openstack-install/roles/after_openstack
246
[ "no_license" ]
[ { "path": "ansible/openstack-install/roles/after_openstack/tasks/main.yml", "content": "---\n- name: Discover Host nova\n shell: nova-manage cell_v2 discover_hosts --verbose\n become: yes\n become_user: nova", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 118, "all_permissive": false }
ansible_role
zufardhiyaulhaq/openstack-ovs-ansible
03552e7ed9cb6f76cd1daafe4267ea9c5af25348
0
ansible/openstack-install/roles/neutron_compute
246
[ "no_license" ]
[ { "path": "ansible/openstack-install/roles/neutron_compute/tasks/neutron.yml", "content": "--- \n- name: install neutron packages\n yum: name=\"{{ packages }}\" state=latest\n vars:\n packages:\n - openstack-neutron-openvswitch\n - ebtables\n - ipset\n\n- name: create neutron server configurat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1560, "all_permissive": false }
ansible_role
zufardhiyaulhaq/openstack-ovs-ansible
03552e7ed9cb6f76cd1daafe4267ea9c5af25348
0
ansible/openstack-install/roles/neutron_controller
246
[ "no_license" ]
[ { "path": "ansible/openstack-install/roles/neutron_controller/tasks/neutron.yml", "content": "---\n###################################\n##### Neutron Database & User #####\n###################################\n\n- name: create neutron database\n mysql_db: login_user=root login_password={{ <PASSWORD> }} nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 5729, "all_permissive": false }
ansible_role
codersparks-home-assistant/ansible_homelab_collection
5335e1b206c5aa648c8fa0cafb1612eadbf3205c
0
roles/hostname
246
[ "no_license" ]
[ { "path": "roles/hostname/README.md", "content": "Role Name\n=========\n\nUpdates the homelab server hostname\n\nRequirements\n------------\n\nNone\n\nRole Variables\n--------------\n\ncodersparks.homelab.hostname: Required - The hostname to set\n\nDependencies\n------------\n\nNone\n\nExample Playbook\n---...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 716, "all_permissive": false }
ansible_role
codersparks-home-assistant/ansible_homelab_collection
5335e1b206c5aa648c8fa0cafb1612eadbf3205c
0
roles/hostsfile
246
[ "no_license" ]
[ { "path": "roles/hostsfile/meta/main.yml", "content": "galaxy_info:\n author: codersparks\n description: Coder Sparks\n license: MIT\n min_ansible_version: 2.9\n galaxy_tags: []\ndependencies: []\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 140 }, { "path...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1226, "all_permissive": false }
ansible_role
codersparks-home-assistant/ansible_homelab_collection
5335e1b206c5aa648c8fa0cafb1612eadbf3205c
0
roles/mdns
246
[ "no_license" ]
[ { "path": "roles/mdns/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - mdns", "license_type": "no_license", "detected_licenses": [], "size_bytes": 62 }, { "path": "roles/mdns/tasks/main.yml", "content": "---\n- name: \"Configure firewall for ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 569, "all_permissive": false }
ansible_role
andrelohmann/ansible-role-gitlab_docker_runner
74ab22395bdf6ceaca66218ca8e9675e12ff3995
0
vagrant/roles/docker_compose_dependencies
246
[ "no_license" ]
[ { "path": "vagrant/roles/docker_compose_dependencies/templates/docker-compose.yml", "content": "---\nversion: '3.9'\n\nservices:\n\n gitlab:\n image: gitlab/gitlab-ee\n restart: always\n environment:\n GITLAB_OMNIBUS_CONFIG: |\n external_url 'http://gitlab.runner.lokal'\n ports:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2019, "all_permissive": false }
ansible_role
andrelohmann/ansible-role-gitlab_docker_runner
74ab22395bdf6ceaca66218ca8e9675e12ff3995
0
vagrant/roles/runner_tokens
246
[ "no_license" ]
[ { "path": "vagrant/roles/runner_tokens/tasks/main.yml", "content": "---\n\n# Pause for 60 seconds to let unicorn restart\n- name: Pause | Wait for 60 seconds\n ansible.builtin.pause:\n seconds: 60\n\n- name: Runner | Create docker runner registration token\n ansible.builtin.uri:\n url: http://gitlab...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1688, "all_permissive": false }
ansible_role
gitxiam/ansible_install_wordpress
e1bbaeaf631474fdd74dcc15eb4a68d8fe9424bf
0
roles/php_depend
246
[ "no_license" ]
[ { "path": "roles/php_depend/tasks/main.yml", "content": "---\n- name: Add elrepo repository\n yum:\n name: \"epel-release\"\n state: present\n\n- name: Add remi-php\n yum_repository:\n name: remi-php\n description: Remi's PHP RPM repository for Enterprise Linux $releasever\n mirrorlist: \"h...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 911, "all_permissive": false }
ansible_role
gitxiam/ansible_install_wordpress
e1bbaeaf631474fdd74dcc15eb4a68d8fe9424bf
0
roles/wp-install-config
246
[ "no_license" ]
[ { "path": "roles/wp-install-config/defaults/main.yml", "content": "---\nwp_config_db_name: \"\"\nwp_config_db_user: \"\"\nwp_config_db_password: \"\"\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 75 }, { "path": "roles/wp-install-config/tasks/main.yml", "...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 552, "all_permissive": false }
ansible_role
aneeshkp/weather-report-operator-
c42db9336e3362ce38383b062ad332775092ab9b
1
roles/cityweather
246
[ "no_license" ]
[ { "path": "roles/cityweather/tasks/main.yml", "content": "- name: Search for all Pods labelled app=weather-report\n community.kubernetes.k8s_info:\n api_version: v1\n kind: Pod\n namespace: '{{ ansible_operator_meta.namespace }}'\n label_selectors:\n - app = weather-report\n register: pod...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1576, "all_permissive": false }
ansible_role
ycy1766/openstack-deploy-queens
dcd040c5823fdaa377e05d26b572bd15cdf0051d
0
roles/cobbler_install
246
[ "no_license" ]
[ { "path": "roles/cobbler_install/tasks/cobbler_cleanup.yml", "content": "- name: umount centos ISO\n mount:\n path: /mnt/iso\n src: \"{{ image_download_path }}/{{ centos_image_name }}\"\n fstype: iso9660\n state: absent\n\n- name: delete centos ISO file\n file:\n path: \"{{ image_download_p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 273, "all_permissive": false }
ansible_role
ycy1766/openstack-deploy-queens
dcd040c5823fdaa377e05d26b572bd15cdf0051d
0
roles/create_rpm_local_repo
246
[ "no_license" ]
[ { "path": "roles/create_rpm_local_repo/tasks/main.yml", "content": "---\n# tasks file for local_repo_settings\n- name: create root path of repo\n file:\n path: \"{{ local_rpm_repository_path }}\"\n state: directory\n\n# create repogitory files\n- name: create repo file path\n file: \n path: \"{{ ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 1514, "all_permissive": false }
ansible_role
ycy1766/openstack-deploy-queens
dcd040c5823fdaa377e05d26b572bd15cdf0051d
0
roles/default_settings
246
[ "no_license" ]
[ { "path": "roles/default_settings/templates/pip.conf.j2", "content": "[global]\ntrusted-host = {{ osc_py_repository_server }}\nindex-url = {{ osc_py_repository_url }}/simple\n\n[distutils]\nindex-servers = nexus\n\n[nexus]\nrepository = {{ osc_py_repository_url }}\n", "license_type": "no_license", "...
{ "task_files": 5, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 1019, "all_permissive": false }
ansible_role
ycy1766/openstack-deploy-queens
dcd040c5823fdaa377e05d26b572bd15cdf0051d
0
roles/docker_install
246
[ "no_license" ]
[ { "path": "roles/docker_install/tasks/main.yml", "content": "---\n# tasks file for docker\n- include: yum_clean_all.yml\n- include: pre_required_packages.yml\n- include: docker_install.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "path": "roles/do...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 689, "all_permissive": false }
ansible_role
ycy1766/openstack-deploy-queens
dcd040c5823fdaa377e05d26b572bd15cdf0051d
0
roles/install_kolla_ansible
246
[ "no_license" ]
[ { "path": "roles/install_kolla_ansible/files/named.conf.j2", "content": "include \"/etc/rndc.key\";\noptions {\n\t{%if kolla_external_vip_address %}\n listen-on port {{ designate_bind_port }} { {{ hostvars[inventory_hostname]['ansible_' + hostvars[inventory_hostname]['api_interface']]['ipv4']['addres...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 23261, "all_permissive": false }
ansible_role
ycy1766/openstack-deploy-queens
dcd040c5823fdaa377e05d26b572bd15cdf0051d
0
roles/openstack_db_backup
246
[ "no_license" ]
[ { "path": "roles/openstack_db_backup/tasks/main.yml", "content": "---\n# tasks file for openstack_db_backup\n- name: create backup script\n template:\n src: openstack_db_backup.sh.j2\n dest: /etc/kolla/openstack_db_backup.sh\n\n- name: create restore script\n template:\n src: openstack_db_store.s...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 283, "all_permissive": false }
ansible_role
yingfire/live
547c0a78da71b94fa3db577f942470d3bef14538
0
常用脚本/roles/db_master
246
[ "no_license" ]
[ { "path": "常用脚本/roles/db_master/vars/main.yml", "content": "#推送文件存放路径(file模块会自动寻找roles当中的file文件夹)\nfilessrc: \"/etc/ansible/roles/db_master/files/\"\n#推送安装文件目的地\nfilesdest: \"/usr/local/src/\"\n#j2模板存放路径(template模块会自动寻找roles当中的templates文件夹)\n#j2file_dest: \"/etc/ansible/roles/testsql/templates/\"\n#--------...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 9555, "all_permissive": false }
ansible_role
yingfire/live
547c0a78da71b94fa3db577f942470d3bef14538
0
常用脚本/roles/db_slave
246
[ "no_license" ]
[ { "path": "常用脚本/roles/db_slave/templates/mysql_filebak.sh.j2", "content": "#!/bin/bash\n#-----------------------------------------------------------------------\n# Copyright (C), 2016 PAIDUI.COM\n# 脚本名: filebak.sh\n# 脚本用途: 备份rom数据库.\n# 其它功能: cp数据备份,备份数据库的数据目录文件\n# 脚本位置: /u1/scripts/dbbak/\n# 脚本...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 8240, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
hadoop/roles/common
246
[ "no_license" ]
[ { "path": "hadoop/roles/common/tasks/main.yml", "content": "---\n- import_tasks: hosts.yml\n- import_tasks: limits.yml\n- import_tasks: add_user.yml\n- import_tasks: sysctl.yml\n- import_tasks: yum.yml\n- import_tasks: ntp.yml\n- import_tasks: hadoop_env.yml\n- import_tasks: mkfs_xfs.yml\n- import_tasks: mo...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 12, "total_bytes": 4710, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
hadoop/roles/hadoop
246
[ "no_license" ]
[ { "path": "hadoop/roles/hadoop/tasks/stop_kafka.yml", "content": "---\n\n- name: stop kafka1\n become: true\n become_method: su\n shell: /export/App/kafka_2.11-0.10.1.1/bin/kafka-server-stop.sh \n become_user: hadoop\n tags: stop_kafka1\n\n- name: stop kafka2\n become: true\n become_method: su\n she...
{ "task_files": 10, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 5513, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
init_disk/roles/init_disk_nvme
246
[ "no_license" ]
[ { "path": "init_disk/roles/init_disk_nvme/tasks/main.yml", "content": "---\n- import_tasks: parted.yml\n- import_tasks: mkfs.yml\n- import_tasks: mount.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 82 }, { "path": "init_disk/roles/init_disk_nvme/tasks/parte...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2726, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
k8s/roles/cni
246
[ "no_license" ]
[ { "path": "k8s/roles/cni/tasks/cni.yml", "content": "---\n\n- name: mkdir /etc/kubernetes/cni/net.d\n file:\n path: /etc/kubernetes/cni/net.d\n state: directory\n tags: \n - cni\n\n- name: copy 10-mynet.conf\n copy:\n src: 10-mynet.conf\n dest: /etc/kubernetes/cni/net.d/10-mynet.conf\n ta...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 743, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
k8s/roles/common
246
[ "no_license" ]
[ { "path": "k8s/roles/common/tasks/hadoop_env.yml", "content": "---\n\n- name: /etc/profile.d/hadoop-env.sh\n copy: src=hadoop-env.sh dest=/etc/profile.d/hadoop-env.sh\n- name: source hadoop-env.sh\n shell: source /etc/profile.d/hadoop-env.sh\n", "license_type": "no_license", "detected_licenses": [...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 1352, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
k8s/roles/docker
246
[ "no_license" ]
[ { "path": "k8s/roles/docker/tasks/docker.yml", "content": "---\n- name: remove docker \n yum:\n name: docker\n state: absent\n tags: docker\n\n- name: remove docker-common\n yum:\n name: docker-common\n state: absent\n tags: docker\n\n- name: remove docker-selinux \n yum:\n name: dock...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1312, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
k8s/roles/etcd
246
[ "no_license" ]
[ { "path": "k8s/roles/etcd/templates/etcd.service.j2", "content": "[Unit]\nDescription=etcd\nDocumentation=https://github.com/coreos/etcd\nConflicts=etcd.service\nConflicts=etcd2.service\n\n[Service]\nType=notify\nRestart=always\nRestartSec=5s\nLimitNOFILE=40000\nTimeoutStartSec=0\n\nExecStart=/export/server...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1467, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
k8s/roles/flanneld
246
[ "no_license" ]
[ { "path": "k8s/roles/flanneld/tasks/main.yml", "content": "---\n- import_tasks: flanneld.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 33 }, { "path": "k8s/roles/flanneld/templates/flanneld.service.j2", "content": "[Unit]\nDescription=Kubernetes API Ser...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 925, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
k8s/roles/k8s
246
[ "no_license" ]
[ { "path": "k8s/roles/k8s/templates/kubelet.service.j2", "content": "[Unit]\nDescription=Kubernetes Scheduler Plugin\nDocumentation=https://github.com/GoogleCloudPlatform/kubernetes\n\n[Service]\nExecStart=/export/servers/kubernetes/server/bin/kubelet \\\n --kubeconfig=/etc/kubernetes/kubelet-kubeconfig \\\...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 13, "total_bytes": 8951, "all_permissive": false }
ansible_role
jiam/ansible
f51aff4606f62eec8eff9ce053fde13aa3d89348
0
ksc/roles/monitor
246
[ "no_license" ]
[ { "path": "ksc/roles/monitor/KSC/drac.sh", "content": "/usr/bin/ipmitool lan print | grep \"IP Address\" | grep -v Source | awk -F: '{print $2}'\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 89 }, { "path": "ksc/roles/monitor/tasks/main.yml", "content": "-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 14, "total_bytes": 6008, "all_permissive": false }
ansible_role
Tssukkii/Act8
667df94c0fa6be9f898a51e81b357bd24288ea38
0
roles/common
244
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Update apt cache and install dependencies on Ubuntu\n apt:\n update_cache: yes\n name: build-essential\n state: present\n when: ansible_facts['os_family'] == \"Debian\"\n\n\n- name: Update apt cache and install dependencies on Ce...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 357, "all_permissive": false }
ansible_role
Tssukkii/Act8
667df94c0fa6be9f898a51e81b357bd24288ea38
0
roles/nagios
244
[ "no_license" ]
[ { "path": "roles/nagios/tasks/main.yml", "content": "---\n\n- name: Update package cache for Ubuntu\n apt:\n update_cache: yes\n when: ansible_os_family == \"Debian\"\n\n- name: Update package cache for CentOS\n yum:\n name: '*'\n state: latest\n when: ansible_os_family == \"RedHat\"\n\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 912, "all_permissive": false }
ansible_role
tallbrat/Ansible_training
8fc98458965d61d4f6cf806d3eeb4800df9496da
0
roles/ansible
244
[ "no_license" ]
[ { "path": "roles/ansible/tasks/main.yml", "content": "---\n#REF link: from a blog\n- name: Install required packages\n apt:\n name: \"{{ item }}\"\n state: present\n loop:\n - software-properties-common\n - python3-pip\n\n- name: Add Ansible repository\n apt_repository:\n repo: \"ppa:ansib...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 479, "all_permissive": false }
ansible_role
tallbrat/Ansible_training
8fc98458965d61d4f6cf806d3eeb4800df9496da
0
roles/docker
244
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n# Ubuntu\n#REF link: \n# https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-20-04\n- name: Install required packages\n apt:\n name: \"{{ item }}\"\n state: present\n loop:\n - apt-transport-https\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 945, "all_permissive": false }
ansible_role
tallbrat/Ansible_training
8fc98458965d61d4f6cf806d3eeb4800df9496da
0
roles/git
244
[ "no_license" ]
[ { "path": "roles/git/tasks/main.yml", "content": "---\n#Debian/Ubuntu\n- name: Install git\n apt:\n name: git\n state: present", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 78, "all_permissive": false }
ansible_role
tallbrat/Ansible_training
8fc98458965d61d4f6cf806d3eeb4800df9496da
0
roles/jenkins
244
[ "no_license" ]
[ { "path": "roles/jenkins/tasks/main.yml", "content": "---\n#Debian/Ubuntu\n#REF link: https://www.jenkins.io/doc/book/installing/linux/\n- name: Install Java, Jenkins dependency\n apt:\n name: fontconfig openjdk-17-jre\n state: present\n- name: Add an Apt signing key to a specific keyring file\n apt...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 785, "all_permissive": false }
ansible_role
tallbrat/Ansible_training
8fc98458965d61d4f6cf806d3eeb4800df9496da
0
roles/mysql
244
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "---\n- name: apt update_cache\n apt:\n update_cache: yes\n\n- name: Install mySQL\n apt:\n name: '{{ item }}'\n state: present\n loop:\n - mysql-server\n - mysql-client\n\n- name: Start the service\n service:\n name: mysql-server\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1906, "all_permissive": false }
ansible_role
tallbrat/Ansible_training
8fc98458965d61d4f6cf806d3eeb4800df9496da
0
roles/solr
244
[ "no_license" ]
[ { "path": "roles/solr/tasks/main.yml", "content": "---\n- name: Update apt cache if needed.\n apt: update_cache=true cache_valid_time=3600\n\n- name: Install Java.\n apt: name=openjdk-11-jdk state=present\n\n- name: Download solr\n ansible.builtin.get_url: \n url: \"https://www.apache.org/dyn/closer.l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1020, "all_permissive": false }
ansible_role
tallbrat/Ansible_training
8fc98458965d61d4f6cf806d3eeb4800df9496da
0
roles/trivy
244
[ "no_license" ]
[ { "path": "roles/trivy/tasks/main.yml", "content": "---\n#REF link: https://aquasecurity.github.io/trivy/v0.18.3/installation/\n- name: Install required packages\n apt:\n name: \"{{ item }}\"\n state: present\n loop:\n - wget\n - apt-transport-https\n - gnupg\n - lsb-release\n\n- name: A...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 740, "all_permissive": false }
ansible_role
magicmark/cistern
18859e3e593e6df66750275009233fafa3bfa014
7
ansible/roles/bootstrap
244
[ "no_license" ]
[ { "path": "ansible/roles/bootstrap/tasks/main.yml", "content": "- name: Determine if work machine\n stat:\n path: \"~/.work\"\n register: workfile\n\n- name: Set facts\n set_fact:\n is_home: \"{{ not workfile.stat.exists }}\"\n is_work: \"{{ workfile.stat.exists }}\"\n is_arch: \"{{ ansible_d...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 535, "all_permissive": false }
ansible_role
magicmark/cistern
18859e3e593e6df66750275009233fafa3bfa014
7
ansible/roles/homebrew
244
[ "no_license" ]
[ { "path": "ansible/roles/homebrew/meta/main.yml", "content": "---\ndependencies:\n - geerlingguy.homebrew\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 43 }, { "path": "ansible/roles/homebrew/tasks/main.yml", "content": "- block:\n - name: Run role\n i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 648, "all_permissive": false }
ansible_role
magicmark/cistern
18859e3e593e6df66750275009233fafa3bfa014
7
ansible/roles/macos
244
[ "no_license" ]
[ { "path": "ansible/roles/macos/yabai/files/.yabairc", "content": "#!/usr/bin/env sh\n\n## ==============================================================================\n## !! This file is managed by ansible !!\n## https://github.com/magicmark/cistern\n##\n## Local changes will be overwritten!\n## =========...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 8, "total_bytes": 6268, "all_permissive": false }
ansible_role
magicmark/cistern
18859e3e593e6df66750275009233fafa3bfa014
7
ansible/roles/personal_server
244
[ "no_license" ]
[ { "path": "ansible/roles/personal_server/tasks/main.yml", "content": "- name: python\n become: yes\n become_user: root\n apt_repository:\n repo: ppa:deadsnakes/ppa\n state: present\n\n- name: mosh\n become: yes\n become_user: root\n apt_repository:\n repo: ppa:keithw/mosh\n state: present\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2137, "all_permissive": false }
ansible_role
pmysore1/ansible-terraform
fb9538e05346b8445f09d5f0647b6a4937fe32cd
0
roles/create-infra
244
[ "no_license" ]
[ { "path": "roles/create-infra/templates/input.tfvars.j2", "content": "remote-state-bucket-name = \"{{ remote_state_bucket_name }}\"\nterraform-remote-state-vpc-key = \"{{ terraform_remote_state_vpc_key }}\"\naws_region = \"{{aws_region }}\"\naws_profile = \"{{ aws_profile }}\"\n\n# Following values are used...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 2347, "all_permissive": false }
ansible_role
jameskerr/hacker_mail
ce15acb62752ad7d6b20e0b1d34104837ce4c19c
3
ops/roles/database
244
[ "no_license" ]
[ { "path": "ops/roles/database/tasks/main.yml", "content": "- name: create the database\n become_user: deploy\n command: /bin/bash -lc bin/rails db:create RAILS_ENV=production\n args:\n chdir: /app\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 140 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 140, "all_permissive": false }
ansible_role
jameskerr/hacker_mail
ce15acb62752ad7d6b20e0b1d34104837ce4c19c
3
ops/roles/deploy
244
[ "no_license" ]
[ { "path": "ops/roles/deploy/tasks/main.yml", "content": "- name: checkout\n git:\n repo: \"https://github.com/jameskerr/hacker_mail\"\n dest: /app\n force: yes\n\n- name: copy master key\n copy:\n src: ../../../../config/master.key\n dest: /app/config/master.key\n\n- name: bundle install\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 782, "all_permissive": false }