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
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/cluster_setup_deployment/roles/setup-db-cluster
7,314
[ "no_license" ]
[ { "path": "deployment/cluster_setup_deployment/roles/setup-db-cluster/tasks/main.yaml", "content": "- name: Enable CouchDB workernode cluster setup\n become: yes\n uri:\n url: http://{{ coordination_node }}:5984/_cluster_setup\n status_code: 200, 201 # in case the cluster is created, it will return ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1808, "all_permissive": false }
ansible_role
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/db_deployment/roles/couchdb
7,314
[ "no_license" ]
[ { "path": "deployment/db_deployment/roles/couchdb/defaults/main.yaml", "content": "---\ncouchdb_dir: /data/couchdb", "license_type": "no_license", "detected_licenses": [], "size_bytes": 30 }, { "path": "deployment/db_deployment/roles/couchdb/tasks/main.yaml", "content": "---\n- name:...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 868, "all_permissive": false }
ansible_role
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/harvester_deployment/roles/crawler
7,314
[ "no_license" ]
[ { "path": "deployment/harvester_deployment/roles/crawler/tasks/main.yml", "content": "---\n- name: Create crawler directory\n become: yes\n ansible.builtin.file:\n path: \"{{ web_app_dir }}\"\n owner: \"{{ ansible_user }}\"\n group: \"{{ ansible_user }}\"\n recurse: yes\n state: directory\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2738, "all_permissive": false }
ansible_role
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/swarm_deployment/roles/add-managers
7,314
[ "no_license" ]
[ { "path": "deployment/swarm_deployment/roles/add-managers/tasks/main.yml", "content": "---\n- name: Check if Swarm is already initialized\n shell: docker node ls\n register: swarm_status\n ignore_errors: true\n tags: swarm\n\n- name: Add Managers to the Swarm\n docker_swarm:\n state: join\n adver...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 516, "all_permissive": false }
ansible_role
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/swarm_deployment/roles/add-workers
7,314
[ "no_license" ]
[ { "path": "deployment/swarm_deployment/roles/add-workers/tasks/main.yml", "content": "---\n- name: Add Workers to the Swarm\n docker_swarm:\n state: join\n advertise_addr: \"{{ hostvars[item]['ansible_default_ipv4']['address'] }}\"\n join_token: \"{{ hostvars[item]['worker_token']['stdout'] }}\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 353, "all_permissive": false }
ansible_role
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/swarm_deployment/roles/common
7,314
[ "no_license" ]
[ { "path": "deployment/swarm_deployment/roles/common/tasks/main.yml", "content": "---\n- name: Install dependencies\n become: yes\n ansible.builtin.apt:\n name: ['apt-transport-https', \n 'build-essential',\n 'ca-certificates',\n 'curl', \n 'git',\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 544, "all_permissive": false }
ansible_role
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/swarm_deployment/roles/copy-configuration
7,314
[ "no_license" ]
[ { "path": "deployment/swarm_deployment/roles/copy-configuration/files/nginx.conf", "content": "worker_processes auto;\npid /run/nginx.pid;\ninclude /etc/nginx/modules-enabled/*.conf;\n\nevents {\n worker_connections 1024;\n}\nhttp {\n\n upstream frontend {\n server frontend:5000;\n }\n server {...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 807, "all_permissive": false }
ansible_role
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/swarm_deployment/roles/docker-swarm-init
7,314
[ "no_license" ]
[ { "path": "deployment/swarm_deployment/roles/docker-swarm-init/tasks/main.yml", "content": "---\n- name: Check if Swarm has already been Initialized\n become: yes\n shell: docker node ls\n register: swarm_status\n ignore_errors: true\n tags: swarm\n\n- name: Initialize Docker Swarm\n become: yes\n do...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 531, "all_permissive": false }
ansible_role
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/swarm_deployment/roles/stack-deploy
7,314
[ "no_license" ]
[ { "path": "deployment/swarm_deployment/roles/stack-deploy/files/docker-compose.yml", "content": "version: '3.8'\n\nservices:\n frontend:\n image: hunghx12/comp90024-frontend\n hostname: frontend\n command: gunicorn --bind 0.0.0.0:5000 wsgi:application\n environment:\n - COUCHDB_DATABASE=ht...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1671, "all_permissive": false }
ansible_role
Kukaheadla/Cluster_and_Cloud_Dashboard
49cad2a32e658de6e28e6959954d91f5005c2dd1
0
deployment/web_app_deployment/roles/frontend
7,314
[ "no_license" ]
[ { "path": "deployment/web_app_deployment/roles/frontend/tasks/main.yaml", "content": "---\n- name: Create web app file directory\n become: yes\n ansible.builtin.file:\n path: \"{{ web_app_dir }}\"\n owner: \"{{ ansible_user }}\"\n group: \"{{ ansible_user }}\"\n recurse: yes\n state: direct...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2287, "all_permissive": false }
ansible_role
adriengentil/cloudkit-aap-global-config
234dff0d1b256657663afe8753b79c260a1eb0ee
0
roles/add_organization
7,314
[ "no_license" ]
[ { "path": "roles/add_organization/tasks/main.yml", "content": "---\n- name: Add organization\n ansible.builtin.include_role:\n name: infra.aap_configuration.dispatch\n\n# Required until https://github.com/redhat-cop/infra.aap_configuration/pull/995 is released\n- name: Call dispatch role\n ansible.buil...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3151, "all_permissive": false }
ansible_role
adriengentil/cloudkit-aap-global-config
234dff0d1b256657663afe8753b79c260a1eb0ee
0
roles/register_aap
7,314
[ "no_license" ]
[ { "path": "roles/register_aap/tasks/main.yml", "content": "- name: Get subscriptions with a filter\n awx.awx.subscriptions:\n username: \"{{ rh_username }}\"\n password: \"{{ <PASSWORD> }}\"\n filters:\n product_name: Red Hat Ansible Automation Platform\n support_level: Self-Support\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 708, "all_permissive": false }
ansible_role
ValeriiVasianovych/terraform-iac
93d9e3389f8b396130372b8da3de2ae455c02c4f
0
providers/aws/projects/tf-ansible-nginx/roles/nginx
7,314
[ "no_license" ]
[ { "path": "providers/aws/projects/tf-ansible-nginx/roles/nginx/tasks/03_copy_indexj2.yml", "content": "---\n# This task copies the template file to the remote host\n\n- name: Deploy index.html\n template:\n src: 'index.html'\n dest: '{{ dest }}/index.html'\n mode: '0555'\n notify:\n - Rest...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 214, "all_permissive": false }
ansible_role
GJBoX/GitDevOps
f6eb5effa10c8fa97aa0fff356ee2235b75a51ad
0
ansible/roles/launch_app
7,314
[ "no_license" ]
[ { "path": "ansible/roles/launch_app/tasks/main.yml", "content": "\n- name: Run App Container\n docker_container:\n name: \"{{ contAPP }}\"\n image: \"theoahga/my-backend:latest\"\n networks:\n - name: \"{{ networkName }}\"\n env:\n DBURL: \"{{ dbURL }}\"\n DBUSER: \"{{ dbUSER }}\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 253, "all_permissive": false }
ansible_role
GJBoX/GitDevOps
f6eb5effa10c8fa97aa0fff356ee2235b75a51ad
0
ansible/roles/launch_database
7,314
[ "no_license" ]
[ { "path": "ansible/roles/launch_database/tasks/main.yml", "content": "\n- name: Run Database Container\n docker_container:\n name: \"{{ contDB }}\"\n image: \"theoahga/my-database:latest\"\n networks:\n - name: \"{{ networkName }}\"\n", "license_type": "no_license", "detected_licenses...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 166, "all_permissive": false }
ansible_role
GJBoX/GitDevOps
f6eb5effa10c8fa97aa0fff356ee2235b75a51ad
0
ansible/roles/launch_front
7,314
[ "no_license" ]
[ { "path": "ansible/roles/launch_front/tasks/main.yml", "content": "\n- name: Run Front\n docker_container:\n name: front\n image: \"theoahga/my-front:latest\"\n networks:\n - name: \"{{ networkName }}\"\n ports: \n - 80:80\n\n", "license_type": "no_license", "detected_licenses"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 167, "all_permissive": false }
ansible_role
GJBoX/GitDevOps
f6eb5effa10c8fa97aa0fff356ee2235b75a51ad
0
ansible/roles/launch_proxy
7,314
[ "no_license" ]
[ { "path": "ansible/roles/launch_proxy/tasks/main.yml", "content": "\n- name: Run Proxy Container\n docker_container:\n name: \"{{ contPROXY }}\"\n image: \"theoahga/my-http:latest\"\n networks:\n - name: \"{{ networkName }}\"\n ports: \n - 8080:80\n", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 189, "all_permissive": false }
ansible_role
NathanCHEVALIER/webserver-playbooks
41cbe2ab8b95ceae4eac7950777e51c885ba059c
0
roles/firewall
7,314
[ "no_license" ]
[ { "path": "roles/firewall/templates/nftables.conf.j2", "content": "#!/usr/sbin/nft -f\n\nflush ruleset\n\ntable inet filter {\n\tchain input {\n\t\ttype filter hook input priority 0;\n\t\tpolicy drop;\n\n\t\tct state established, related accept\n\n\t\tip protocol icmp icmp type echo-request accept\n\t\tip6 ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 738, "all_permissive": false }
ansible_role
NathanCHEVALIER/webserver-playbooks
41cbe2ab8b95ceae4eac7950777e51c885ba059c
0
roles/hardening
7,314
[ "no_license" ]
[ { "path": "roles/hardening/tasks/main.yml", "content": "---\n- name: Harden SSH\n block:\n - name: Make sure group wheel is not in the sudoers configuration\n ansible.builtin.lineinfile:\n path: /etc/sudoers\n state: absent\n regexp: '^%wheel'\n\n - name: Allow only ssh-user...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2649, "all_permissive": false }
ansible_role
NathanCHEVALIER/webserver-playbooks
41cbe2ab8b95ceae4eac7950777e51c885ba059c
0
roles/letsencrypt
7,314
[ "no_license" ]
[ { "path": "roles/letsencrypt/defaults/main.yml", "content": "working_domain: \"example.com\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 29 }, { "path": "roles/letsencrypt/tasks/main.yml", "content": "---\n# tasks file for letsencrypt\n- name: Install Let's...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1248, "all_permissive": false }
ansible_role
NathanCHEVALIER/webserver-playbooks
41cbe2ab8b95ceae4eac7950777e51c885ba059c
0
roles/nginx
7,314
[ "no_license" ]
[ { "path": "roles/nginx/templates/nginx-htpasswd.j2", "content": "# admin:password", "license_type": "no_license", "detected_licenses": [], "size_bytes": 16 }, { "path": "roles/nginx/templates/nginx-http.j2", "content": "## Tun off Nginx version on Requests\nserver_tokens off;\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1437, "all_permissive": false }
ansible_role
NathanCHEVALIER/webserver-playbooks
41cbe2ab8b95ceae4eac7950777e51c885ba059c
0
roles/nginx-add-domain
7,314
[ "no_license" ]
[ { "path": "roles/nginx-add-domain/templates/nginx-http.part.j2", "content": "upstream {{ service_name }} {\n server 127.0.0.1:{{ working_port }};\n}\n\nserver {\n listen 80;\n server_name {{ working_domain }};\n\n access_log /var/log/nginx/{{ working_domain }}.access.log;\n error_log /var/log...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2423, "all_permissive": false }
ansible_role
NathanCHEVALIER/webserver-playbooks
41cbe2ab8b95ceae4eac7950777e51c885ba059c
0
roles/ssh
7,314
[ "no_license" ]
[ { "path": "roles/ssh/tasks/main.yml", "content": "---\n- name: Update and Install packages\n block:\n - name: Upgrade first\n become: true\n apt: \n update_cache: yes \n force_apt_get: yes\n cache_valid_time: 3600\n upgrade: full\n\n - name: Update all packages\n package:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1257, "all_permissive": false }
ansible_role
NathanCHEVALIER/webserver-playbooks
41cbe2ab8b95ceae4eac7950777e51c885ba059c
0
roles/webserver
7,314
[ "no_license" ]
[ { "path": "roles/webserver/handlers/main.yml", "content": "---\n- name: Start Apache\n become: yes\n ansible.builtin.service:\n name: apache2\n state: started\n enabled: yes", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 }, { "path": "roles/webserve...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 275, "all_permissive": false }
ansible_role
Somniac2103/ansible-vps
3605b2dc53988d0dd4522f9afbd2faaedf24deac
0
roles/fullserver
7,314
[ "no_license" ]
[ { "path": "roles/fullserver/tasks/docker_compose_install.yml", "content": "- name: Install Docker Compose binary\n get_url:\n url: https://github.com/docker/compose/releases/download/v2.24.2/docker-compose-linux-x86_64\n dest: /usr/local/bin/docker-compose\n mode: '0755'\n force: yes\n\n- name:...
{ "task_files": 7, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 11, "total_bytes": 4460, "all_permissive": false }
ansible_role
sinamohsenifar/Ansible
aae097d8d38e7f4075ba823b35b08f697b9874c5
0
roles/change-password
7,314
[ "no_license" ]
[ { "path": "roles/change-password/tasks/main.yml", "content": "---\n- name: Generate random password\n set_fact:\n random_password: \"{{ lookup('password', '/dev/null length=24 chars=ascii_letters,digits') }}\"\n\n- name: Set new password for root user\n vars:\n new_pass: \"{{ <PASSWORD>password | pa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1001, "all_permissive": false }
ansible_role
sinamohsenifar/Ansible
aae097d8d38e7f4075ba823b35b08f697b9874c5
0
roles/config-zone-main-dns
7,314
[ "no_license" ]
[ { "path": "roles/config-zone-main-dns/tasks/main.yml", "content": "---\n- name: Install BIND package\n package:\n name:\n - bind\n - bind-utils\n - bind-chroot\n state: present\n\n- name: copy some files to main server\n ansible.builtin.copy:\n src: files/named.conf\n dest: /etc...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1753, "all_permissive": false }
ansible_role
sinamohsenifar/Ansible
aae097d8d38e7f4075ba823b35b08f697b9874c5
0
roles/config-zone-one-dns
7,314
[ "no_license" ]
[ { "path": "roles/config-zone-one-dns/defaults/main.yml", "content": "---\n# defaults file for config-zone-one-dns\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 44 }, { "path": "roles/config-zone-one-dns/handlers/main.yml", "content": "---\n# handlers file f...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1888, "all_permissive": false }
ansible_role
sinamohsenifar/Ansible
aae097d8d38e7f4075ba823b35b08f697b9874c5
0
roles/install-kafka-servers
7,314
[ "no_license" ]
[ { "path": "roles/install-kafka-servers/handlers/main.yml", "content": "---\n# handlers file for install-kafka-servers\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 46 }, { "path": "roles/install-kafka-servers/templates/kafka.service.j2", "content": "[Unit]\...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 2499, "all_permissive": false }
ansible_role
sinamohsenifar/Ansible
aae097d8d38e7f4075ba823b35b08f697b9874c5
0
roles/install-local-repo
7,314
[ "no_license" ]
[ { "path": "roles/install-local-repo/tasks/main.yml", "content": "---\n# tasks file for installing-local-repo\n- name: clean all caches\n ansible.builtin.shell:\n cmd: yum clean all && dnf clean all\n chdir: /opt\n\n- name: remove original repo files\n ansible.builtin.shell:\n cmd: rm -rf *\n c...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 845, "all_permissive": false }
ansible_role
sinamohsenifar/Ansible
aae097d8d38e7f4075ba823b35b08f697b9874c5
0
roles/install-packages
7,314
[ "no_license" ]
[ { "path": "roles/install-packages/tasks/main.yml", "content": "---\n# tasks file for install-packages\n- name: Install packages\n ansible.builtin.package:\n name: \"{{ packages }}\"\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 136 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 136, "all_permissive": false }
ansible_role
sinamohsenifar/Ansible
aae097d8d38e7f4075ba823b35b08f697b9874c5
0
roles/install-passed-packages
7,314
[ "no_license" ]
[ { "path": "roles/install-passed-packages/tasks/main.yml", "content": "---\n# tasks file for install-some-packages\n\n# tasks file for installing-bind\n- name: Install some packages\n ansible.builtin.yum:\n name:\n - chrony\n - vim\n - telnet\n - net-tools\n - bash-completion\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 479, "all_permissive": false }
ansible_role
sinamohsenifar/Ansible
aae097d8d38e7f4075ba823b35b08f697b9874c5
0
roles/set-hostnames
7,314
[ "no_license" ]
[ { "path": "roles/set-hostnames/handlers/main.yml", "content": "---\n# handlers file for set-hostnames\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "roles/set-hostnames/tasks/main.yml", "content": "---\n# tasks file for set-hostnames\n- name...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 795, "all_permissive": false }
ansible_role
sinamohsenifar/Ansible
aae097d8d38e7f4075ba823b35b08f697b9874c5
0
roles/set-ntp
7,314
[ "no_license" ]
[ { "path": "roles/set-ntp/defaults/main.yml", "content": "---\n# defaults file for set-ntp\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 32 }, { "path": "roles/set-ntp/tasks/main.yml", "content": "---\n# tasks file for set-ntp\n- name: Install chrony package...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 782, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/elasticsearch
7,314
[ "no_license" ]
[ { "path": "roles/elasticsearch/tasks/elasticsearch.yml", "content": "---\n- name: install java\n yum: name={{ item }} state=present\n with_items: \n - curl-devel \n - java-{{ java_version }}-openjdk\n\n- name: rpm package install\n yum: name=https://download.elasticsearch.org/elasticsearch/release/or...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 416, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/fluentd
7,314
[ "no_license" ]
[ { "path": "roles/fluentd/tasks/main.yml", "content": "---\n- include: fluentd.yml\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "roles/fluentd/tasks/fluentd.yml", "content": "---\n- name: fluentdをインストール\n command: curl -L http://toolbelt....
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 145, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/gitlab
7,314
[ "no_license" ]
[ { "path": "roles/gitlab/handlers/main.yml", "content": "---\n- include: service.yml\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "roles/gitlab/tasks/gitlab.yml", "content": "---\n- name: git install \n yum: name=git state=latest\n\n- nam...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 763, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/httpd
7,314
[ "no_license" ]
[ { "path": "roles/httpd/handlers/main.yml", "content": "---\n - include: httpd.yml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 26 }, { "path": "roles/httpd/tasks/httpd.yml", "content": "---\n- name: httpd is installed\n yum: name=httpd state=latest\n not...
{ "task_files": 2, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 3, "total_bytes": 229, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/java
7,314
[ "no_license" ]
[ { "path": "roles/java/tasks/java.yml", "content": "---\n- name: java is installed\n yum: name=java-{{version}}-openjdk.x86_64 state=installed\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 90 }, { "path": "roles/java/tasks/main.yml", "content": "---\n- incl...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 115, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/kibana
7,314
[ "no_license" ]
[ { "path": "roles/kibana/tasks/kibana.yml", "content": "---\n- name: download kibana\n get_url: \n url=https://download.elastic.co/kibana/kibana/kibana-{{version}}-linux-x64.tar.gz \n dest={{src_dir}}\n\n- name: decompress kibana\n command: tar xvfz kibana-{{version}}-linux-x64.tar.gz chdir={{src_dir}}...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 389, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/mongodb
7,314
[ "no_license" ]
[ { "path": "roles/mongodb/tasks/mongodb.yml", "content": "---\n- name: copy mongodb.repo\n copy: \n src=mongodb.repo \n dest=/etc/yum.repos.d/mongodb.repo \n owner=root\n group=root\n mode=0644\n\n- name: install mongodb\n yum: name=mongodb pkg=mongodb-org\n notify: start mongodb\n", "licens...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 225, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/mysql
7,314
[ "no_license" ]
[ { "path": "roles/mysql/tasks/configure.yml", "content": "---\n- name: copy iptables file\n copy:\n src=iptables\n dest=/etc/sysconfig\n owner=root\n group=root\n mode=0644\n notify: start iptables\n\n- name: add mysqld moji-code\n template: >\n src=my.cnf.j2\n dest=/etc/my.cnf\n owner=roo...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 639, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/npm
7,314
[ "no_license" ]
[ { "path": "roles/npm/tasks/npm.yml", "content": "---\n\n- name: install the 'Development tools' package group\n yum: name=\"@Development tools\" state=present\n\n- name: install kernel-devel and kernel-headers\n yum: name={{item}} state=present\n with_items:\n - kernel-devel\n - kernel-headers\n\n- n...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 750, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/php
7,314
[ "no_license" ]
[ { "path": "roles/php/tasks/php.yml", "content": "--- \n- name: epel download and install\n yum: name=http://dl.fedoraproject.org/pub/epel/{{centos}}/x86_64/epel-release-{{epel_version}}.noarch.rpm state=present\n\n- name: remi download and install\n yum: name=http://rpms.famillecollet.com/enterprise/remi-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 557, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/python
7,314
[ "no_license" ]
[ { "path": "roles/python/tasks/python.yml", "content": "---\n- name: install Developer Tools\n yum: name=\"@Development tools\" state=present\n\n- name: install necessary python tool\n yum: name={{item}} state=present\n with_items:\n - zlib-devel\n - bzip2-devel\n - openssl-devel\n - ncurses-devel...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1017, "all_permissive": false }
ansible_role
Atsushi-Hasegawa/ansible
76ee1003b1c56b66b973c5c102521a385c7a287e
0
roles/ruby
7,314
[ "no_license" ]
[ { "path": "roles/ruby/tasks/ruby.yml", "content": "---\n- name: yum upgrade\n yum: name=* state=latest\n\n- name: install the 'Development tools' package group\n yum: name=\"@Development tools\" state=present\n\n- name: install zlib,zlib-devel,openssl,openssl-devel\n yum: name={{item}} state=latest\n wi...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 533, "all_permissive": false }
ansible_role
IvanLinEpam/AnsibleSchool
3bc53d7441d4db554803d029d2295b5f21f4af87
0
lesson3/roles/install_httpd
7,314
[ "no_license" ]
[ { "path": "lesson3/roles/install_httpd/defaults/main.yml", "content": "---\n# defaults file for install_httpd\ndest_dir: \"/var/www/html/index.html\"\ngreet: \"Welcome to my web server \\n\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 }, { "path": "lesson...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 851, "all_permissive": false }
ansible_role
IvanLinEpam/AnsibleSchool
3bc53d7441d4db554803d029d2295b5f21f4af87
0
lesson3/roles/install_vsftpd
7,314
[ "no_license" ]
[ { "path": "lesson3/roles/install_vsftpd/defaults/main.yml", "content": "---\n# defaults file for install_vsftpd\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 39 }, { "path": "lesson3/roles/install_vsftpd/vars/main.yml", "content": "---\n# vars file for inst...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1446, "all_permissive": false }
ansible_role
chaospuppy/irsa-demo
a01a982826761f71298b8e13f36a9e62d253d1f6
5
ansible/roles/oidc
7,314
[ "no_license" ]
[ { "path": "ansible/roles/oidc/templates/kube-apiserver.yaml.j2", "content": "kube-apiserver-arg:\n - service-account-issuer=https://s3-us-gov-west-1.amazonaws.com/{{ oidc_bucket_name }}\n - api-audiences=irsa.demo,https://kubernetes.default.svc.cluster.local,rke2\n - service-account-signing-key-file=/var...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1401, "all_permissive": false }
ansible_role
tvsnarayana/ansible-windows
3edc41f7f508b7aab2ef39bc0757e2721a886074
0
vagrant-linux/roles/ansible-setup
7,315
[ "no_license" ]
[ { "path": "vagrant-linux/roles/ansible-setup/tasks/main.yml", "content": "---\n- name: create virtualenv for Ansible\n pip:\n name:\n - ansible\n - pywinrm[kerberos,credssp]\n state: latest\n virtualenv: ~/ansible-py{{item.name}}\n virtualenv_command: /usr/local/bin/virtualenv\n virtua...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 844, "all_permissive": false }
ansible_role
dimaelkhsos/applike-proj
16adba8f23dc9220ce6b57c50d7260b16d4d1aa4
0
ansible-provision-vagrant/ansible/roles/git
7,315
[ "no_license" ]
[ { "path": "ansible-provision-vagrant/ansible/roles/git/tasks/main.yml", "content": "---\n- name: install git\n sudo: yes\n apt: name={{ item }} state=installed\n with_items:\n - git\n - tig\n\n- name: copy .gitconfig\n copy: src=.gitconfig dest=~/.gitconfig mode=664", "license_type": "no_licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 183, "all_permissive": false }
ansible_role
dimaelkhsos/applike-proj
16adba8f23dc9220ce6b57c50d7260b16d4d1aa4
0
ansible-provision-vagrant/ansible/roles/packages
7,315
[ "no_license" ]
[ { "path": "ansible-provision-vagrant/ansible/roles/packages/tasks/main.yml", "content": "---\n- name: install packages\n sudo: yes\n apt: name={{ item }} state=installed\n with_items:\n - build-essential\n - libssl-dev\n - libxslt1-dev\n - libxml2-dev\n - libsqlite3-dev\n - tree\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 285, "all_permissive": false }
ansible_role
dimaelkhsos/applike-proj
16adba8f23dc9220ce6b57c50d7260b16d4d1aa4
0
ansible-provision-vagrant/ansible/roles/proxy
7,315
[ "no_license" ]
[ { "path": "ansible-provision-vagrant/ansible/roles/proxy/tasks/main.yml", "content": "---\n- name: set http_proxy\n sudo: yes\n lineinfile: dest=/etc/environment regexp='^http_proxy' line='http_proxy=\"{{ http_proxy }}\"'\n when: http_proxy is defined\n\n- name: set https_proxy\n sudo: yes\n lineinfile...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 544, "all_permissive": false }
ansible_role
dimaelkhsos/applike-proj
16adba8f23dc9220ce6b57c50d7260b16d4d1aa4
0
ansible-provision-vagrant/ansible/roles/ruby
7,315
[ "no_license" ]
[ { "path": "ansible-provision-vagrant/ansible/roles/ruby/tasks/main.yml", "content": "---\n- name: update rbenv repo\n git: repo=git://github.com/sstephenson/rbenv.git dest={{ rbenv_root }}\n\n- name: set environment variable to .zshrc\n lineinfile: dest=~/.zshrc regexp=\"export RBENV_ROOT\" line='export R...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1386, "all_permissive": false }
ansible_role
dimaelkhsos/applike-proj
16adba8f23dc9220ce6b57c50d7260b16d4d1aa4
0
ansible-provision-vagrant/ansible/roles/timezone
7,315
[ "no_license" ]
[ { "path": "ansible-provision-vagrant/ansible/roles/timezone/tasks/main.yml", "content": "---\n- name: set timezone to Asia/Tokyo\n sudo: yes\n copy: content=\"Asia/Tokyo\" dest=/etc/timezone\n owner=root group=root mode=0644\n notify:\n - update timezone", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 170, "all_permissive": false }
ansible_role
dimaelkhsos/applike-proj
16adba8f23dc9220ce6b57c50d7260b16d4d1aa4
0
ansible-provision-vagrant/ansible/roles/zsh
7,315
[ "no_license" ]
[ { "path": "ansible-provision-vagrant/ansible/roles/zsh/tasks/main.yml", "content": "---\n- name: install zsh\n sudo: yes\n apt: pkg=zsh state=installed\n\n- name: change login shell to zsh\n sudo: yes\n command: usermod -s /usr/bin/zsh vagrant\n\n- name: install oh-my-zsh\n git: repo=git://github.com/r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 445, "all_permissive": false }
ansible_role
decadegraphy/ansible
db3a5ed9b5cb28706121240db76b27747f2bc640
0
roles/common
7,315
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yaml", "content": "- name: Install aptitude\n apt:\n name: aptitude\n\n- name: Ensure the APT cache is up to date\n apt:\n update_cache: yes\n cache_valid_time: 3600\n\n- name: Perform a safe system upgrade\n apt:\n upgrade: safe\n\n- name: Ensure essential ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 843, "all_permissive": false }
ansible_role
decadegraphy/ansible
db3a5ed9b5cb28706121240db76b27747f2bc640
0
roles/deploy
7,315
[ "no_license" ]
[ { "path": "roles/deploy/tasks/main.yaml", "content": "- name: Create a non-privileged user\n user:\n name: \"{{ deploy_user }}\"\n uid: \"{{ deploy_uid }}\"\n shell: /bin/bash\n\n- name: Create systemd user directory strucuture\n file:\n path: \"{{ deploy_home }}/.config/systemd/user\"\n st...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 614, "all_permissive": false }
ansible_role
decadegraphy/ansible
db3a5ed9b5cb28706121240db76b27747f2bc640
0
roles/mysql
7,315
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yaml", "content": "- name: Install MariaDB server\n apt:\n name: mariadb-server\n\n# Note: MariaDB shipped by Debian / Ubuntu has already many sane defaults set,\n# including utf8mb4-related ones. No further configuration is needed for light\n# work load.\n", "licen...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 235, "all_permissive": false }
ansible_role
decadegraphy/ansible
db3a5ed9b5cb28706121240db76b27747f2bc640
0
roles/nginx
7,315
[ "no_license" ]
[ { "path": "roles/nginx/defaults/main.yaml", "content": "---\nnginx_user: www-data\nnginx_conf_dir: /etc/nginx\nnginx_log_dir: /var/log/nginx\n\nnginx_snakeoil_crt: \"{{ nginx_conf_dir }}/certs/snakeoil.crt\"\nnginx_snakeoil_key: \"{{ nginx_conf_dir }}/certs/snakeoil.key\"\n", "license_type": "no_license...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 5145, "all_permissive": false }
ansible_role
decadegraphy/ansible
db3a5ed9b5cb28706121240db76b27747f2bc640
0
roles/ubuntu-compat
7,315
[ "no_license" ]
[ { "path": "roles/ubuntu-compat/tasks/main.yaml", "content": "- name: Sanity check\n fail:\n msg: \"Unsupported distribtuion version\"\n when: ansible_distribution != \"Ubuntu\" or ansible_distribution_version != \"16.04\"\n\n# Ubuntu images from most cloud providers have a default user \"ubuntu\". Here...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 593, "all_permissive": false }
ansible_role
decadegraphy/ansible
db3a5ed9b5cb28706121240db76b27747f2bc640
0
roles/users
7,315
[ "no_license" ]
[ { "path": "roles/users/tasks/main.yaml", "content": "- name: Create users\n user:\n name: \"{{ item.username }}\"\n uid: \"{{ item.uid }}\"\n shell: /bin/bash\n groups: \"{{ item.groups|default('') }}\"\n append: yes\n with_items:\n - \"{{ users }}\"\n\n- name: Add authorized_keys\n aut...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1117, "all_permissive": false }
ansible_role
m3bdlkawy/NFS
f920b34cb6fbdca8779ffb9898c5a749b6f557ea
0
nfs/NFS/roles/nfs_role
7,315
[ "no_license" ]
[ { "path": "nfs/NFS/roles/nfs_role/tasks/install.yml", "content": "- name: Install NFS packages on Debian-based systems\n ansible.builtin.package:\n name: \"{{ item }}\"\n state: present\n loop:\n - nfs-kernel-server\n - nfs-common\n when: nfs_os_family == \"Debian\"\n\n- name: Install NFS pac...
{ "task_files": 6, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 9, "total_bytes": 4380, "all_permissive": false }
ansible_role
richmondcoulibaly225/Project_Ansible_Terraform
b8758592ab85660b22285ac0881096c18f280e96
0
ansible/roles/apache
7,315
[ "no_license" ]
[ { "path": "ansible/roles/apache/templates/index.html.j2", "content": "<html>\n<head><title>Apache Server</title></head>\n<body>\n <h1>{{ message }}</h1>\n</body>\n</html>\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 99 }, { "path": "ansible/roles/apache/tas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 320, "all_permissive": false }
ansible_role
richmondcoulibaly225/Project_Ansible_Terraform
b8758592ab85660b22285ac0881096c18f280e96
0
ansible/roles/jenkins
7,315
[ "no_license" ]
[ { "path": "ansible/roles/jenkins/tasks/main.yml", "content": "---\n- name: Install Java\n ansible.builtin.apt:\n name: default-jdk\n state: present\n update_cache: yes\n\n- name: Add Jenkins repository key\n ansible.builtin.get_url:\n url: https://pkg.jenkins.io/debian/jenkins.io-2023.key\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 820, "all_permissive": false }
ansible_role
mwhahaha/tripleo-operator-ansible
f50e3639ee089dc7b5940d2463084ce65beb1c64
0
tripleo/operator/roles/tripleo-repos
7,315
[ "no_license" ]
[ { "path": "tripleo/operator/roles/tripleo-repos/README.md", "content": "tripleo-repos\n=============\n\nRole to install tripleo-repos and use it to manage tripleo yum repos.\n\nRequirements\n------------\n\nNone\n\nRole Variables\n--------------\n\n* `tripleo_repos_branch`: (String) Repo branch to configure...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 3272, "all_permissive": false }
ansible_role
mwhahaha/tripleo-operator-ansible
f50e3639ee089dc7b5940d2463084ce65beb1c64
0
tripleo/operator/roles/tripleo-undercloud
7,315
[ "no_license" ]
[ { "path": "tripleo/operator/roles/tripleo-undercloud/tasks/config.yml", "content": "---\n- name: Gather environment facts\n setup:\n gather_subset: \"!all,min\"\n\n- name: Setup undercloud install facts\n set_fact:\n _config_location: \"{{ tripleo_undercloud_home_dir }}/undercloud.conf\"\n\n- name: ...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 5402, "all_permissive": false }
ansible_role
mwhahaha/tripleo-operator-ansible
f50e3639ee089dc7b5940d2463084ce65beb1c64
0
tripleo/operator/roles/tripleo-undercloud-minion
7,315
[ "no_license" ]
[ { "path": "tripleo/operator/roles/tripleo-undercloud-minion/tasks/main.yml", "content": "---\n# tasks file for tripleo-undercloud-minion\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 47 }, { "path": "tripleo/operator/roles/tripleo-undercloud-minion/defaults/mai...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 6, "total_bytes": 3488, "all_permissive": false }
ansible_role
RuslanSerdiuk/DevOps_Tasks_and_solutions
2e87c765c21204324e84634e7926291ca4f8d176
1
Ansible/Deploy_MongoDB/ansible/roles/deploy_mongo_primary_node
7,315
[ "no_license" ]
[ { "path": "Ansible/Deploy_MongoDB/ansible/roles/deploy_mongo_primary_node/tasks/main.yml", "content": "\n- name: Import the public key used by the package management system\n ansible.builtin.apt_key:\n url: https://www.mongodb.org/static/pgp/server-5.0.asc\n state: present\n\n- name: Add specified re...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 3355, "all_permissive": false }
ansible_role
RuslanSerdiuk/DevOps_Tasks_and_solutions
2e87c765c21204324e84634e7926291ca4f8d176
1
Ansible/Deploy_MongoDB/ansible/roles/deploy_mongo_secondary_node
7,315
[ "no_license" ]
[ { "path": "Ansible/Deploy_MongoDB/ansible/roles/deploy_mongo_secondary_node/tasks/main.yml", "content": "\n- name: Import the public key used by the package management system\n ansible.builtin.apt_key:\n url: https://www.mongodb.org/static/pgp/server-5.0.asc\n state: present\n\n- name: Add specified ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 1482, "all_permissive": false }
ansible_role
RuslanSerdiuk/DevOps_Tasks_and_solutions
2e87c765c21204324e84634e7926291ca4f8d176
1
Ansible/Simple_Example/ansible/roles/deploy_app
7,315
[ "no_license" ]
[ { "path": "Ansible/Simple_Example/ansible/roles/deploy_app/templates/connect_cnf.j2", "content": "<?php\nsession_start();\n\n\\$conn = mysqli_connect(\n '${ipaddr_private_db}',\n 'Ruslan',\n '<PASSWORD>!',\n 'php_mysql_crud'\n) or die(mysqli_erro(\\$mysqli));\n\n?>", "license_type": "no_license", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1708, "all_permissive": false }
ansible_role
RuslanSerdiuk/DevOps_Tasks_and_solutions
2e87c765c21204324e84634e7926291ca4f8d176
1
Ansible/Simple_Example/ansible/roles/deploy_db
7,315
[ "no_license" ]
[ { "path": "Ansible/Simple_Example/ansible/roles/deploy_db/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - deploy_db", "license_type": "no_license", "detected_licenses": [], "size_bytes": 67 }, { "path": "Ansible/Simple_Example/ansible/roles/depl...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1864, "all_permissive": false }
ansible_role
RuslanSerdiuk/DevOps_Tasks_and_solutions
2e87c765c21204324e84634e7926291ca4f8d176
1
HomeAssignment/Kubernetes/roles/deploy_to_minikube
7,315
[ "no_license" ]
[ { "path": "HomeAssignment/Kubernetes/roles/deploy_to_minikube/vars/main.yml", "content": "---\r\n# vars file for deploy_mongo_primary_node\r\nredis_image: redis:latest\r\nredis_port: 6379", "license_type": "no_license", "detected_licenses": [], "size_bytes": 91 }, { "path": "HomeAssignme...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 8859, "all_permissive": false }
ansible_role
RuslanSerdiuk/DevOps_Tasks_and_solutions
2e87c765c21204324e84634e7926291ca4f8d176
1
HomeAssignment/Kubernetes/roles/monitoring_visualization
7,315
[ "no_license" ]
[ { "path": "HomeAssignment/Kubernetes/roles/monitoring_visualization/templates/value.yaml", "content": "---\n# Permit co-located instances for solitary minikube virtual machines.\nantiAffinity: \"soft\"\n\n# Shrink default JVM heap.\nesJavaOpts: \"-Xmx512m -Xms512m\"\n\n# Allocate smaller chunks of memory pe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 3432, "all_permissive": false }
ansible_role
RuslanSerdiuk/DevOps_Tasks_and_solutions
2e87c765c21204324e84634e7926291ca4f8d176
1
HomeAssignment/WindowsAnsible/roles/windows_servers
7,315
[ "no_license" ]
[ { "path": "HomeAssignment/WindowsAnsible/roles/windows_servers/vars/main.yml", "content": "---\r\n# vars file for deploy_mongo_primary_node\r\nweb_app_name: my-web-app\r\nweb_app_path: C:\\\\inetpub\\\\wwwroot\\\\index.html\r\nweb_app_source: /home/ubuntu/ansible/sample_web_app/index.html", "license_typ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1594, "all_permissive": false }
ansible_role
flopberry/home-server
20c30bd42231b84888065a3d2a7cd5377eef4971
0
roles/proxmox
7,315
[ "no_license" ]
[ { "path": "roles/proxmox/tasks/create_wireguard.yaml", "content": "- name: Generate an OpenSSL private key \n community.crypto.openssl_privatekey:\n path: keys/wireguard\n type: RSA \n size: 4096\n mode: 0600\n register: private_key\n\n- name: Generate an OpenSSL public key \n community.crypt...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1723, "all_permissive": false }
ansible_role
flopberry/home-server
20c30bd42231b84888065a3d2a7cd5377eef4971
0
roles/wireguard
7,315
[ "no_license" ]
[ { "path": "roles/wireguard/tasks/main.yaml", "content": "- name: Install ca-certificates\n apt:\n name: ca-certificates\n state: present\n\n- name: Change folder rights\n file:\n path: /etc/apt/keyrings\n state: directory\n mode: '0755'\n\n- name: Download docker gpg key \n get_url:\n u...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2266, "all_permissive": false }
ansible_role
klbjlabs/learn_ansible
a14f6714bd166ba700e26e19d4249290265598f7
0
roles/docker
7,315
[ "no_license" ]
[ { "path": "roles/docker/handlers/main.yml", "content": "---\n# handlers file for docker\n- name: restart docker\n service: \n name: docker\n state: restarted\n- name: say hello\n debug:\n msg: hello !", "license_type": "no_license", "detected_licenses": [], "size_bytes": 147 }, { ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 560, "all_permissive": false }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/add_livemigration_user
7,315
[ "permissive" ]
[ { "path": "roles/add_livemigration_user/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# Copyright (C) 2024 Savoir-faire Linux, Inc.\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- block:\n - name: Create live migration user\n user:\n name: \"{{ livemigration_user }}\"\n shell: /bin/b...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1786, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/ceph_prepare_installation
7,315
[ "permissive" ]
[ { "path": "roles/ceph_prepare_installation/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- name: Create Ceph log directory\n file:\n path: /var/log/ceph\n owner: ceph\n group: ceph\n mode: \"0770\"\n state: directory\n- name: C...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3284, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/ci_restore_snapshot
7,315
[ "permissive" ]
[ { "path": "roles/ci_restore_snapshot/vars/Debian.yml", "content": "# Copyright (C) 2024, RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\ngrub_update_command: \"update-grub\"\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0", "CC-BY-4.0" ], "size_bytes": 104...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 986, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/configure_admin_user
7,315
[ "permissive" ]
[ { "path": "roles/configure_admin_user/tasks/main.yml", "content": "# Copyright (C) 2024 <NAME>, Inc.\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- block:\n - name: Get root user's home directory\n shell: getent passwd root | cut -d ':' -f6\n register: root_home_dir\n - name: Fetch the roo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 748, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/configure_ha
7,315
[ "permissive" ]
[ { "path": "roles/configure_ha/vars/CentOS.yml", "content": "# Copyright (C) 2024, Red Hat\n# SPDX-License-Identifier: Apache-2.0\n\n---\ncrm_command_path: \"/usr/local/bin/crm\"\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0", "CC-BY-4.0" ], "size_bytes": 11...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 5331, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/configure_libvirt
7,315
[ "permissive" ]
[ { "path": "roles/configure_libvirt/README.md", "content": "# Configure Libvirt Role\n\nThis role create a libvirt storage pool for ceph.\n\n## Requirements\n\nNo requirement.\n\n## Role Variables\n\n| Variable | Required | Type | Default | Comments |\n|...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 4164, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/debian
7,315
[ "permissive" ]
[ { "path": "roles/debian/handlers/main.yml", "content": "- name: daemon-reload\n ansible.builtin.service:\n daemon_reload: yes\n\n- name: restart syslog-ng\n ansible.builtin.systemd:\n name: syslog-ng\n state: restarted", "license_type": "permissive", "detected_licenses": [ "Apache-2...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 6691, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/deploy_python3_setup_ovs
7,315
[ "permissive" ]
[ { "path": "roles/deploy_python3_setup_ovs/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- name: Synchronization of src python3-setup-ovs on the control machine to dest on the remote hosts\n ansible.posix.synchronize:\n src: python3-setup-ovs\n de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 863, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/deploy_vm_manager
7,315
[ "permissive" ]
[ { "path": "roles/deploy_vm_manager/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- name: Synchronization of src vm_manager on the control machine to dest on the remote hosts\n ansible.posix.synchronize:\n src: vm_manager\n dest: /tmp/src\n rsy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 530, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/deploy_vms_cluster
7,315
[ "permissive" ]
[ { "path": "roles/deploy_vms_cluster/tasks/main.yml", "content": "# Copyright (C) 2024, RTE (http://www.rte-france.com)\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- name: \"check presence of vm before copy\"\n cluster_vm:\n command: status\n name: \"{{ item }}\"\n register: presencevm\n- debug:\n...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3123, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/deploy_vms_standalone
7,315
[ "permissive" ]
[ { "path": "roles/deploy_vms_standalone/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- name: List all VMs\n virt:\n command: list_vms\n register: all_vms\n\n- name: Stop VM\n virt:\n state: destroyed\n name: \"{{ item }}\"\n when:\n - it...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3522, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/detect_seapath_distro
7,315
[ "permissive" ]
[ { "path": "roles/detect_seapath_distro/meta/main.yml", "content": "# Copyright (C) 2024 Savoir-faire Linux, Inc.\n# SPDX-License-Identifier: Apache-2.0\n---\ngalaxy_info:\n author: \"Seapath\"\n description: Detect the SEAPATH distribution and set seapath_distro fact.\n license: Apache-2.0\n min_ansible...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1439, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/iptables
7,315
[ "permissive" ]
[ { "path": "roles/iptables/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- name: check presence of iptables_rules_path file\n delegate_to: localhost\n stat:\n path: \"{{ iptables_rules_path }}\"\n when: iptables_rules_path is defined\n register: i...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1562, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/network_buildhosts
7,315
[ "permissive" ]
[ { "path": "roles/network_buildhosts/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- name: Set hostname\n hostname:\n name: \"{{ hostname | default(inventory_hostname) }}\"\n use: systemd\n- name: Build hosts file (Cluster Network)\n lineinfile:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3051, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/network_clusternetwork
7,315
[ "permissive" ]
[ { "path": "roles/network_clusternetwork/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- name: Populate service facts\n service_facts:\n- block:\n - name: stop and disable hsr service if it exists\n service:\n name: \"hsr\"\n state: stoppe...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2474, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/network_configovs
7,315
[ "permissive" ]
[ { "path": "roles/network_configovs/vars/Yocto.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\nsetup_ovs_command_path: \"/usr/bin/setup_ovs.py\"\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0", "CC-BY-4.0" ], "size_by...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1093, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/network_guestsinterfaces
7,315
[ "permissive" ]
[ { "path": "roles/network_guestsinterfaces/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- debug:\n var: item.value\n with_items: \"{{ interfaces_on_br0 | dict2items }}\"\n when: interfaces_on_br0 is defined\n- name: create 00-INTERFACEX.netdev\n t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1033, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/network_resolved
7,315
[ "permissive" ]
[ { "path": "roles/network_resolved/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- block:\n - name: configure LLMNR /etc/systemd/resolved.conf\n lineinfile:\n dest: /etc/systemd/resolved.conf\n regexp: \"^#?LLMNR=\"\n line: \"LLMNR=no\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1374, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/network_sriovpool
7,315
[ "permissive" ]
[ { "path": "roles/network_sriovpool/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- debug:\n msg: \"the network pool name is {{ sriov_network_pool_name }}\"\n- name: Try to get sriov network pool\n shell:\n cmd: virsh -q net-list --all | awk '{ pr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1006, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/timemaster
7,315
[ "permissive" ]
[ { "path": "roles/timemaster/tasks/main.yml", "content": "# Copyright (C) 2024 RTE\n# SPDX-License-Identifier: Apache-2.0\n\n---\n- include_vars: \"{{ seapath_distro }}.yml\"\n\n- name: Populate service facts\n service_facts:\n- name: stop and disable systemd-timesyncd if it exists\n service:\n name: \"...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2460, "all_permissive": true }
ansible_role
Tatiana-Ndoumbeu/Ansible
214acf89f2afd64c8937d066c4e2fe228d870c17
0
roles/update
7,315
[ "permissive" ]
[ { "path": "roles/update/defaults/main.yaml", "content": "# Copyright (C) 2024 <NAME>, Inc.\n# SPDX-License-Identifier: Apache-2.0\n\n---\nswu_image: update.swu\n", "license_type": "permissive", "detected_licenses": [ "Apache-2.0", "CC-BY-4.0" ], "size_bytes": 99 }, { "pat...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1755, "all_permissive": true }
ansible_role
gabrieleteotino/ansible-workstation
37409c5477f7a7850c3bebe741705868674ead32
0
roles/zram-config
7,315
[ "no_license" ]
[ { "path": "roles/zram-config/tasks/main.yml", "content": "---\n- name: install zram-config\n become: yes\n apt:\n name: '{{ item }}'\n state: present\n with_items:\n - zram-config", "license_type": "no_license", "detected_licenses": [], "size_bytes": 126 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 126, "all_permissive": false }