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
shapeblue/Trillian
b9ed178d809dd27b1f73b1931848a85891e4c028
14
Ansible/roles/marvin
7,625
[ "permissive" ]
[ { "path": "Ansible/roles/marvin/files/upload_to_es.sh", "content": "#!/bin/bash\n\n\nES_IP=\"elk.lab.lon\"\nRESULTS_INDEX=\"test_results\"\nENV_TEST_DATA=\"./test_run.json\"\nJSON_OUTPUT_DIR=\"/marvin/json_results\"\nTESTRUN_INDEX=\"test_runs\"\nmetafile=\"$JSON_OUTPUT_DIR/additional_test_data.json\"\n\ncd ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 14, "total_bytes": 65244, "all_permissive": true }
ansible_role
shapeblue/Trillian
b9ed178d809dd27b1f73b1931848a85891e4c028
14
Ansible/roles/mysql
7,625
[ "permissive" ]
[ { "path": "Ansible/roles/mysql/tasks/main.yml", "content": "---\n\n#Copyright 2016 ShapeBlue\n#\n#Licensed under the Apache License, Version 2.0 (the \"License\");\n#you may not use this file except in compliance with the License.\n#You may obtain a copy of the License at\n#\n# http://www.apache.org/lic...
{ "task_files": 8, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 29972, "all_permissive": true }
ansible_role
shapeblue/Trillian
b9ed178d809dd27b1f73b1931848a85891e4c028
14
Ansible/roles/slack_client
7,625
[ "permissive" ]
[ { "path": "Ansible/roles/slack_client/tasks/main.yml", "content": "---\n\n- name: wait for VM to be alive\n shell: \"ping {{ ansible_ssh_host }} -c 1\"\n register: pong\n until: pong.rc == 0\n retries: \"{{ ssh_retries }}\"\n \n- name: Wait for SSH\n local_action: wait_for port=22 host=\"{{ ansible_ss...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 565, "all_permissive": true }
ansible_role
shapeblue/Trillian
b9ed178d809dd27b1f73b1931848a85891e4c028
14
Ansible/roles/timezone
7,625
[ "permissive" ]
[ { "path": "Ansible/roles/timezone/tasks/centos8.yml", "content": "---\n\n- name: \"set Timezone to {{ env_timezone }}\"\n command: \"timedatectl set-timezone {{ env_timezone }}\"\n\n- name: Install chrony\n dnf:\n name: chrony\n state: present\n\n- name: Start chrony CentOS\n service:\n name: ch...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 4084, "all_permissive": true }
ansible_role
shapeblue/Trillian
b9ed178d809dd27b1f73b1931848a85891e4c028
14
Ansible/roles/vsphere
7,625
[ "permissive" ]
[ { "path": "Ansible/roles/vsphere/files/vmware-v2.1.py", "content": "# -*- coding: utf-8 -*-\n\n# (c) 2015, <NAME> <jcallen () csc.com>\n#\n# This file is part of Ansible\n#\n# Ansible is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 21053, "all_permissive": true }
ansible_role
shapeblue/Trillian
b9ed178d809dd27b1f73b1931848a85891e4c028
14
Ansible/roles/xenserver
7,625
[ "permissive" ]
[ { "path": "Ansible/roles/xenserver/tasks/add_local_storage.yml", "content": "---\n- name: Check for existing local storage\n shell: 'xe sr-list name-label=\\\"Local Storage\\\" params=PBDs --minimal'\n register: localstoragepbd\n\n- name: Confirm local storage PBD found\n debug: msg=\"Local storage PBD f...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 7313, "all_permissive": true }
ansible_role
ekohalsti/laenorweb2
35ee92adcc1823169daa371870a1b97a5244f3d6
1
deploy/roles/application
7,625
[ "no_license" ]
[ { "path": "deploy/roles/application/templates/laenorweb2.dy.fi.conf.j2", "content": "upstream django {\n server unix://{{ uwsgi_socket }};\n}\n\nserver {\n listen 80;\n server_name {{ server_name }}\n charset utf-8;\n\n location /media {\n alias {{ app_path }}/media;\n }\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 2942, "all_permissive": false }
ansible_role
ekohalsti/laenorweb2
35ee92adcc1823169daa371870a1b97a5244f3d6
1
deploy/roles/common
7,625
[ "no_license" ]
[ { "path": "deploy/roles/common/tasks/main.yml", "content": "---\n- name: Set hostname\n hostname:\n name: \"{{ inventory_hostname }}\"\n\n- name: Add hostname to /etc/hosts\n lineinfile:\n dest: \"/etc/hosts\"\n regexp: '^127\\.0\\.0\\.1'\n line: \"127.0.0.1 {{ inventory_hostname }} localhost\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1458, "all_permissive": false }
ansible_role
ekohalsti/laenorweb2
35ee92adcc1823169daa371870a1b97a5244f3d6
1
deploy/roles/database
7,625
[ "no_license" ]
[ { "path": "deploy/roles/database/tasks/main.yml", "content": "---\n- name: install postgres\n apt:\n name: \"{{ item }}\"\n with_items:\n - \"postgresql\"\n - \"python-psycopg2\"\n\n- name: create database\n become_user: \"postgres\"\n postgresql_db:\n name: \"{{ db_name }}\"\n login_user...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 441, "all_permissive": false }
ansible_role
ekohalsti/laenorweb2
35ee92adcc1823169daa371870a1b97a5244f3d6
1
deploy/roles/users
7,625
[ "no_license" ]
[ { "path": "deploy/roles/users/tasks/main.yml", "content": "---\n- name: install sudo\n apt:\n pkg: \"sudo\"\n\n- name: create users\n user:\n name: \"{{ item }}\"\n groups:\n - \"sudo\"\n - \"www-data\"\n shell: \"/bin/bash\"\n password: \"\"\n with_items: \"{{ users }}\"\n\n- na...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 536, "all_permissive": false }
ansible_role
ekohalsti/laenorweb2
35ee92adcc1823169daa371870a1b97a5244f3d6
1
deploy/roles/webserver
7,625
[ "no_license" ]
[ { "path": "deploy/roles/webserver/tasks/main.yml", "content": "---\n- name: install nginx, python and uwsgi\n apt:\n name: \"{{ item }}\"\n with_items:\n - \"nginx-extras\"\n - \"uwsgi\"\n - \"uwsgi-plugin-python\"\n - \"python-dev\"\n - \"python-pip\"\n - \"git\"\n\n- name: remove de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 693, "all_permissive": false }
ansible_role
shaunybear/sl-infraop
28cad5a5de821fc45d0ccfc1d9d1c115d2a82f3d
0
ansible/roles/ec2
7,624
[ "no_license" ]
[ { "path": "ansible/roles/ec2/tasks/main.yml", "content": "---\n\n- name: Create EC2 VPC \n ec2_vpc_net:\n name: \"{{ vpc_name }}\"\n cidr_block: \"{{ vpc_cidr }}\"\n region: \"{{ region_name }}\"\n state: present\n register: create_vpc\n\n- name: Set vpc_id\n set_fact:\n vpc_id: \"{{ creat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4457, "all_permissive": false }
ansible_role
shaunybear/sl-infraop
28cad5a5de821fc45d0ccfc1d9d1c115d2a82f3d
0
ansible/roles/master
7,624
[ "no_license" ]
[ { "path": "ansible/roles/master/tasks/main.yml", "content": "---\n\n# tasks file for k8s_master\n- name: Add kubeadm Repositories on Master \n yum_repository:\n name: kube\n description: Kubernetes repo\n baseurl: https://packages.cloud.google.com/yum/repos/kubernetes-el7-$basearch\n enabled: 1...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1806, "all_permissive": false }
ansible_role
shaunybear/sl-infraop
28cad5a5de821fc45d0ccfc1d9d1c115d2a82f3d
0
ansible/roles/worker
7,624
[ "no_license" ]
[ { "path": "ansible/roles/worker/tasks/main.yml", "content": "---\n# tasks file for cluster worker node \n- name: Add kubeadm Repositories on Worker Node\n yum_repository:\n name: kube\n description: Kubernetes repo\n baseurl: https://packages.cloud.google.com/yum/repos/kubernetes-el7-$basearch\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1432, "all_permissive": false }
ansible_role
ProServicesStorage/ansible_old_mac
7039df5c654c6b287d66721f0d633287dde4f3e7
0
roles/apple
7,624
[ "no_license" ]
[ { "path": "roles/apple/tasks/settings.yml", "content": "# These are all of my custom mac settings.\n\n\n# Configure the default screenshot location\n- name: configure screenshots folder\n community.general.osx_defaults:\n domain: com.apple.screencapture\n key: location\n type: string\n value: ~...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 7, "total_bytes": 7220, "all_permissive": false }
ansible_role
mlaterman/csgo-do
9223bd7841132c586f5c9e8a72587f6956fd2f12
0
roles/lgsm-csgo
7,624
[ "no_license" ]
[ { "path": "roles/lgsm-csgo/templates/lgsm-csgo.service.j2", "content": "# {{ ansible_managed }}\n[Unit]\nDescription=LGSM Counter Strike: Global Offensive\nDocumentation=https://linuxgsm.com/lgsm/csgoserver/\nAfter=network-online.target\n\n[Service]\nType=forking\nRemainAfterExit=yes\nWorkingDirectory=/home...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 6, "total_bytes": 5479, "all_permissive": false }
ansible_role
Jax0303/Custom_Ansible_PT
def240f3aad5dce4c9cb598573ea733722bce6cf
0
roles/base
7,624
[ "no_license" ]
[ { "path": "roles/base/tasks/security.yml", "content": "---\n- name: Configure system security\n hosts: all\n become: yes\n\n tasks:\n - name: Configure SSH security\n lineinfile:\n path: /etc/ssh/sshd_config\n regexp: \"{{ item.regexp }}\"\n line: \"{{ item.line }}\"\n l...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2034, "all_permissive": false }
ansible_role
Jax0303/Custom_Ansible_PT
def240f3aad5dce4c9cb598573ea733722bce6cf
0
roles/db
7,624
[ "no_license" ]
[ { "path": "roles/db/tasks/main.yml", "content": "---\n- name: Install PostgreSQL\n apt:\n name: \n - postgresql\n - postgresql-contrib\n - python3-psycopg2\n state: present\n\n- name: Start PostgreSQL service\n command: service postgresql start\n ignore_errors: yes\n", "license_t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 230, "all_permissive": false }
ansible_role
Jax0303/Custom_Ansible_PT
def240f3aad5dce4c9cb598573ea733722bce6cf
0
roles/monitoring
7,624
[ "no_license" ]
[ { "path": "roles/monitoring/tasks/main.yml", "content": "---\n- name: Install monitoring tools\n apt:\n name:\n - prometheus\n - node-exporter\n - grafana\n state: present\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 130 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 130, "all_permissive": false }
ansible_role
Jax0303/Custom_Ansible_PT
def240f3aad5dce4c9cb598573ea733722bce6cf
0
roles/web
7,624
[ "no_license" ]
[ { "path": "roles/web/tasks/services.yml", "content": "---\n- name: Setup Internal Services\n hosts: all\n become: yes\n\n tasks:\n # 내부 Wiki (DokuWiki)\n - name: Install Apache and PHP\n apt:\n name:\n - apache2\n - php\n - php-gd\n - php-xml\n ...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1040, "all_permissive": false }
ansible_role
adamzvolanek/ansible
1353a9ae89c6734998f7f16faf295c01488b34d8
0
roles/web_servers
7,624
[ "no_license" ]
[ { "path": "roles/web_servers/tasks/main.yaml", "content": "---\n- name: Install web server packages\n tags: apache,apache2,centos,httpd,ubuntu\n package:\n name:\n - \"Template:Apache package name\"\n - \"Template:Php package name\"\n state: latest\n when: ansible_distribution == \"CentOS...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 667, "all_permissive": false }
ansible_role
kenmoini/ocp4-ai-svc-libvirt
45e7763f199c1e1faf398f0c054c5d336e93785d
3
ansible/roles/ocp-add-cluster-to-acm
7,624
[ "no_license" ]
[ { "path": "ansible/roles/ocp-add-cluster-to-acm/vars/main.yml", "content": "---\n# vars file for ocp-add-cluster-to-acm", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "ansible/roles/ocp-add-cluster-to-acm/templates/03-klusterlet-addon.yaml.j2", ...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 5560, "all_permissive": false }
ansible_role
kenmoini/ocp4-ai-svc-libvirt
45e7763f199c1e1faf398f0c054c5d336e93785d
3
ansible/roles/ocp-operators-deploy-gpu-operator
7,624
[ "no_license" ]
[ { "path": "ansible/roles/ocp-operators-deploy-gpu-operator/tests/test.yml", "content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - ocp-operators-deploy-gpu-operator", "license_type": "no_license", "detected_licenses": [], "size_bytes": 91 }, { "path": "ansible/roles/oc...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 7, "total_bytes": 6991, "all_permissive": false }
ansible_role
kenmoini/ocp4-ai-svc-libvirt
45e7763f199c1e1faf398f0c054c5d336e93785d
3
ansible/roles/ocp-operators-deploy-nfd
7,624
[ "no_license" ]
[ { "path": "ansible/roles/ocp-operators-deploy-nfd/handlers/main.yml", "content": "---\n# handlers file for ocp-operators-deploy-nfd", "license_type": "no_license", "detected_licenses": [], "size_bytes": 48 }, { "path": "ansible/roles/ocp-operators-deploy-nfd/vars/main.yml", "content"...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 3372, "all_permissive": false }
ansible_role
kenmoini/ocp4-ai-svc-libvirt
45e7763f199c1e1faf398f0c054c5d336e93785d
3
ansible/roles/ocp4-certificates
7,624
[ "no_license" ]
[ { "path": "ansible/roles/ocp4-certificates/handlers/main.yml", "content": "---\n# handlers file for ocp4-certificates\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "ansible/roles/ocp4-certificates/templates/additionalTrustBundleConfigMap.yaml.j2...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3970, "all_permissive": false }
ansible_role
kenmoini/ocp4-ai-svc-libvirt
45e7763f199c1e1faf398f0c054c5d336e93785d
3
ansible/roles/ocp4-matrix-login
7,624
[ "no_license" ]
[ { "path": "ansible/roles/ocp4-matrix-login/handlers/main.yml", "content": "---\n# handlers file for ocp4-matrix-login", "license_type": "no_license", "detected_licenses": [], "size_bytes": 41 }, { "path": "ansible/roles/ocp4-matrix-login/tests/test.yml", "content": "---\n- hosts: loc...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 766, "all_permissive": false }
ansible_role
kenmoini/ocp4-ai-svc-libvirt
45e7763f199c1e1faf398f0c054c5d336e93785d
3
ansible/roles/ocp4-workloads-mario
7,624
[ "no_license" ]
[ { "path": "ansible/roles/ocp4-workloads-mario/vars/main.yml", "content": "---\n# vars file for ocp4-workloads-mario", "license_type": "no_license", "detected_licenses": [], "size_bytes": 40 }, { "path": "ansible/roles/ocp4-workloads-mario/tasks/main.yml", "content": "---\n# tasks fil...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 3805, "all_permissive": false }
ansible_role
kenmoini/ocp4-ai-svc-libvirt
45e7763f199c1e1faf398f0c054c5d336e93785d
3
ansible/roles/ocp4-workloads-ml-liquorlab
7,624
[ "no_license" ]
[ { "path": "ansible/roles/ocp4-workloads-ml-liquorlab/files/clusterlogging_subscription.yaml", "content": "---\napiVersion: operators.coreos.com/v1alpha1\nkind: Subscription\nmetadata:\n name: cluster-logging\n namespace: openshift-logging\n labels:\n operators.coreos.com/cluster-logging.openshift-logg...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 15, "total_bytes": 9980, "all_permissive": false }
ansible_role
Miles0821/CPE232_HOA10.1
db5e53277088ed75a909686becce9eadf57af1e4
0
roles/elastic
7,624
[ "no_license" ]
[ { "path": "roles/elastic/tasks/main.yml", "content": "\n- name: Add Elasticsearch APT repository key\n shell: wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -\n when: ansible_distribution == \"Ubuntu\"\n\n- name: Add Elasticsearch APT repository\n apt_repository:\n re...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1066, "all_permissive": false }
ansible_role
karkikrishit/repo2
19710a4c04338b0cf327e40d580369ef25266340
0
roles/apache
7,624
[ "no_license" ]
[ { "path": "roles/apache/vars/main.yml", "content": "---\n# vars file for apache\n web_dir: /var/www/test.www/web\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 60 }, { "path": "roles/apache/tasks/main.yml", "content": "---\n# tasks file for apache\n- name: ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 308, "all_permissive": false }
ansible_role
karkikrishit/repo2
19710a4c04338b0cf327e40d580369ef25266340
0
roles/common
7,624
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: install common software\n apt: name={{ item }} state=present\n with_items:\n - git\n - htop\n - unzip\n\n- name: create group cmgrp\n group: name=cmgrp state=present\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": 180, "all_permissive": false }
ansible_role
karkikrishit/repo2
19710a4c04338b0cf327e40d580369ef25266340
0
roles/template
7,624
[ "no_license" ]
[ { "path": "roles/template/tasks/main.yml", "content": "---\n- name: install common softwares\n apt: name={{ item }} state=present\n with_items:\n - git\n - htop\n - unzip\n\n- name: create group tstgrp1\n group: name=tstgrp1 state=present\n\n- name: create user hari\n user:\n name={{ uname }}\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 667, "all_permissive": false }
ansible_role
AlnPir/ansible-collection-alnpir-dummy
a8ace1ad1d72a1061379c0f11190ffec43c30baa
0
roles/dummy
7,624
[ "no_license" ]
[ { "path": "roles/dummy/tasks/main.yml", "content": "---\n- name: Greet form call location\n ansible.builtin.debug:\n msg: \"Hi from : {{ dummy_hi_from }} !\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 }, { "path": "roles/dummy/README.md", "conten...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 318, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/build_cluster_for_new_node
7,624
[ "no_license" ]
[ { "path": "roles/build_cluster_for_new_node/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, <NAME> 867583\n\n---\n- name: Add the new nodes\n command: \" curl -X PUT \\\"http://{{username}}:{{pas...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 328, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/build_python_environment
7,624
[ "no_license" ]
[ { "path": "roles/build_python_environment/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, <NAME> 867583\n\n---\n- name: install pip3\n apt:\n name:\n - git\n - python3-pip\n - l...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2286, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/build_python_environment_for_new_node
7,624
[ "no_license" ]
[ { "path": "roles/build_python_environment_for_new_node/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, <NAME> 867583\n\n---\n- name: install pip3\n apt:\n name:\n - git\n - python3-p...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 798, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/build_spark_for_new_node
7,624
[ "no_license" ]
[ { "path": "roles/build_spark_for_new_node/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, <NAME> 867583\n\n---\n- name: Build Environment\n apt:\n name:\n - default-jdk\n - scala\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2441, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/install_environment_and_couchdb_for_new_node
7,624
[ "no_license" ]
[ { "path": "roles/install_environment_and_couchdb_for_new_node/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, <NAME> 867583\n\n---\n- name: System Update\n apt:\n update_cache: yes\n upgrad...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2910, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/launch_instance_and_attach_volume
7,624
[ "no_license" ]
[ { "path": "roles/launch_instance_and_attach_volume/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, Lingtao Jiang 867583\n\n---\n- name: Launch the first instance\n os_server:\n state: present\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2202, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/launch_instance_and_attach_volume_for_new_node
7,624
[ "no_license" ]
[ { "path": "roles/launch_instance_and_attach_volume_for_new_node/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, <NAME> 867583\n\n---\n- name: Launch new instance(s)\n os_server:\n state: prese...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1630, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/make_file_system_and_mount
7,624
[ "no_license" ]
[ { "path": "roles/make_file_system_and_mount/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, <NAME> 867583\n\n---\n- name: Make file system\n filesystem:\n fstype: ext4\n dev: /dev/vdc\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 414, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/start_spark_service_for_master
7,624
[ "no_license" ]
[ { "path": "roles/start_spark_service_for_master/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, <NAME> 867583\n\n---\n- name: Edit service file for master\n lineinfile:\n dest: /etc/systemd/sy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 687, "all_permissive": false }
ansible_role
lotharJiang/Cluster-Sentiment-Analysis
bd27768d4598be44f616089cb461387f47d63c07
0
roles/start_spark_service_for_slaves
7,624
[ "no_license" ]
[ { "path": "roles/start_spark_service_for_slaves/tasks/main.yaml", "content": "#Cluster Sentiment Analysis Project, CCC2018-35, Melbourne\n#Members: <NAME> 816920, <NAME> 848008, <NAME> 857673, <NAME> 879694, <NAME> 867583\n\n---\n- name: Edit service file for slaves\n lineinfile:\n dest: /etc/systemd/sy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 696, "all_permissive": false }
ansible_role
jmacgillivray/AnsibleMaxwell
6bc13890e1bbd2393ce6f5a6ced494e2898ebfa5
0
roles/common
7,623
[ "no_license" ]
[ { "path": "roles/common/tasks/harden_ssh.yml", "content": "- name: Secure SSH installation\n lineinfile: >\n dest=/etc/ssh/sshd_config\n backup={{item.backup}}\n regexp=\"{{item.regexp}}\"\n line=\"{{item.line}}\"\n backrefs=true\n with_items:\n # On first loop of lineinfile, make a back...
{ "task_files": 4, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 2537, "all_permissive": false }
ansible_role
jmacgillivray/AnsibleMaxwell
6bc13890e1bbd2393ce6f5a6ced494e2898ebfa5
0
roles/munin-master
7,623
[ "no_license" ]
[ { "path": "roles/munin-master/tasks/main.yml", "content": "- name: Enable the epel-release repository\n yum: name=epel-release state=present\n\n- name: Install munin\n yum: name=munin state=present\n\n- name: Install httpd\n yum: name=httpd state=present\n\n- name: Open http port in firewall for library ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 666, "all_permissive": false }
ansible_role
chebykin/chain-loadtest
0b1700ee9a43fb58b5a4c031cf63f6ddbee2c0e3
0
roles/monitoring
7,623
[ "no_license" ]
[ { "path": "roles/monitoring/tasks/main.yml", "content": "---\n- name: Install telegraf\n become: True\n apt:\n deb: https://dl.influxdata.com/telegraf/releases/telegraf_1.6.1-1_amd64.deb\n\n- name: Configure telegraf\n become: True\n template:\n src: \"telegraf.conf\"\n dest: /etc/telegraf/tele...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 377, "all_permissive": false }
ansible_role
chebykin/chain-loadtest
0b1700ee9a43fb58b5a4c031cf63f6ddbee2c0e3
0
roles/observer
7,623
[ "no_license" ]
[ { "path": "roles/observer/tasks/main.yml", "content": "---\n- name: Fetch core count\n shell: \"cat /proc/cpuinfo | grep processor | wc -l\"\n register: core_count\n\n- name: Create logs directory\n file:\n path: \"~{{ username }}/logs\"\n state: directory\n mode: 0700\n owner: \"{{ username ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1663, "all_permissive": false }
ansible_role
chebykin/chain-loadtest
0b1700ee9a43fb58b5a4c031cf63f6ddbee2c0e3
0
roles/preconf
7,623
[ "no_license" ]
[ { "path": "roles/preconf/tasks/main.yml", "content": "---\n- name: 'Install python2'\n raw: sudo apt-get -y install python-simplejson\n\n- name: 'Install scripts dependencies'\n raw: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && sudo python ./get-pip.py && sudo pip install py-cpuinfo\n\n- nam...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1287, "all_permissive": false }
ansible_role
dimuran/developer_env
8cdcb3f005a3d610bd4a7195865ad6675d2c5324
0
roles/development
7,623
[ "no_license" ]
[ { "path": "roles/development/tasks/main.yml", "content": "---\n- name: Update repositories cache\n become: true\n apt:\n update_cache: yes\n cache_valid_time: 3600\n\n- name: Install linux packages\n become: true\n apt:\n name: \"{{ item }}\"\n with_items:\n - \"{{ linux_packages }}\"\n\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 1003, "all_permissive": false }
ansible_role
dimuran/developer_env
8cdcb3f005a3d610bd4a7195865ad6675d2c5324
0
roles/gnome_gui
7,623
[ "no_license" ]
[ { "path": "roles/gnome_gui/vars/main.yml", "content": "---\ngsettings:\n - schema: com.canonical.Unity.Launcher\n key: favorites\n value: $(cat {{ ansible_env.PWD }}/roles/gnome_gui/files/favorites.cfg)\n - schema: org.gnome.desktop.background\n key: picture-uri\n value: \"\"\n - schema: org....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 665, "all_permissive": false }
ansible_role
ideaths/ansible
c45af84caeba2c05d9cea6c183e8c5ecad039958
0
roles/keepalived
7,623
[ "no_license" ]
[ { "path": "roles/keepalived/tasks/install.yml", "content": "---\n- name: Cài đặt gói Keepalived trên Ubuntu/Debian\n apt:\n name: keepalived\n state: present\n when: ansible_os_family == \"Debian\"\n\n- name: Cài đặt gói Keepalived trên CentOS/RHEL\n yum:\n name: keepalived\n state: present\n...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 6, "total_bytes": 1364, "all_permissive": false }
ansible_role
ideaths/ansible
c45af84caeba2c05d9cea6c183e8c5ecad039958
0
roles/rke2
7,623
[ "no_license" ]
[ { "path": "roles/rke2/templates/rke2-cilium-config.yaml.j2", "content": "apiVersion: helm.cattle.io/v1\nkind: HelmChartConfig\nmetadata:\n name: rke2-cilium\n namespace: kube-system\nspec:\n valuesContent: |-\n kubeProxyReplacement: true\n cni:\n chainingMode: \"none\"\n localRedirectPolicy...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 16436, "all_permissive": false }
ansible_role
chuanheyuanyuan/ceph_ansible
88cb568396f73c1a9f421070383977ba051f04ee
0
roles/ceph-mgr
7,623
[ "no_license" ]
[ { "path": "roles/ceph-mgr/tasks/main.yml", "content": "---\n- name: set_fact docker_exec_cmd\n set_fact:\n docker_exec_cmd: \"docker exec ceph-mgr-{{ ansible_hostname }}\"\n when:\n - containerized_deployment\n\n- name: include pre_requisite.yml\n include: pre_requisite.yml\n when: not containeriz...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 349, "all_permissive": false }
ansible_role
hoaraujerome/devops_cicd
f1fffeb5e26a18a6a0b2299262af054db1655176
0
packer/ansible/roles/awscli
7,623
[ "no_license" ]
[ { "path": "packer/ansible/roles/awscli/tasks/main.yml", "content": "- name: Download awscliv2 installer\n unarchive:\n src: \"{{ awscli_download_url }}\"\n dest: \"{{ temp_dir }}\"\n remote_src: true\n creates: \"{{ temp_dir }}/aws\"\n mode: 0755\n\n- name: Run the installer\n command:\n a...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 315, "all_permissive": false }
ansible_role
hoaraujerome/devops_cicd
f1fffeb5e26a18a6a0b2299262af054db1655176
0
packer/ansible/roles/docker
7,623
[ "no_license" ]
[ { "path": "packer/ansible/roles/docker/tasks/main.yml", "content": "- name: Install Docker\n yum:\n name: docker\n state: present\n update_cache: true\n\n- name: Add jenkins user to \"docker\" group\n user:\n name: \"jenkins\"\n groups: \"docker\"\n append: true\n\n- name: Enable and Sta...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 308, "all_permissive": false }
ansible_role
hoaraujerome/devops_cicd
f1fffeb5e26a18a6a0b2299262af054db1655176
0
packer/ansible/roles/jenkins
7,623
[ "no_license" ]
[ { "path": "packer/ansible/roles/jenkins/tasks/main.yml", "content": "---\n- name: Add Jenkins repository\n yum_repository:\n name: jenkins\n description: Jenkins YUM repo\n baseurl: https://pkg.jenkins.io/redhat-stable\n gpgkey: https://pkg.jenkins.io/redhat-stable/jenkins.io.key\n\n- name: Ins...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 7600, "all_permissive": false }
ansible_role
hoaraujerome/devops_cicd
f1fffeb5e26a18a6a0b2299262af054db1655176
0
packer/ansible/roles/terraform
7,623
[ "no_license" ]
[ { "path": "packer/ansible/roles/terraform/tasks/main.yml", "content": "- name: Create Terraform user\n user:\n name: \"{{ terraform_user }}\"\n password: \"{{ <PASSWORD> }}\"\n\n- name: Create Terraform directory\n file:\n path: \"{{ terraform_dir }}\"\n state: directory\n owner: \"{{ terra...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1107, "all_permissive": false }
ansible_role
tbrigham75/bootstrap
2fedd386b49b749c1e952c12b92be6bd42bbd8e9
0
ansible/roles/add-repos
7,623
[ "no_license" ]
[ { "path": "ansible/roles/add-repos/tasks/main.yaml", "content": "---\r\n- name: Enabling EPEL Repository on RHEL based systems\r\n yum:\r\n name: epel-release\r\n state: latest\r\n when: ansible_distribution in ['AlmaLinux', 'CentOS', 'RedHat', 'Rocky']\r\n\r\n- name: Add Helm repository for nfs-sub...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 734, "all_permissive": false }
ansible_role
tbrigham75/bootstrap
2fedd386b49b749c1e952c12b92be6bd42bbd8e9
0
ansible/roles/deploy-argocd
7,623
[ "no_license" ]
[ { "path": "ansible/roles/deploy-argocd/tasks/main.yaml", "content": "---\r\n- name: Install pip if not present\r\n ansible.builtin.package:\r\n name: python3-pip\r\n state: present\r\n\r\n- name: Install kubernetes Python package\r\n ansible.builtin.pip:\r\n name: kubernetes\r\n state: present...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2318, "all_permissive": false }
ansible_role
tbrigham75/bootstrap
2fedd386b49b749c1e952c12b92be6bd42bbd8e9
0
ansible/roles/deploy-certs
7,623
[ "no_license" ]
[ { "path": "ansible/roles/deploy-certs/tasks/main.yaml", "content": "---\r\n- name: Create a directory for CA certificates\r\n file:\r\n path: /etc/kubernetes/pki/ca/\r\n state: directory\r\n\r\n- name: Copying MITRE_BA_NPE_CA-3.crt\r\n copy:\r\n src: \"MITRE_BA_NPE_CA-3.crt\"\r\n dest: \"/etc/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 809, "all_permissive": false }
ansible_role
tbrigham75/bootstrap
2fedd386b49b749c1e952c12b92be6bd42bbd8e9
0
ansible/roles/deploy-nfs-provisioner
7,623
[ "no_license" ]
[ { "path": "ansible/roles/deploy-nfs-provisioner/tasks/main.yaml", "content": "---\r\n\r\n- name: Install NFS Subdirectory External Provisioner\r\n kubernetes.core.helm:\r\n name: nfs-subdir-external-provisioner\r\n chart_ref: nfs-subdir-external-provisioner/nfs-subdir-external-provisioner\r\n rele...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 992, "all_permissive": false }
ansible_role
tbrigham75/bootstrap
2fedd386b49b749c1e952c12b92be6bd42bbd8e9
0
ansible/roles/install-ansible-collections
7,623
[ "no_license" ]
[ { "path": "ansible/roles/install-ansible-collections/vars/main.yaml", "content": "---\r\nk3sadm_version: \"1.2.0\"", "license_type": "no_license", "detected_licenses": [], "size_bytes": 28 }, { "path": "ansible/roles/install-ansible-collections/tasks/main.yaml", "content": "---\r\n- ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 659, "all_permissive": false }
ansible_role
tbrigham75/bootstrap
2fedd386b49b749c1e952c12b92be6bd42bbd8e9
0
ansible/roles/install-apps-all-systems
7,623
[ "no_license" ]
[ { "path": "ansible/roles/install-apps-all-systems/tasks/main.yaml", "content": "---\r\n- name: Setting up home var\r\n set_fact:\r\n home_dir: \"{{ lookup('env', 'HOME') }}\"\r\n\r\n- name: Install multiple packages for all distros of linux\r\n package:\r\n name:\r\n - vim\r\n - net-tools\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 822, "all_permissive": false }
ansible_role
zsmith1/ansible
fe20231a63a00e0668cfd7708419bd1675ed8fc8
0
roles/deploy_webapp
7,623
[ "no_license" ]
[ { "path": "roles/deploy_webapp/templates/deployment.yml", "content": "apiVersion: apps/v1\r\nkind: Deployment\r\nmetadata:\r\n name: webapp\r\n namespace: webapp\r\nspec:\r\n replicas: 1\r\n selector:\r\n matchLabels:\r\n app: web\r\n template:\r\n metadata:\r\n labels:\r\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 939, "all_permissive": false }
ansible_role
Sunnyunix077/rushisr
6fdb07026e44068ab37acfd7a5ac276d895e014f
0
ansible/roles/deployment
7,626
[ "no_license" ]
[ { "path": "ansible/roles/deployment/tasks/setup_registry.yml", "content": "---\n- name: Set environment variables\n set_fact:\n KOLLA_REPO_PORT: \"17186\"\n KOLLA_CONTAINER_OS: ubuntu\n KOLLA_CONTAINER_OPS: wallaby\n\n- name: Create local Docker Registry directory\n ansible.builtin.file:\n pat...
{ "task_files": 5, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 8, "total_bytes": 6716, "all_permissive": false }
ansible_role
Sunnyunix077/rushisr
6fdb07026e44068ab37acfd7a5ac276d895e014f
0
ansible/roles/nginx
7,626
[ "no_license" ]
[ { "path": "ansible/roles/nginx/tasks/main.yml", "content": "---\n- name: Create webuser\n ansible.builtin.user:\n name: webuser\n\n- name: Install nginx package\n ansible.builtin.apt:\n name: nginx\n state: present\n\n- name: Copy default index.html\n ansible.builtin.template:\n src: index.ht...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 813, "all_permissive": false }
ansible_role
Sunnyunix077/rushisr
6fdb07026e44068ab37acfd7a5ac276d895e014f
0
ansible/roles/os_configure
7,626
[ "no_license" ]
[ { "path": "ansible/roles/os_configure/templates/resolv.conf.j2", "content": "search {{ domain.search }}\n{% for nameserver in domain.nameservers %}\nnameserver {{ nameserver }}\n{% endfor %}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 111 }, { "path": "ansibl...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 8, "total_bytes": 4428, "all_permissive": false }
ansible_role
Sunnyunix077/rushisr
6fdb07026e44068ab37acfd7a5ac276d895e014f
0
ansible/roles/ssh_setup
7,626
[ "no_license" ]
[ { "path": "ansible/roles/ssh_setup/tasks/pwdless_login.yml", "content": "---\n- name: Check if SSH key pair exists\n become: true\n become_user: ubuntu\n stat:\n path: /home/ubuntu/.ssh/id_rsa\n register: ssh_key_pair\n\n- name: Generate SSH key pair\n become: true\n become_user: ubuntu\n command:...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1236, "all_permissive": false }
ansible_role
Otus-DevOps-2022-05/RTS-1989_infra
309df3bd22badf38037889aac723c60c668669ba
0
ansible/roles/app
7,626
[ "no_license" ]
[ { "path": "ansible/roles/app/tasks/ruby.yml", "content": "---\n- name: Install ruby and rubygems and required packages\n apt: \"name={{ item }} state=present\"\n with_items:\n - git\n - ruby-full\n - ruby-bundler\n - build-essential\n tags: ruby\n", "license_type": "no_license", "dete...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 193, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
aws/roles/create-ec2-instance
7,626
[ "no_license" ]
[ { "path": "aws/roles/create-ec2-instance/tasks/main.yml", "content": "---\n# vars:\n# region: us-east-1\n# instance_type: t2.nano\n# ami: ami-f4cc1de2 # Ubuntu 16.04 LTS\n# keypair: einsteinish # pem file name\n \n - name: Create an ec2 instance\n ec2:\n key_name: \"{{...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 799, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/change-hostname-and-hosts-files
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/change-hostname-and-hosts-files/tasks/main.sh", "content": "#!/bin/bash\nIFS=',' read -r -a hostnames <<< $(cat inventory | grep ansible_host | awk {'print $1'} | tr '\\n' ,)\n\nloc=$(dirname \"$0\")\ncd $(pwd)/$loc\n\nfor hostname in ${hostnames[@]}\ndo\n echo $hos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1220, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/configure-master-node
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/configure-master-node/tasks/main.yml", "content": "- hosts: masters\n tasks:\n\n - name: initialize the cluster\n shell: kubeadm init >> configure-master-node1.txt\n args:\n chdir: /home/kube/logs\n creates: cluster_initialized1.txt\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 847, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/create-user
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/create-user/tasks/main.yml", "content": "- hosts: nodes\n tasks:\n\n - name: create the 'kube' user\n user: \n name: kube \n append: yes \n state: present \n createhome: yes \n shell: /bin/bash\n\n - name: allow 'kube' t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 644, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/delete-app
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/delete-app/tasks/main.yml", "content": "- hosts: master\n become_user: kube\n tasks:\n\n - name: deploying HPA my_app\n shell: kubectl delete deploy,svc,hpa \"{{ item }}\"\n with_items: \n - blue\n - green\n ignore_errors: yes\n\n", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 211, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/deploy-app
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/deploy-app/tasks/main.yml", "content": "- hosts: master\n become_user: kube\n tasks:\n\n - name: Get Master Node's IP\n shell: ifconfig eth0 | grep 'inet ' | awk {'print $2'}\n register: get_ip\n\n - name: Set Master Node's IP\n set_fact:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 812, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/deploy-metrics-server-for-HPA
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/deploy-metrics-server-for-HPA/tasks/main.yml", "content": "- hosts: master\n become: yes\n become_user: kube\n tasks:\n\n - name: Deploying Metrics-Server for HPA\n shell: kubectl apply -f https://raw.githubusercontent.com/hiakki/kubernetes/master/metrics-...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 353, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/join-master
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/join-master/tasks/main.yml", "content": "- hosts: masters\n tasks:\n\n - name: get join command\n shell: kubeadm token create --print-join-command\n register: join_command_raw\n\n - name: set join command\n set_fact:\n join_command: \"{{ ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 491, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/launch-ec2-master
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/launch-ec2-master/tasks/main.yml", "content": "---\n \n - name: Create an ec2 instance\n ec2:\n key_name: \"{{ keypair }}\"\n group: \"{{ sgn }}\" # security group name\n instance_type: \"{{ type }}\"\n image: \"{{ ami }}\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 679, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/launch-ec2-worker
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/launch-ec2-worker/tasks/main.yml", "content": "---\n\n - name: Create an ec2 instance\n ec2:\n key_name: \"{{ keypair }}\"\n group: \"{{ sgn }}\" # security group name\n instance_type: \"{{ type }}\"\n image: \"{{ ami }}\"\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 651, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/re-deploy-app
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/re-deploy-app/tasks/main.yml", "content": "- hosts: masters\n become_user: kube\n tasks:\n\n - name: Deleting Deployment, Service, HPA of my_app\n shell: kubectl delete deploy,svc,hpa \"{{ item }}\"\n with_items:\n - blue\n - green\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 432, "all_permissive": false }
ansible_role
hiakki/ansible
e49740dcd03200107459c4de707c745b472fe94c
0
kubernetes_with_kubeadm/roles/update-YAMLs
7,626
[ "no_license" ]
[ { "path": "kubernetes_with_kubeadm/roles/update-YAMLs/tasks/main.yml", "content": "- hosts: masters\n become: yes\n become_user: kube\n tasks:\n\n - name: download blue green YAMLs from hiakki/kubernetes\n git:\n repo: https://github.com/hiakki/kubernetes.git\n dest: /home/kube/kube...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 418, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/acertmgr
7,626
[ "no_license" ]
[ { "path": "roles/acertmgr/tasks/main.yml", "content": "---\n\n- name: Install dependencies\n apt: name={{ item }}\n with_items:\n - git\n - python-cryptography\n - python-dnspython\n - python-yaml\n\n- name: Install acertmgr\n git: repo=https://github.com/moepman/acertmgr.git dest=/opt/acertmgr depth...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 865, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/apt
7,626
[ "no_license" ]
[ { "path": "roles/apt/tasks/main.yml", "content": "---\n\n- name: Configure apt not to install recommends packages\n copy: src=apt-recommends.conf dest=/etc/apt/apt.conf.d/40recommends\n\n- name: Install apt https transport plugin\n apt: name=apt-transport-https\n\n- name: Install debian-goodies for checkr...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 896, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/common
7,626
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n\n- name: Install misc software\n apt: name={{ item }}\n with_items:\n - dnsutils\n - git\n - htop\n - less\n - net-tools\n - openssl\n - psmisc\n - pydf\n - rsync\n - sudo\n - vim-nox\n - zsh\n - fail2ban\n\n- name: Install qemu-agent...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1024, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/dhcpd
7,626
[ "no_license" ]
[ { "path": "roles/dhcpd/tasks/main.yml", "content": "---\n\n- name: Install dhcp server\n apt: name=isc-dhcp-server\n\n- name: Configure dhcp server\n template: src=dhcpd.conf.j2 dest=/etc/dhcp/dhcpd.conf\n notify: Restart isc-dhcp-server\n\n- name: Specify dhcp interfaces\n lineinfile:\n dest: /etc/d...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2130, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/exit-ip
7,626
[ "no_license" ]
[ { "path": "roles/exit-ip/handlers/main.yml", "content": "---\n\n- name: Reload iptables\n shell: iptables-restore < /etc/iptables/rules.v4\n\n- name: Reload ip6tables\n shell: ip6tables-restore < /etc/iptables/rules.v6\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 15...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 2012, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/fastd
7,626
[ "no_license" ]
[ { "path": "roles/fastd/tasks/main.yml", "content": "---\n\n- name: Create group\n group: name=fastd\n\n- name: Create user\n user: name=fastd group=fastd\n\n- name: Install fastd\n apt: name=fastd state=latest\n\n- name: Install haveged (to create entropy)\n apt: name=haveged\n\n- name: Systemd unit for...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 3463, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/fastd-exporter
7,626
[ "no_license" ]
[ { "path": "roles/fastd-exporter/tasks/main.yml", "content": "---\n\n- name: Install fastd-exporter\n shell: /usr/local/go/bin/go get -v -u {{ fastd_exporter_source }}\n args:\n creates: /opt/go/bin/fastd-exporter\n environment:\n GOPATH: /opt/go\n notify: Restart fastd-exporter\n\n- name: Configur...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 934, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/grafana
7,626
[ "no_license" ]
[ { "path": "roles/grafana/tasks/main.yml", "content": "---\n\n- name: Enable grafana apt-key\n apt_key: url='https://packages.grafana.com/gpg.key'\n\n- name: Enable grafana repository\n apt_repository: repo='deb https://packages.grafana.com/oss/deb stable main'\n\n- name: Install grafana\n apt: name=grafa...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 248, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/gw-admin-ssh-keys
7,626
[ "no_license" ]
[ { "path": "roles/gw-admin-ssh-keys/tasks/main.yml", "content": "---\n\n- name: Deploy Admin Keys from vault_root_sshkeys\n authorized_key:\n user: root\n state: present\n key: \"{{ item }}\"\n with_items: \"{{ vault_root_sshkeys }}\"\n", "license_type": "no_license", "detected_licenses": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 170, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/mesh-interfaces
7,626
[ "no_license" ]
[ { "path": "roles/mesh-interfaces/tasks/main.yml", "content": "---\n\n- name: Install dependencies\n apt: name=python-pkg-resources\n\n- name: Install ifupdown2\n apt: name=ifupdown2 state=latest\n\n- name: Uninstall ifupdown\n apt: name=ifupdown state=absent\n\n# this is required for nginx, dhcpd and oth...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 3, "total_bytes": 1811, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/node_exporter
7,626
[ "no_license" ]
[ { "path": "roles/node_exporter/defaults/main.yml", "content": "---\n\nnode_exporter_version: 0.16.0\nnode_exporter_url: https://github.com/prometheus/node_exporter/releases/download/v{{ node_exporter_version }}/node_exporter-{{ node_exporter_version }}.linux-amd64.tar.gz\n", "license_type": "no_license"...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 4, "total_bytes": 1176, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/prometheus
7,626
[ "no_license" ]
[ { "path": "roles/prometheus/templates/prometheus.yml.j2", "content": "# Sample config for Prometheus.\n\nglobal:\n scrape_interval: 60s\n evaluation_interval: 60s\n # scrape_timeout is set to the global default (10s).\n\n # Attach these labels to any time series or alerts when communicating with\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 1408, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/respondd
7,626
[ "no_license" ]
[ { "path": "roles/respondd/templates/respondd.service.j2", "content": "# {{ ansible_managed }}\n\n[Unit]\nDescription=respondd\nAfter=network-online.target\n\n[Service]\nExecStart=/opt/{{ site_code }}/respondd-announce/respondd.py -b {{ batman_interface }} -i {{ main_bridge }} -d /opt/{{ site_code }}/respond...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 5, "total_bytes": 1305, "all_permissive": false }
ansible_role
tecff/ansible
4933a83b5cf3b1482cd9e42f5afcda2a18a55da2
0
roles/yanic
7,626
[ "no_license" ]
[ { "path": "roles/yanic/tasks/main.yml", "content": "---\n\n- name: Create user\n user: name=yanic\n\n- name: Install yanic\n shell: /usr/local/go/bin/go get -v -u {{ yanic_source }}\n args:\n creates: /opt/go/bin/yanic\n environment:\n GOPATH: /opt/go\n notify: Restart yanic\n\n- name: Configure ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4259, "all_permissive": false }
ansible_role
navidshaikh/scanning
cad960b02f0fb537d24fee6464e0b66fee351f26
0
provisions/roles/api_poll
7,626
[ "no_license" ]
[ { "path": "provisions/roles/api_poll/tasks/main.yml", "content": "- name: Ensure EPEL is installed\n yum: name=epel-release state=present\n become: true\n\n- name: Install Wget, python-pip\n yum: name={{ item }} state=present\n with_items:\n - wget\n - python-pip\n become: true\n\n- name: Configu...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 2416, "all_permissive": false }
ansible_role
navidshaikh/scanning
cad960b02f0fb537d24fee6464e0b66fee351f26
0
provisions/roles/cleansaasherder
7,626
[ "no_license" ]
[ { "path": "provisions/roles/cleansaasherder/tasks/main.yml", "content": "---\n- name: Uninstall saasherder python package\n shell: pip uninstall -y saasherder\n become: true\n ignore_errors: yes\n\n- name: Remove saasherder and respective git clones\n file: path={{ item }} state=absent\n with_items:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 519, "all_permissive": false }
ansible_role
navidshaikh/scanning
cad960b02f0fb537d24fee6464e0b66fee351f26
0
provisions/roles/docker
7,626
[ "no_license" ]
[ { "path": "provisions/roles/docker/tasks/main.yml", "content": "- name: Install docker, python-docker-py, atomic RPM packages\n yum: name={{item}} state=present\n with_items:\n - docker-1.13.1-53.git774336d.el7.x86_64\n - python-docker-py\n - atomic\n become: true\n tags: docker\n\n- name: Conf...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1255, "all_permissive": false }
ansible_role
navidshaikh/scanning
cad960b02f0fb537d24fee6464e0b66fee351f26
0
provisions/roles/prepare
7,626
[ "no_license" ]
[ { "path": "provisions/roles/prepare/tasks/main.yml", "content": "---\n- name: Get the source code of scanning module\n synchronize:\n src: ../../../../\n dest: /opt/scanning\n mode: push\n become: true\n tags: prepare\n\n- name: Install mailx RPM on scanner node for mail notifications\n y...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 309, "all_permissive": false }
ansible_role
navidshaikh/scanning
cad960b02f0fb537d24fee6464e0b66fee351f26
0
provisions/roles/saasherder
7,626
[ "no_license" ]
[ { "path": "provisions/roles/saasherder/tasks/main.yml", "content": "---\n- name: Run pre-requisites script for saas herder\n script: /opt/scanning/saasherder_parser/set-pre-requisite.sh\n args:\n creates: /opt/scanning/saasherder_parser/saasherder\n chdir: /opt/scanning/saasherder_parser/\n\n- name:...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 534, "all_permissive": false }