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
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/boot-rescue
8,008
[ "no_license" ]
[ { "path": "roles/boot-rescue/tasks/main.yml", "content": "---\n- include: ovh.yml\n when: baremetal_provider == 'ovh'\n\n- include: hetzner.yml\n when: baremetal_provider == 'hetzner'\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 124 }, { "path": "roles/boo...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3134, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/calico
8,008
[ "no_license" ]
[ { "path": "roles/calico/tasks/main.yml", "content": "---\n- block:\n - name: install calicoctl\n get_url:\n url: https://github.com/projectcalico/calicoctl/releases/download/v1.1.1/calicoctl\n dest: \"{{ lookup('env','HOME') }}/bin/calicoctl\"\n mode: 0774 \n\n\n\n - name: create c...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 3, "total_bytes": 4252, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/ceph-on-kubernetes-config
8,008
[ "no_license" ]
[ { "path": "roles/ceph-on-kubernetes-config/templates/kubernetes/ceph-osd-v1-ds.yaml", "content": "---\nkind: DaemonSet\napiVersion: extensions/v1beta1\nmetadata:\n name: ceph-osd\n namespace: ceph\n labels:\n app: ceph\n daemon: osd\nspec:\n template:\n metadata:\n labels:\n app: ce...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 8231, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/ceph-on-kubernetes-resources
8,008
[ "no_license" ]
[ { "path": "roles/ceph-on-kubernetes-resources/tasks/main.yml", "content": "---\n- name: create ceph osd dir\n file: \n path: \"{{ ceph_osd_dir }}\"\n state: directory\n sudo: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 105 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 105, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/cloud-config
8,008
[ "no_license" ]
[ { "path": "roles/cloud-config/tasks/main.yml", "content": "---\n- name: copy cloud config\n file: path=/var/lib/coreos-install state=directory\n sudo: yes\n- name: copy cloud config\n template: src=cloud_config.tmpl dest=/var/lib/coreos-install/user_data\n sudo: yes\n\n- name: remove /usr/share/oem/clou...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 920, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/etcd-certificates
8,008
[ "no_license" ]
[ { "path": "roles/etcd-certificates/tasks/install_etcdca.yml", "content": "---\n- name: check if it is already installed\n local_action: \"stat path=~/bin/etcd-ca\"\n register: bin_etcdca\n\n\n- name: ensure ~/bin directory exists\n local_action: \"file path=~/bin state=directory\"\n become: false\n run...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 3529, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/etcd-certs-cfssl
8,008
[ "no_license" ]
[ { "path": "roles/etcd-certs-cfssl/tasks/main.yml", "content": "---\n# etcd-ca export --insecure --passphrase '' | sed -e 's/.*-----BEGIN\\(.*\\)/-----BEGIN\\1/' | openssl pkey -out key.pem\n# etcd-ca export --insecure --passphrase '' | sed -e 's/.*-----BEGIN\\(.*\\)/-----BEGIN\\1/' | openssl x509 -out caex...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 4187, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/extra-cas
8,008
[ "no_license" ]
[ { "path": "roles/extra-cas/tasks/main.yml", "content": "---\n- name: read cas \n slurp:\n src: \"{{ item }}\"\n\n with_fileglob:\n - \"{{ inventory_dir }}/{{ kube_cluster_name }}-extra-ca-certs/*\"\n register: extra_cas\n delegate_to: localhost\n connection: local\n\n- debug:\n var: extra_...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 240, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/install-coreos
8,008
[ "no_license" ]
[ { "path": "roles/install-coreos/tasks/bare_metal.yml", "content": "---\n- name: copy cloud confgi\n template: src=cloud_config_install.tmpl dest=/tmp/cloud-config.yaml\n\n- name: debug cloud config\n shell: cat /tmp/cloud-config.yaml\n\n\n- name: install coreos\n shell: |\n apt-get -y install gawk\n ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2162, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/k8s-dns-addon
8,008
[ "no_license" ]
[ { "path": "roles/k8s-dns-addon/templates/dns-addon.yml", "content": "apiVersion: v1\nkind: Service\nmetadata:\n name: kube-dns\n namespace: kube-system\n labels:\n k8s-app: kube-dns\n kubernetes.io/cluster-service: \"true\"\n kubernetes.io/name: \"KubeDNS\"\nspec:\n selector:\n k8s-app: kube...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 2, "total_bytes": 5391, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/k8s-kubesystem-namespace
8,008
[ "no_license" ]
[ { "path": "roles/k8s-kubesystem-namespace/tasks/main.yml", "content": "---\n- name: check if dns-addon is already installed\n command: kubectl get namespaces --output=json --context={{ kube_cluster_name }}\n register: system_namespace_kubectl_command\n changed_when: false\n delegate_to: localhost\n con...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1349, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/k8s-resource
8,008
[ "no_license" ]
[ { "path": "roles/k8s-resource/tasks/main.yml", "content": "---\n- name: check if resource is already exists\n command: kubectl get {{ k8s_resource_kind }} --namespace={{ k8s_resource_namespace|default(\"default\") }} --output=json --context={{ kube_cluster_name }}\n register: k8s_resource_kubectl_command\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1213, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/kubectl
8,008
[ "no_license" ]
[ { "path": "roles/kubectl/tasks/main.yml", "content": "---\n- name: kubectl checksum\n local_action:\n module: shell\n args: \"sha256sum ~/bin/kubectl | awk '{ print $1}'\"\n run_once: yes\n register: current_kubectl_checksum\n changed_when: false\n\n- name: download kubectl\n local_action:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 533, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/kubectl-config
8,008
[ "no_license" ]
[ { "path": "roles/kubectl-config/tasks/main.yml", "content": "---\n- name: copy kubernetes ca\n local_action:\n module: copy\n src: \"{{ inventory_dir }}/{{ kube_cluster_name }}-kubernetes-ca/\"\n dest: \"{{ lookup('env','HOME') }}/.kube/{{ kube_cluster_name }}-kubernetes-ca/\"\n run_once: true\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1241, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/kubernetes-certificates
8,008
[ "no_license" ]
[ { "path": "roles/kubernetes-certificates/tasks/main.yml", "content": "---\n# https://coreos.com/kubernetes/docs/latest/openssl.html\n- name: create certificate directory\n local_action: file path={{ inventory_dir }}/{{ kube_cluster_name}}-kubernetes-ca state=directory\n\n- name: create ca \n shell: |\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3555, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/label-node
8,008
[ "no_license" ]
[ { "path": "roles/label-node/tasks/main.yml", "content": "---\n- name: get list of nodes and lables\n command: kubectl get nodes --output=json\n changed_when: false\n delegate_to: localhost\n connection: local\n run_once: true\n register: label_kubectl_command\n\n- name: debug\n set_fact:\n label...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1431, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/loadbalancer-config
8,008
[ "no_license" ]
[ { "path": "roles/loadbalancer-config/tasks/main.yml", "content": "---\n- name: create loadbalancer config dir\n local_action:\n module: file\n path: \"{{ inventory_dir}}/{{ kube_cluster_name }}-loadbalancer\"\n state: directory\n\n- name: template loadbalancer daemonset\n local_action:\n modul...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 366, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/reboot
8,008
[ "no_license" ]
[ { "path": "roles/reboot/tasks/main.yml", "content": "- name: shutdown\n command: shutdown -r -t +1\n sudo: yes\n\n- name: wait a minute for reboot\n pause: seconds=75\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 112 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 112, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/safe_reboot
8,008
[ "no_license" ]
[ { "path": "roles/safe_reboot/tasks/main.yml", "content": "- name: request safe reboot\n command: /opt/bin/update_needed.sh\n sudo: yes\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 77 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 77, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/unlabel-node
8,008
[ "no_license" ]
[ { "path": "roles/unlabel-node/tasks/main.yml", "content": "---\n- name: get list of nodes and lables\n command: kubectl get nodes --output=json\n changed_when: false\n delegate_to: localhost\n connection: local\n run_once: true\n register: label_kubectl_command\n\n#- name: debug\n# set_fact:\n# ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1160, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/unsafe_reboot
8,008
[ "no_license" ]
[ { "path": "roles/unsafe_reboot/tasks/main.yml", "content": "---\n- name: reboot server\n shell: sleep 5 && reboot &\n sudo: yes\n args:\n executable: /bin/bash\n async: 10\n poll: 0\n\n\n- name: waiting for server to go down\n local_action: \n module: wait_for\n host: \"{{ inventory_hos...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 602, "all_permissive": false }
ansible_role
cornelius-keller/ansible-coreos-kubernetes
10d1210bc24eb28fbcdd4705d4e105999a6112cc
49
roles/wait_for_k8s_node
8,008
[ "no_license" ]
[ { "path": "roles/wait_for_k8s_node/tasks/main.yml", "content": "---\n- name: wait for k8s node to appear\n delegate_to: localhost\n connection: local\n shell: |\n #!/bin/bash\n n=0\n until [ $n -ge {{ wait_for_seconds }} ]\n do\n kubectl --namespace={{ wait_for_namespace|defau...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 587, "all_permissive": false }
ansible_role
piotrplenik/jenkins-php
97bf9e562569cb535a83cf920f0d96a1dac32e83
1
provisioning/roles/common
8,008
[ "no_license" ]
[ { "path": "provisioning/roles/common/tasks/wait-for-ssh.yml", "content": "---\n\n - name: Wait for port 22 to be ready\n local_action: wait_for port=22 host=\"{{ ansible_ssh_host }}\" search_regex=OpenSSH delay=10", "license_type": "no_license", "detected_licenses": [], "size_bytes": 136 }, ...
{ "task_files": 3, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 4, "total_bytes": 742, "all_permissive": false }
ansible_role
piotrplenik/jenkins-php
97bf9e562569cb535a83cf920f0d96a1dac32e83
1
provisioning/roles/jenkins-postinst
8,008
[ "no_license" ]
[ { "path": "provisioning/roles/jenkins-postinst/tasks/main.yml", "content": "---\n\n- template:\n src: \"{{template|default('hudson.plugins.phing.PhingInstallation.xml')}}\"\n dest: \"/var/lib/jenkins/hudson.plugins.phing.PhingInstallation.xml\"\n owner: \"jenkins\"\n group: \"jenkins\"\n mode...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 507, "all_permissive": false }
ansible_role
NicolasLM/ansible-runabove-example
7b237b92c7bf40e3a8aa3409be2dbf4e01042045
0
roles/common
8,008
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "---\n- name: Update packages list\n apt: update_cache=yes cache_valid_time=3600\n\n- name: Upgrade installed packages\n apt: upgrade=dist\n\n- name: Install base programs\n apt: name={{item}} state=present\n with_items:\n - htop\n - ntp\n\n- name: C...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 317, "all_permissive": false }
ansible_role
NicolasLM/ansible-runabove-example
7b237b92c7bf40e3a8aa3409be2dbf4e01042045
0
roles/nginx
8,008
[ "no_license" ]
[ { "path": "roles/nginx/tasks/main.yml", "content": "---\n- name: Update packages list\n apt: update_cache=yes cache_valid_time=3600\n\n- name: Install nginx\n apt: name={{item}} state=present\n with_items:\n - nginx\n\n- name: Remove default nginx site\n file: path=/etc/nginx/sites-enabled/default stat...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 606, "all_permissive": false }
ansible_role
kkurpanik/nginx-nosql-poc
4ce19de28f0b9a0186c6a2ff58e9bb7a42f2fc64
0
setup/ansible/roles/nginx
8,008
[ "no_license" ]
[ { "path": "setup/ansible/roles/nginx/tasks/main.yml", "content": "---\n# tasks file for nginx\n\n- name: Enable epel-release repository\n yum:\n name: epel-release\n state: latest\n\n- name: Install nginx package\n yum:\n name: nginx\n state: latest\n\n- name: Copy nginx config files\n copy:\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1613, "all_permissive": false }
ansible_role
kkurpanik/nginx-nosql-poc
4ce19de28f0b9a0186c6a2ff58e9bb7a42f2fc64
0
setup/ansible/roles/rke-all-in-one
8,008
[ "no_license" ]
[ { "path": "setup/ansible/roles/rke-all-in-one/defaults/main.yml", "content": "---\n# defaults file for rke-all-in-one", "license_type": "no_license", "detected_licenses": [], "size_bytes": 38 }, { "path": "setup/ansible/roles/rke-all-in-one/templates/rancher-cluster.yaml.j2", "conten...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 7, "total_bytes": 1982, "all_permissive": false }
ansible_role
kkurpanik/nginx-nosql-poc
4ce19de28f0b9a0186c6a2ff58e9bb7a42f2fc64
0
setup/ansible/roles/tools
8,008
[ "no_license" ]
[ { "path": "setup/ansible/roles/tools/README.md", "content": "tools\n=========\n\nScope of this role is to install prerequisities for nginx-nosql-poc demo.\n\nRequirements\n------------\n\nIt works only with CentOS 7 hosts.\n\nRole Variables\n--------------\n\nkubectl_version: v1.17.0\n\nDependencies\n------...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1342, "all_permissive": false }
ansible_role
mehtadev17/ubuntu-dev-box
2426602e73d0804d7acf7c24875fb9a6685e75b3
0
provisioners/roles/postgres
8,008
[ "no_license" ]
[ { "path": "provisioners/roles/postgres/tasks/main.yml", "content": "---\n# tasks file for postgres\n# Install postgresql\n- apt: name=postgresql-9.5\n- pip: name=psycopg2\n\n- name: setup pg_hba.conf\n template:\n src=pg_hba.conf.j2\n dest=/etc/postgresql/9.5/main/pg_hba.conf\n owner=postgres\n r...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 256, "all_permissive": false }
ansible_role
mehtadev17/ubuntu-dev-box
2426602e73d0804d7acf7c24875fb9a6685e75b3
0
provisioners/roles/postgres-database
8,008
[ "no_license" ]
[ { "path": "provisioners/roles/postgres-database/tasks/main.yml", "content": "---\n# tasks file for postgres-database\n- name: create postgres db\n sudo_user: postgres\n postgresql_db:\n name={{db_name}}\n encoding='UTF-8'\n login_user={{postgres_login_user}}\n login_password={{<PASSWORD>_login...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 900, "all_permissive": false }
ansible_role
jmtsantos/smuggler
ca29f70b817354b8a3756566ff7ca36e768f2167
0
roles/smuggle
8,008
[ "no_license" ]
[ { "path": "roles/smuggle/tasks/main.yaml", "content": "---\n- name: Installing dependencies\n apt:\n name: \"{{ item }}\"\n state: present\n update_cache: yes\n with_items:\n - ptunnel\n - iodine\n\n- name: Copy systemd ptunnel service\n copy:\n src: ptunnel.service\n dest: /etc/syst...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 846, "all_permissive": false }
ansible_role
s-devops-i3/expense-ansible
8c0b1f035ac24eeda386102a5d6b2d959fcec8a1
0
roles/backend
8,008
[ "no_license" ]
[ { "path": "roles/backend/vars/main.yml", "content": "app_loc: /app\ncomponent: backend\napp_user: expense\nlog_file: /var/log/backend.log\nrsyslog_needed: true\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 104 }, { "path": "roles/backend/tasks/main.yml", ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1575, "all_permissive": false }
ansible_role
s-devops-i3/expense-ansible
8c0b1f035ac24eeda386102a5d6b2d959fcec8a1
0
roles/common
8,008
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: Set the prompt\n ansible.builtin.shell: set-prompt {{ component }}-{{ env }}\n\n\n- name: Install Node Exporter\n ansible.builtin.import_role:\n name: prometheus\n tasks_from: node_exporter\n\n- name: Install Logstash\n ansible.builtin.im...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 954, "all_permissive": false }
ansible_role
s-devops-i3/expense-ansible
8c0b1f035ac24eeda386102a5d6b2d959fcec8a1
0
roles/frontend
8,008
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yml", "content": " - name: Install Nginx\n ansible.builtin.dnf:\n name: nginx\n state: installed\n\n - name: Copy expense configuration\n ansible.builtin.template:\n src: expense.conf\n dest: /etc/nginx/default.d/expense.conf\n\n - name: Impo...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 587, "all_permissive": false }
ansible_role
s-devops-i3/expense-ansible
8c0b1f035ac24eeda386102a5d6b2d959fcec8a1
0
roles/logstash
8,008
[ "no_license" ]
[ { "path": "roles/logstash/tasks/main.yml", "content": "- name: copy elastic repo fle\n ansible.builtin.template:\n src: elastic.repo\n dest: /etc/yum.repos.d/elastic.repo\n\n- name: install logstash\n ansible.builtin.dnf:\n name: logstash\n state: installed\n\n\n- name: copy logstash conf fle\...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 457, "all_permissive": false }
ansible_role
s-devops-i3/expense-ansible
8c0b1f035ac24eeda386102a5d6b2d959fcec8a1
0
roles/mysql
8,008
[ "no_license" ]
[ { "path": "roles/mysql/vars/main.yml", "content": "component: mysql\nlogstash_needed: false\n\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 41 }, { "path": "roles/mysql/tasks/main.yml", "content": " - name: Install MySQL Server\n ansible.builtin.dnf:\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 966, "all_permissive": false }
ansible_role
s-devops-i3/expense-ansible
8c0b1f035ac24eeda386102a5d6b2d959fcec8a1
0
roles/newrelic
8,008
[ "no_license" ]
[ { "path": "roles/newrelic/tasks/nodejs.yml", "content": "- name: Install node.js package.\n community.general.npm:\n name: newrelic\n path: /app", "license_type": "no_license", "detected_licenses": [], "size_bytes": 91 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 91, "all_permissive": false }
ansible_role
s-devops-i3/expense-ansible
8c0b1f035ac24eeda386102a5d6b2d959fcec8a1
0
roles/rsyslog
8,008
[ "no_license" ]
[ { "path": "roles/rsyslog/tasks/main.yml", "content": "- name: copy rsyslog configuration\n ansible.builtin.template:\n src: backend.conf\n dest: /etc/rsyslog.d/backend.conf\n\n- name: restart rsyslog\n ansible.builtin.systemd_service:\n name: rsyslog\n state: restarted\n", "license_type": ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 222, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/base
8,008
[ "no_license" ]
[ { "path": "roles/base/defaults/main.yaml", "content": "target_dir: \"{{ ansible_user_dir }}/triplestore-benchmark\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 59 }, { "path": "roles/base/tasks/main.yaml", "content": "- name: Create target dir\n file:\n ...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1175, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/blazegraph
8,008
[ "no_license" ]
[ { "path": "roles/blazegraph/tasks/main.yaml", "content": "- name: Create Blazegraph directory\n file:\n path: \"{{ target_dir }}/triplestores/blazegraph\"\n state: directory\n\n- name: Check for Blazegraph\n stat:\n path: \"{{ target_dir }}/triplestores/blazegraph/blazegraph.jar\"\n register: bl...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 706, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/build_common
8,008
[ "no_license" ]
[ { "path": "roles/build_common/tasks/main.yaml", "content": "- name: Install make & cmake\n become: yes\n apt:\n package:\n - make\n - cmake\n\n- name: Install C++ Compiler\n become: yes\n apt:\n package:\n - gcc\n - g++\n\n- name: Install git\n become: yes\n apt:\n package...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1383, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/cgmemtime
8,008
[ "no_license" ]
[ { "path": "roles/cgmemtime/meta/main.yaml", "content": "dependencies:\n - role: build_common\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 37 }, { "path": "roles/cgmemtime/tasks/install.yaml", "content": "- name: Create a tempory download directory\n temp...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1371, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/dataset_dbpedia2015
8,008
[ "no_license" ]
[ { "path": "roles/dataset_dbpedia2015/tasks/main.yaml", "content": "- name: Check for the DBpedia2015 dataset\n stat:\n path: \"{{ target_dir }}/datasets/dbpedia2015/dbpedia_2015-10_en_wo-comments_c.nt\"\n get_checksum: no\n register: dataset2015_nt\n\n- name: Create dataset directory\n file:\n p...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1434, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/dataset_swdf
8,008
[ "no_license" ]
[ { "path": "roles/dataset_swdf/tasks/main.yaml", "content": "- name: Check for the SWDF dataset\n stat:\n path: \"{{ target_dir }}/datasets/swdf\"\n register: dataset_dir\n\n- include: download.yaml\n when: not dataset_dir.stat.exists\n\n- name: Download SWDF queries\n get_url:\n url: https://raw.g...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1103, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/dataset_watdiv
8,008
[ "no_license" ]
[ { "path": "roles/dataset_watdiv/tasks/install-generator.yaml", "content": "- name: Create the generator directory\n file:\n path: \"{{ target_dir }}/datasets/watdiv/generator\"\n state: directory\n\n- name: Create temporary directory\n tempfile:\n state: directory\n suffix: watdiv\n register:...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 2676, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/dataset_wikidata-20201111
8,008
[ "no_license" ]
[ { "path": "roles/dataset_wikidata-20201111/tasks/download.yaml", "content": "- name: Create a tempory download directory\n tempfile:\n state: directory\n suffix: wikidata\n register: tempdir\n\n- name: Download wikidata dataset\n get_url:\n url: https://hobbitdata.informatik.uni-leipzig.de/wikid...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1422, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/fuseki
8,008
[ "no_license" ]
[ { "path": "roles/fuseki/meta/main.yaml", "content": "dependencies:\n - role: base\n - role: build_common\n - role: jena\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 67 }, { "path": "roles/fuseki/tasks/main.yaml", "content": "- name: Check for Fuseki\n ...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 1633, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/fuseki-ltj
8,008
[ "no_license" ]
[ { "path": "roles/fuseki-ltj/tasks/install.yaml", "content": "- name: Ensure Fuseki Directory is present\n file:\n path: \"{{ target_dir }}/triplestores/fuseki-ltj\"\n state: directory\n\n- name: Download Fuseki Checksum\n get_url:\n url: https://github.com/cirojas/leapfrog-benchmark/raw/453a2ca52...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2445, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/graphdb
8,008
[ "no_license" ]
[ { "path": "roles/graphdb/defaults/main.yaml", "content": "graphdb_version: 9.11.1", "license_type": "no_license", "detected_licenses": [], "size_bytes": 23 }, { "path": "roles/graphdb/tasks/install.yaml", "content": "- name: Ensure GraphDB Directory is present\n file:\n path: \"{...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1033, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/gstore
8,008
[ "no_license" ]
[ { "path": "roles/gstore/tasks/main.yaml", "content": "- name: Check for gStore\n stat:\n path: \"{{ target_dir }}/triplestores/gstore/\"\n register: gstore_dir\n\n- include: install.yaml\n when: not gstore_dir.stat.exists\n", "license_type": "no_license", "detected_licenses": [], "size_byt...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 1689, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/iguana
8,008
[ "no_license" ]
[ { "path": "roles/iguana/templates/iguana-run.sh", "content": "#! /bin/sh\n\njava -Xmx{{ iguana_mem }} -jar {{ target_dir }}/iguana-{{ iguana_version }}/corecontroller.jar $1\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 111 }, { "path": "roles/iguana/meta/main...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 1719, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/iguana_suites
8,008
[ "no_license" ]
[ { "path": "roles/iguana_suites/templates/tentris-stop.sh", "content": "#! /bin/bash\n\nif [[ ! -f {{ target_dir }}/tentris.pid ]]\nthen\n echo $(date --iso-8601) - Tentris is not running\n exit 1\nfi\n\nkill $(cat {{ target_dir }}/tentris.pid) >/dev/null\nsleep 10\nkill -9 $(cat {{ target_dir }}/tentr...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 17, "total_bytes": 11289, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/jena
8,008
[ "no_license" ]
[ { "path": "roles/jena/tasks/install.yaml", "content": "- name: Ensure Jena Directory is present\n file:\n path: \"{{ target_dir }}/triplestores/jena\"\n state: directory\n\n- name: Create a tempory download directory\n tempfile:\n state: directory\n suffix: jena\n register: tempdir\n\n- name:...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1315, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/loaders
8,008
[ "no_license" ]
[ { "path": "roles/loaders/templates/tentris-load.sh", "content": "#! /bin/bash\n\ncgmemtime {{ target_dir }}/triplestores/tentris/{{ item[0] }}/tentris_terminal --logfile false --logstdout -f {{ item[1].path }} << EOF 2>&1 | tee {{ target_dir }}/logs/load/tentris-{{ item[0] }}-{{ item[1].name }}.log\nEOF\n"...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 5785, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/parse_sparql_results
8,008
[ "no_license" ]
[ { "path": "roles/parse_sparql_results/templates/parse-sparql-results-tentris.sh", "content": "#!/bin/bash\n\nbash \"{{ target_dir }}/iguana_suites/http/tentris-{{ item[0] }}/{{ item[1].name }}/1-start.sh\"\n\ncd \"{{ target_dir }}\" || exit\n\nsparql_result_analysis --url \"http://localhost:9080/stream\" --...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2354, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/tentris
8,008
[ "no_license" ]
[ { "path": "roles/tentris/tasks/main.yaml", "content": "- name: Install tentris versions\n loop: \"{{ tentris_versions }}\"\n loop_control:\n loop_var: tentris_version\n include_tasks: check_install.yaml\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 148 }, { ...
{ "task_files": 3, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 5059, "all_permissive": false }
ansible_role
dice-group/tentris-paper-benchmarks
c24174ac05c029d092f08dd3ab3a546b65e92b80
1
roles/virtuoso
8,008
[ "no_license" ]
[ { "path": "roles/virtuoso/defaults/main.yaml", "content": "virtuoso_version: 7.2.6.1\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 26 }, { "path": "roles/virtuoso/tasks/install.yaml", "content": "- name: Ensure Virtuoso directory is present\n file:\n pa...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1165, "all_permissive": false }
ansible_role
aayush-kumar-bm-ai/internal-ansible-scripts
bcff6797334b0dca3aaa320c671bf9e7d7570a8e
0
roles/alb
8,008
[ "no_license" ]
[ { "path": "roles/alb/tasks/main.yml", "content": "---\n- name: Create Target Group\n include_tasks: target_group.yml\n\n- name: Add aditional targets\n include_tasks: additional_targets.yml\n when: additional_targets_present\n\n- name: Create Load Balancer\n include_tasks: alb_create.yml\n\n", "lice...
{ "task_files": 4, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 5, "total_bytes": 2954, "all_permissive": false }
ansible_role
aayush-kumar-bm-ai/internal-ansible-scripts
bcff6797334b0dca3aaa320c671bf9e7d7570a8e
0
roles/ec2
8,008
[ "no_license" ]
[ { "path": "roles/ec2/tasks/ec2_create_with_add_volume.yml", "content": "---\n- name: create ec2 instance\n amazon.aws.ec2_instance:\n key_name: \"{{ instance_key_name }}\"\n instance_type: \"{{ instance_type }}\"\n instance_role: \"{{instance_role}}\"\n image: \n id: \"{{ ami_id }}\"\n ...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 3741, "all_permissive": false }
ansible_role
aayush-kumar-bm-ai/internal-ansible-scripts
bcff6797334b0dca3aaa320c671bf9e7d7570a8e
0
roles/ec2_setup
8,008
[ "no_license" ]
[ { "path": "roles/ec2_setup/tasks/add_pip_conf.yml", "content": "---\n- name: Touch file\n file:\n path: /etc/pip.conf\n state: touch\n\n- name: Adding pip.conf Key\n blockinfile:\n path: /etc/pip.conf\n content: |\n [global]\n extra-index-url=https://bright:TheFutureBank2030@pypi.bri...
{ "task_files": 5, "has_defaults": true, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 2928, "all_permissive": false }
ansible_role
aayush-kumar-bm-ai/internal-ansible-scripts
bcff6797334b0dca3aaa320c671bf9e7d7570a8e
0
roles/filebeat
8,008
[ "no_license" ]
[ { "path": "roles/filebeat/templates/gunicorn_drf.j2", "content": "- type: log\n processors:\n - dissect:\n tokenizer: \"[%{?u} %{?v}] [LEVEL]: %{log_level}, [LOG_TYPE]: %{log_type}, [FILE_PATH]: %{file_path}, [LINE]: %{line_no}, [FUNC]: %{function_name}, [MSG]: %{extracted_message}\"\n fie...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 11, "total_bytes": 6661, "all_permissive": false }
ansible_role
aayush-kumar-bm-ai/internal-ansible-scripts
bcff6797334b0dca3aaa320c671bf9e7d7570a8e
0
roles/nginx_exporter
8,008
[ "no_license" ]
[ { "path": "roles/nginx_exporter/defaults/main.yml", "content": "---\nnginx_exporter_url: https://github.com/nginxinc/nginx-prometheus-exporter/releases/download/v0.9.0/nginx-prometheus-exporter_0.9.0_linux_amd64.tar.gz\nnginx_download_path: /tmp/nginx-prometheus-exporter.tar.gz\nnginx_extraction_dest: /tmp\...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1534, "all_permissive": false }
ansible_role
aayush-kumar-bm-ai/internal-ansible-scripts
bcff6797334b0dca3aaa320c671bf9e7d7570a8e
0
roles/node_exporter
8,008
[ "no_license" ]
[ { "path": "roles/node_exporter/tasks/node_exporter.yml", "content": "---\n\n- name: \"Install Node exporter\"\n get_url:\n url: \"{{ node_exporter_url }}\"\n dest: \"{{ node_download_path }}\"\n\n- name: Extract tar.gz into \n ansible.builtin.unarchive:\n remote_src: yes\n src: \"{{ node_down...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1715, "all_permissive": false }
ansible_role
aayush-kumar-bm-ai/internal-ansible-scripts
bcff6797334b0dca3aaa320c671bf9e7d7570a8e
0
roles/ossec
8,008
[ "no_license" ]
[ { "path": "roles/ossec/defaults/main.yml", "content": "---\n# Default variables for this role\n\n# OSSEC installation questions (with email notifications)\nossec_dir: /var/ossec", "license_type": "no_license", "detected_licenses": [], "size_bytes": 118 }, { "path": "roles/ossec/templates...
{ "task_files": 3, "has_defaults": true, "has_handlers": true, "has_templates": true }
{ "file_count": 11, "total_bytes": 21297, "all_permissive": false }
ansible_role
aayush-kumar-bm-ai/internal-ansible-scripts
bcff6797334b0dca3aaa320c671bf9e7d7570a8e
0
roles/statsd_exporter
8,008
[ "no_license" ]
[ { "path": "roles/statsd_exporter/templates/statsd_exporter_service.j2", "content": "[Unit]\nDescription=Statsd Exporter\nAfter=network.target\n[Service]\nUser=prometheus\nGroup=prometheus\nType=simple\nExecStart={{usr_bin_dir}}/statsd_exporter --statsd.mapping-config={{statsd_config_dir}}/{{statsd_config_fi...
{ "task_files": 2, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 5, "total_bytes": 2505, "all_permissive": false }
ansible_role
codilime/mesos-opencontrail-ansible
1ec1dfbfea544efa0240cffd6587f6f4fb17b300
0
roles/cni
8,008
[ "no_license" ]
[ { "path": "roles/cni/tasks/golang.yml", "content": "---\n\n- include_vars: golang.yml\n\n- name: Check Golang existance\n shell: . {{ go_profile_entry }}; type go\n register: golang_exists\n failed_when: false\n\n- name: Check Golang version\n shell: . {{ go_profile_entry }}; go version | cut -f 3 -d ' ...
{ "task_files": 4, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 9, "total_bytes": 8398, "all_permissive": false }
ansible_role
codilime/mesos-opencontrail-ansible
1ec1dfbfea544efa0240cffd6587f6f4fb17b300
0
roles/common
8,008
[ "no_license" ]
[ { "path": "roles/common/tasks/Debian.yml", "content": "---\n\n- name: Make sure necessary packages are installed\n become: yes\n action: \"{{ ansible_pkg_mgr }}\"\n args:\n name: \"{{ package }}\"\n state: latest\n force: yes\n update_cache: yes\n with_items:\n - python-netaddr\n - pyt...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 2750, "all_permissive": false }
ansible_role
codilime/mesos-opencontrail-ansible
1ec1dfbfea544efa0240cffd6587f6f4fb17b300
0
roles/contrail-3
8,008
[ "no_license" ]
[ { "path": "roles/contrail-3/templates/contrail-control.upstart.j2", "content": "description \"OpenContrail control-node\"\n\nstart on started docker\nstop on runlevel [!2345]\n\nrespawn\n\npre-start script\n\t/usr/bin/docker rm contrail-control || echo \"ignore error\"\nend script\n\npost-stop script\n\t/us...
{ "task_files": 11, "has_defaults": false, "has_handlers": true, "has_templates": true }
{ "file_count": 27, "total_bytes": 18364, "all_permissive": false }
ansible_role
codilime/mesos-opencontrail-ansible
1ec1dfbfea544efa0240cffd6587f6f4fb17b300
0
roles/docker
8,008
[ "no_license" ]
[ { "path": "roles/docker/tasks/main.yml", "content": "---\n\n- name: docker prereqs for Debian\n become: yes\n command: \"{{ item }}\"\n with_items:\n - \"apt-get -y install apt-transport-https ca-certificates\"\n - \"apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys <KEY>\"\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 3554, "all_permissive": false }
ansible_role
codilime/mesos-opencontrail-ansible
1ec1dfbfea544efa0240cffd6587f6f4fb17b300
0
roles/guestbook
8,008
[ "no_license" ]
[ { "path": "roles/guestbook/templates/guestbook.json", "content": "{\n \"id\": \"guestbook\",\n \"instances\": 3,\n \"container\": {\n \"type\": \"MESOS\",\n \"docker\": {\n \"image\": \"kubernetes/guestbook:v2\"\n } \n },\n \"cpus\": 0.1,\n \"mem\": 64.0,\n \"ipAdd...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1709, "all_permissive": false }
ansible_role
codilime/mesos-opencontrail-ansible
1ec1dfbfea544efa0240cffd6587f6f4fb17b300
0
roles/marathon
8,008
[ "no_license" ]
[ { "path": "roles/marathon/vars/main.yml", "content": "---\n\nmarathon_http_port: 8880\nmarathon_packages_path: \"marathon\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 65 }, { "path": "roles/marathon/templates/master-conf.j2", "content": "zk://{{ mesos_zo...
{ "task_files": 1, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 10, "total_bytes": 4743, "all_permissive": false }
ansible_role
codilime/mesos-opencontrail-ansible
1ec1dfbfea544efa0240cffd6587f6f4fb17b300
0
roles/mesos
8,008
[ "permissive" ]
[ { "path": "roles/mesos/defaults/main.yml", "content": "---\n\nmesos_install_mode: \"none\" # {master|slave|master-slave|none}\nmesos_version: \"fork\"\n\n# conf file settings\nmesos_cluster_name: \"mesos_cluster\"\nmesos_ip: \"{{ansible_default_ipv4.address}}\"\nmesos_hostname: \"{{ ansible_hostname }}\"\nm...
{ "task_files": 6, "has_defaults": true, "has_handlers": false, "has_templates": true }
{ "file_count": 15, "total_bytes": 12581, "all_permissive": true }
ansible_role
codilime/mesos-opencontrail-ansible
1ec1dfbfea544efa0240cffd6587f6f4fb17b300
0
roles/resolution
8,008
[ "no_license" ]
[ { "path": "roles/resolution/tasks/main.yml", "content": "---\n\n- name: Set hostname\n hostname:\n args:\n name: \"{{ inventory_hostname }}\"\n\n- name: Add entries to /etc/hosts\n lineinfile:\n args:\n dest: /etc/hosts\n regexp: \" {{ item }}\"\n line: \"{{ hostvars[item].ansible_ssh_host }...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 284, "all_permissive": false }
ansible_role
codilime/mesos-opencontrail-ansible
1ec1dfbfea544efa0240cffd6587f6f4fb17b300
0
roles/zookeeper
8,008
[ "no_license" ]
[ { "path": "roles/zookeeper/vars/main.yml", "content": "zookeeper_docker_image: \"zookeeper:3.4.8\"\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 42 }, { "path": "roles/zookeeper/tasks/main.yml", "content": "---\n\n- name: zookeeper directory\n file: name=/...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 4, "total_bytes": 1833, "all_permissive": false }
ansible_role
Cparedesperez/ansible
b8af9004c3fded4439311a7c11bf22c88c1cedc4
0
roles/bucle_template
8,009
[ "no_license" ]
[ { "path": "roles/bucle_template/tasks/main.yml", "content": "---\n\n- name: copy template\n template:\n src: ../indexx.html.j2\n dest: /usr/share/nginx/html/index.html\n\n- name: restart nginx\n systemd: \n name: nginx\n state: restarted\n", "license_type": "no_license", "detected_lice...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 505, "all_permissive": false }
ansible_role
Cparedesperez/ansible
b8af9004c3fded4439311a7c11bf22c88c1cedc4
0
roles/crear_user
8,009
[ "no_license" ]
[ { "path": "roles/crear_user/defaults/main.yml", "content": "---\n# defaults file for crear_user\n\nansible_local_user: ansible\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 64 }, { "path": "roles/crear_user/vars/main.yml", "content": "---\n# vars file for c...
{ "task_files": 1, "has_defaults": true, "has_handlers": true, "has_templates": false }
{ "file_count": 5, "total_bytes": 1199, "all_permissive": false }
ansible_role
Cparedesperez/ansible
b8af9004c3fded4439311a7c11bf22c88c1cedc4
0
roles/nginx_install
8,009
[ "no_license" ]
[ { "path": "roles/nginx_install/tasks/main.yml", "content": "---\n\n- name: update\n dnf: \n name: \"*\"\n state: latest\n become: yes\n\n- name: Install nginx\n dnf:\n name: \"nginx\"\n state: present\n become: yes\n\n- name: Start service\n systemd: \n name: nginx\n state: started\n ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 260, "all_permissive": false }
ansible_role
Cparedesperez/ansible
b8af9004c3fded4439311a7c11bf22c88c1cedc4
0
roles/permitir_puertos
8,009
[ "no_license" ]
[ { "path": "roles/permitir_puertos/tasks/main.yml", "content": "---\n\n- name: permitir puerto\n ansible.posix.firewalld:\n zone: public\n port: 80/tcp\n permanent: yes\n immediate: true\n state: enabled\n\n- name: permitir puertos\n ansible.posix.firewalld:\n zone: public\n port: 80/t...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 294, "all_permissive": false }
ansible_role
Cparedesperez/ansible
b8af9004c3fded4439311a7c11bf22c88c1cedc4
0
roles/variable_template
8,009
[ "no_license" ]
[ { "path": "roles/variable_template/tasks/main.yml", "content": "---\n\n- name: copy nginx template\n template:\n src: ../index.html.j2\n dest: /usr/share/nginx/html/index.html\n\n- name: recargar nginx\n systemd: \n name: nginx\n state: restarted\n\n", "license_type": "no_license", "de...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 335, "all_permissive": false }
ansible_role
kagyuu/ansible_activiti6
d59c8517bdd8f20105b0a4c42e1c9031e05ec8ff
0
roles/activiti
8,009
[ "no_license" ]
[ { "path": "roles/activiti/tasks/main.yml", "content": "---\n- name: copy local activiti archive if exists\n unarchive:\n src=files/activiti-{{ activiti_version }}.zip\n dest=/tmp\n ignore_errors: true\n register: resutl_expand_local_activiti\n\n- get_url:\n url: https://github.com/Activiti/Activ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 2202, "all_permissive": false }
ansible_role
zircote/ansible-redis
e68f2000453fd122c8a5b944aa3b9635c5caaf6b
2
roles/redis-server
8,009
[ "no_license" ]
[ { "path": "roles/redis-server/tasks/main.yaml", "content": "---\n#\n# Default Ansible YAML\n#\n- name: create redis config\n template: src=etc/redis/redis.conf.j2 dest=/etc/redis/{{ redis_port }}.conf\n sudo: yes\n notify: \n - add redis-{{ redis_port }} service\n - enable the redis service\n - ...
{ "task_files": 1, "has_defaults": false, "has_handlers": true, "has_templates": false }
{ "file_count": 2, "total_bytes": 1270, "all_permissive": false }
ansible_role
farWaxon/solution
e25e0cfbcac005858b1e9288a959f7ad23c319fb
0
roles/build
8,009
[ "no_license" ]
[ { "path": "roles/build/tasks/main.yml", "content": "---\n - import_tasks: runBuild.yml\n tags:\n - deploy\n - run_build\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 78 }, { "path": "roles/build/tasks/runBuild.yml", "content": "---\n- name: \"...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 2, "total_bytes": 194, "all_permissive": false }
ansible_role
farWaxon/solution
e25e0cfbcac005858b1e9288a959f7ad23c319fb
0
roles/checker
8,009
[ "no_license" ]
[ { "path": "roles/checker/tasks/checker.yml", "content": "---\n\n - name: \"Checking tasks\"\n package_facts:\n manager: \"auto\"\n tags:\n - always\n###############################################################################\n - name: \"Disable Selinux\"\n action: shell setenforce ...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 284, "all_permissive": false }
ansible_role
farWaxon/solution
e25e0cfbcac005858b1e9288a959f7ad23c319fb
0
roles/createImage
8,009
[ "no_license" ]
[ { "path": "roles/createImage/files/Dockerfile", "content": "FROM java:8-jdk-alpine\n\nCOPY jhttp-1.0-SNAPSHOT.jar /usr/app/\n\nWORKDIR /usr/app\n\nEXPOSE 8888\n\nENTRYPOINT [\"java\", \"-jar\", \"jhttp-1.0-SNAPSHOT.jar\"]\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 1...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 710, "all_permissive": false }
ansible_role
farWaxon/solution
e25e0cfbcac005858b1e9288a959f7ad23c319fb
0
roles/docker
8,009
[ "no_license" ]
[ { "path": "roles/docker/tasks/Install.yml", "content": "---\n- name: Install utils for docker\"\n package:\n name: \"{{ item }}\"\n state: latest\n update_cache: yes\n with_items:\n - yum-utils\n - device-mapper-persistent-data\n - lvm2\n tags:\n - install_docker\n - deploy\n\n\n-...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 1026, "all_permissive": false }
ansible_role
farWaxon/solution
e25e0cfbcac005858b1e9288a959f7ad23c319fb
0
roles/folderController
8,009
[ "no_license" ]
[ { "path": "roles/folderController/vars/main.yml", "content": "---\n folderDocker: /opt/docker-app-folder\n folderGit: /opt/git-app-folder\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 74 }, { "path": "roles/folderController/tasks/Remove.yml", "content": "--...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 4, "total_bytes": 575, "all_permissive": false }
ansible_role
farWaxon/solution
e25e0cfbcac005858b1e9288a959f7ad23c319fb
0
roles/git
8,009
[ "no_license" ]
[ { "path": "roles/git/vars/main.yml", "content": "---\n packageName: git\n packageLog: Git\n gitRepo: https://github.com/trekawek/jhttp\n gitFolder: /opt/git-app-folder\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 119 }, { "path": "roles/git/tasks/main.yml"...
{ "task_files": 2, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 3, "total_bytes": 423, "all_permissive": false }
ansible_role
MrDvD/dns-dhcp-server
affa1a82e2142d18c1032a20539fd0f539edfff3
0
roles/app
8,009
[ "no_license" ]
[ { "path": "roles/app/templates/compose.j2", "content": "services:\n dns:\n build: dns\n volumes:\n - ./dns/resources/dnsmasq.conf:/etc/dnsmasq.conf:ro\n ports:\n - 53:53/udp\n \n dhcp:\n build: dhcp\n volumes:\n - ./dhcp/resources/dhcpd.conf:/etc/dhcp/dhcpd.conf:ro\n - ./dhcp/r...
{ "task_files": 3, "has_defaults": false, "has_handlers": false, "has_templates": true }
{ "file_count": 8, "total_bytes": 3106, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/cart
8,009
[ "no_license" ]
[ { "path": "roles/cart/tasks/main.yml", "content": "#- name: Include nodejs file\n# ansible.builtin.include_role:\n# name: common\n# tasks_from: nodejs\n\n- name: Install docker\n ansible.builtin.include_role:\n name: common\n tasks_from: docker\n\n- name: Start a container\n containers.podman...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 915, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/catalogue
8,009
[ "no_license" ]
[ { "path": "roles/catalogue/tasks/main.yml", "content": "#- name: Include nodejs\n# ansible.builtin.include_role:\n# name: common\n# tasks_from: nodejs\n#\n#- name: Copy MongoDB repo file\n# ansible.builtin.copy:\n# src: mongodb.repo\n# dest: /etc/yum.repos.d/mongodb.repo\n#\n#- name: Install M...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2171, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/common
8,009
[ "no_license" ]
[ { "path": "roles/common/tasks/main.yml", "content": "- name: set prompt name\n ansible.builtin.shell: set-prompt {{ app_name }}-{{ env }}\n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 85 }, { "path": "roles/common/tasks/systemd_setup.yml", "content": "- na...
{ "task_files": 6, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 6, "total_bytes": 1907, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/frontend
8,009
[ "no_license" ]
[ { "path": "roles/frontend/tasks/main.yml", "content": "#- name: Disable Default Nginx\n# ansible.builtin.shell: dnf module disable nginx -y\n#\n#- name: Enable Nginx 24 Version\n# ansible.builtin.shell: dnf module enable nginx:1.24 -y\n#\n#- name: Install Nginx\n# ansible.builtin.dnf:\n# name: nginx\n...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2916, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/mysql
8,009
[ "no_license" ]
[ { "path": "roles/mysql/tasks/main.yml", "content": "- name: Install mysql server\n ansible.builtin.dnf:\n name: mysql-server\n state: installed\n\n- name: Restart systemctl services\n ansible.builtin.systemd_service:\n name: mysqld\n state: restarted\n enabled: true\n\n- name: Setup MySQL P...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 464, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/payment
8,009
[ "no_license" ]
[ { "path": "roles/payment/tasks/main.yml", "content": "#- name: Install python\n# ansible.builtin.include_role:\n# name: common\n# tasks_from: python\n\n- name: Restart a container\n containers.podman.podman_container:\n name: payment\n image: public.ecr.aws/w8x4g9h7/roboshop-v3/payment\n st...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 1425, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/rabbitmq
8,009
[ "no_license" ]
[ { "path": "roles/rabbitmq/tasks/main.yml", "content": "- name: Copy RabbitMQ Repo file\n ansible.builtin.copy:\n src: rabbitmq.repo\n dest: /etc/yum.repos.d/rabbitmq.repo\n\n- name: Install rabbit mq server\n ansible.builtin.dnf:\n name: rabbitmq-server\n state: installed\n\n- name: Restart sy...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 827, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/redis
8,009
[ "no_license" ]
[ { "path": "roles/redis/tasks/main.yml", "content": "- name: Disable existing redis version\n ansible.builtin.shell: dnf module disable redis -y\n\n- name: Enable redis version 20\n ansible.builtin.shell: dnf module enable redis:7 -y\n\n- name: Install redis\n ansible.builtin.dnf:\n name: redis\n st...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 680, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/shipping
8,009
[ "no_license" ]
[ { "path": "roles/shipping/tasks/main.yml", "content": "#- name: Include maven task\n# ansible.builtin.include_role:\n# name: common\n# tasks_from: maven_setup\n#\n#- name: Install mysql\n# ansible.builtin.dnf:\n# name: mysql\n# state: installed\n#\n#- name: Load SQL schema\n# ansible.builtin....
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 2517, "all_permissive": false }
ansible_role
dsaniset/roboshop-ansible
0740b3e49eac633948120be5aa387691490b9126
0
roles/user
8,009
[ "no_license" ]
[ { "path": "roles/user/tasks/main.yml", "content": "#- name: Include nodejs\n# ansible.builtin.include_role:\n# name: common\n# tasks_from: nodejs\n\n- name: Restart a container\n containers.podman.podman_container:\n name: user\n image: public.ecr.aws/w8x4g9h7/roboshop-v3/user\n state: star...
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 782, "all_permissive": false }
ansible_role
yodzeb/test_ansible
06d6169f6e29cded080d813a75b82f9c61d6a693
0
ansible/acme/function/roles/myrole
8,009
[ "no_license" ]
[ { "path": "ansible/acme/function/roles/myrole/tasks/main.yml", "content": "---\n# tasks file for myrole\n- name: Hello world\n debug:\n msg: \"Hello new World, latest and even new !\"\n \n", "license_type": "no_license", "detected_licenses": [], "size_bytes": 110 } ]
{ "task_files": 1, "has_defaults": false, "has_handlers": false, "has_templates": false }
{ "file_count": 1, "total_bytes": 110, "all_permissive": false }