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 | sangotaro/project-skeleton | 64f0ab7e5cd2576887b22700142abaf5101ef2b7 | 0 | ansible/roles/maven | 297 | [
"no_license"
] | [
{
"path": "ansible/roles/maven/tasks/main.yml",
"content": "---\n- name: install maven repo\n get_url:\n url=http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo\n dest=/etc/yum.repos.d/epel-apache-maven.repo\n\n- name: sed maven repo\n shell: sed -i s/\\$releasever/6/g /etc... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 367,
"all_permissive": false
} |
ansible_role | sangotaro/project-skeleton | 64f0ab7e5cd2576887b22700142abaf5101ef2b7 | 0 | ansible/roles/memcached | 297 | [
"no_license"
] | [
{
"path": "ansible/roles/memcached/tasks/main.yml",
"content": "---\n- name: install memcached\n yum: name=memcached state=present\n\n- name: ensure memcached service is started and enabled at boot\n service: name=memcached state=started enabled=yes\n",
"license_type": "no_license",
"detected_lice... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 183,
"all_permissive": false
} |
ansible_role | sangotaro/project-skeleton | 64f0ab7e5cd2576887b22700142abaf5101ef2b7 | 0 | ansible/roles/mysql | 297 | [
"no_license"
] | [
{
"path": "ansible/roles/mysql/handlers/main.yml",
"content": "---\n- name: start mysqld\n service: name=mysqld state=started\n\n- name: restart mysqld\n service: name=mysqld state=restarted\n\n- name: stop mysqld\n service: name=mysqld state=stopped\n",
"license_type": "no_license",
"detected_li... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 907,
"all_permissive": false
} |
ansible_role | sangotaro/project-skeleton | 64f0ab7e5cd2576887b22700142abaf5101ef2b7 | 0 | ansible/roles/nginx | 297 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx/tasks/main.yml",
"content": "---\n- name: install nginx repo\n yum: name=http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm\n state=present\n\n- name: install nginx\n yum: name=nginx state=present enablerepo=nginx\n",
"licens... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 227,
"all_permissive": false
} |
ansible_role | sangotaro/project-skeleton | 64f0ab7e5cd2576887b22700142abaf5101ef2b7 | 0 | ansible/roles/nodebrew | 297 | [
"no_license"
] | [
{
"path": "ansible/roles/nodebrew/vars/main.yml",
"content": "---\n\nnodebrew:\n node_version: v0.12.7\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 39
},
{
"path": "ansible/roles/nodebrew/templates/nodebrew.sh.j2",
"content": "export PATH=$HOME/.nodebrew/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 751,
"all_permissive": false
} |
ansible_role | sangotaro/project-skeleton | 64f0ab7e5cd2576887b22700142abaf5101ef2b7 | 0 | ansible/roles/pyenv | 297 | [
"no_license"
] | [
{
"path": "ansible/roles/pyenv/handlers/main.yml",
"content": "---\n\n- name: pyenv rehash\n shell: bash -lc \"pyenv rehash\"\n sudo: no\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 70
},
{
"path": "ansible/roles/pyenv/templates/pyenv.sh.j2",
"content": ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 1674,
"all_permissive": false
} |
ansible_role | sangotaro/project-skeleton | 64f0ab7e5cd2576887b22700142abaf5101ef2b7 | 0 | ansible/roles/rbenv | 297 | [
"no_license"
] | [
{
"path": "ansible/roles/rbenv/tasks/main.yml",
"content": "---\n- name: install build depends\n yum: name={{ item }} state=present\n with_items:\n - gcc\n - openssl-devel\n - libyaml-devel\n - readline-devel\n - zlib-devel\n - libffi-devel\n\n- name: update rbenv repo\n git:\n repo=... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2109,
"all_permissive": false
} |
ansible_role | sangotaro/project-skeleton | 64f0ab7e5cd2576887b22700142abaf5101ef2b7 | 0 | ansible/roles/redis | 297 | [
"no_license"
] | [
{
"path": "ansible/roles/redis/tasks/main.yml",
"content": "---\n- name: install redis\n yum: name=redis state=present enablerepo=remi\n\n- name: ensure redis-server service is started and enabled at boot\n service: name=redis state=started enabled=yes\n",
"license_type": "no_license",
"detected_l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 190,
"all_permissive": false
} |
ansible_role | sangotaro/project-skeleton | 64f0ab7e5cd2576887b22700142abaf5101ef2b7 | 0 | ansible/roles/tmux | 297 | [
"no_license"
] | [
{
"path": "ansible/roles/tmux/vars/main.yml",
"content": "---\n\ntmux:\n version: 2.0\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 26
},
{
"path": "ansible/roles/tmux/tasks/tmux.yml",
"content": "---\n- name: download tmux source\n get_url:\n url=http... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 910,
"all_permissive": false
} |
ansible_role | Steeltalon/clean-homework-master | 17d8ed671d371397130f637ec35a253d2f027916 | 0 | roles/config-tower | 297 | [
"no_license"
] | [
{
"path": "roles/config-tower/tasks/create_project.yaml",
"content": "- name: create project\n tower_project:\n organization: \"{{ org_name }}\"\n name: \"{{ proj_name }}\"\n description: \"{{ proj_desc }}\"\n scm_url: \"{{ scm_url }}\"\n scm_branch: \"{{ scm_branch }}\"\n scm_update_on_l... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 9930,
"all_permissive": false
} |
ansible_role | omkarm07/ansible | f22fefb0983db35f6aa132a92b49dce17ebb9744 | 0 | ansible-eks-automation/roles/create_eks_cluster | 297 | [
"no_license"
] | [
{
"path": "ansible-eks-automation/roles/create_eks_cluster/tasks/main.yml",
"content": "---\n# if you try to define a variable that contains a dash, ansible will throw an error saying that variable names cannot contain dashes\n# As our user input has dash '-' it throws error so manupulating user input\n#\n-... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 2853,
"all_permissive": false
} |
ansible_role | omkarm07/ansible | f22fefb0983db35f6aa132a92b49dce17ebb9744 | 0 | ansible-eks-automation/roles/create_master_node | 297 | [
"no_license"
] | [
{
"path": "ansible-eks-automation/roles/create_master_node/tasks/main.yml",
"content": "---\n- name: start an instance and Add EBS\n ec2_instance:\n name: \"master-testing\"\n region: us-east-2\n vpc_subnet_id: subnet-067e20746d2eb0255\n image_id: ami-077e31c4939f6a2f3\n instance_type: m5.2x... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 639,
"all_permissive": false
} |
ansible_role | gaderian/rpi_ansible | 43f8b3aaf444e86092a5ad6496f4308ad9594307 | 0 | roles/rpi_change_user | 297 | [
"no_license"
] | [
{
"path": "roles/rpi_change_user/defaults/main.yml",
"content": "---\n# defaults file for rpi_change_user\nrpi_disable_pi: yes\nrpi_password_path: /tmp/\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 85
},
{
"path": "roles/rpi_change_user/tasks/create_password.y... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 2872,
"all_permissive": false
} |
ansible_role | kujup03/fortinet-azure-deployment | f40bd911c44b9d87a0861a46eeb9e8ece3684923 | 0 | roles/fortigate | 297 | [
"no_license"
] | [
{
"path": "roles/fortigate/tasks/main.yml",
"content": "- name: Deploy FortiGate instances to Azure\n hosts: fortigates\n tasks:\n - name: Create resource group for FortiGate\n azure_rm_resourcegroup:\n name: \"{{ item.resource_group }}\"\n location: \"{{ item.location }}\"\n lo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2415,
"all_permissive": false
} |
ansible_role | kujup03/fortinet-azure-deployment | f40bd911c44b9d87a0861a46eeb9e8ece3684923 | 0 | roles/windows_client | 297 | [
"no_license"
] | [
{
"path": "roles/windows_client/vars/main.yml",
"content": "resource_groups:\n - name: \"ResourceGroup1\"\n username: \"user1\"\n password: \"<PASSWORD>\"\n - name: \"ResourceGroup2\"\n username: \"user2\"\n password: \"<PASSWORD>\"\n - name: \"ResourceGroup3\"\n username: \"user3\"\n p... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1481,
"all_permissive": false
} |
ansible_role | rrana/home-nas | 042e7c805437f340fc186e3b374e17c17431a02d | 0 | roles/docker | 297 | [
"permissive"
] | [
{
"path": "roles/docker/meta/main.yaml",
"content": "---\ngalaxy_info:\n author: rrana\n description: \"Ansible role to install the latest Docker on Ubuntu 24.04.\"\n company: rrana.xyz\n license: MIT\n min_ansible_version: 2.9\n\n platforms:\n - name: Ubuntu\n versions:\n - \"24.04\"\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1331,
"all_permissive": true
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/apps | 297 | [
"no_license"
] | [
{
"path": "post/roles/apps/tasks/setup_archlinux.yml",
"content": "---\n- name: Create user aur_builder\n become: true\n user:\n name: aur_builder\n group: wheel\n- name: give aur_builder sudo access\n become: true\n lineinfile:\n path: /etc/sudoers.d/11-install-aur_builder\n line: \"aur_bui... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3668,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/bspwm | 297 | [
"no_license"
] | [
{
"path": "post/roles/bspwm/tasks/setup_archlinux.yml",
"content": "---\n- name: Install bspwm\n become: true\n become_user: aur_builder\n aur:\n name:\n - bspwm\n - dmenu\n - picom-tryone-git\n state: present\n\n- include_role:\n name: xorg\n\n- include_role:\n name: sxhkd\n",... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 222,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/cpu | 297 | [
"no_license"
] | [
{
"path": "post/roles/cpu/tasks/main.yml",
"content": "---\n- name: get CPU vendor\n set_fact:\n cpu_vendor: 'intel'\n when: ansible_processor | lower is search(\"intel\")\n tags:\n - microcode\n - vendor\n\n- name: get CPU vendor\n set_fact:\n cpu_vendor: 'amd'\n when: ansible_processor | ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1507,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/dwm | 297 | [
"no_license"
] | [
{
"path": "post/roles/dwm/tasks/main.yml",
"content": "---\n- name: git clone dwm (pblgomez)\n ansible.builtin.git:\n repo: <EMAIL>:pblgomez/dwm.git\n dest: \"{{ lookup('env','HOME') }}/.local/share/dwm\"\n tags: dwm\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 163,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/i3wm | 297 | [
"no_license"
] | [
{
"path": "post/roles/i3wm/tasks/setup_archlinux.yml",
"content": "---\n- name: Install i3wm\n aur:\n name:\n - dmenu\n - i3lock\n - i3status\n - picom-tryone-git\n - i3-gaps\n state: present\n become: true\n\n- include_role:\n name: xorg\n\n- include_role:\n name: sxh... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 228,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/laptop | 297 | [
"no_license"
] | [
{
"path": "post/roles/laptop/tasks/main.yml",
"content": "---\n- name: Install tlp\n package:\n name: tlp\n state: present\n tags: laptop\n# - name: Get username\n# shell: who | awk '{print $1}'\n# changed_when: false\n# become: false\n# register: whoami\n# tags: laptop\n# - name: whoami\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1360,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/libvirtd | 297 | [
"no_license"
] | [
{
"path": "post/roles/libvirtd/tasks/main.yml",
"content": "---\n- include_tasks: setup_archlinux.yml\n when: ansible_os_family == 'Archlinux'\n tags: libvirtd\n\n- include_tasks: setup_debian.yml\n when: ansible_os_family == 'Debian'\n tags: libvirtd\n",
"license_type": "no_license",
"detected_... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 819,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/nvidia | 297 | [
"no_license"
] | [
{
"path": "post/roles/nvidia/tasks/setup_archlinux.yml",
"content": "---\n- name: Install nvidia driver\n pacman:\n name:\n - nvidia\n - nvidia-dkms\n - bumblebee\n - bbswitch-dkms\n state: present\n update_cache: true\n become: true\n",
"license_type": "no_license",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 186,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/paru | 297 | [
"no_license"
] | [
{
"path": "post/roles/paru/tasks/main.yml",
"content": "---\n- name: Check for dependencies\n become: true\n pacman:\n name:\n - base-devel\n - cargo\n - git\n state: present\n\n- name: Check for paru\n become: true\n pacman:\n name:\n - paru\n ignore_errors: true\n regist... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 959,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/sway | 297 | [
"no_license"
] | [
{
"path": "post/roles/sway/tasks/setup_archlinux.yml",
"content": "---\n- name: Install sway\n become: true\n package:\n name:\n - sway\n - xorg-server-xwayland\n - alacritty\n - mako\n # - dmenu\n # - picom-tryone-git\n state: present\n# - include_role:\n# name: xorg\n\n# ... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 411,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/sxhkd | 297 | [
"no_license"
] | [
{
"path": "post/roles/sxhkd/meta/main.yml",
"content": "---\ndependencies:\n - kewlfft.aur\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 36
},
{
"path": "post/roles/sxhkd/tasks/main.yml",
"content": "---\n- name: Install sxhkd\n aur:\n name:\n -... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 117,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/vscodium_extensions | 297 | [
"no_license"
] | [
{
"path": "post/roles/vscodium_extensions/tasks/main.yml",
"content": "---\n- name: Install VSCodium extensions\n shell: vscodium --install-extension {{ item }}\n loop:\n - jaspernorth.vscode-pigments\n - keesschollaart.vscode-home-assistant\n - platformio.platformio-ide\n - dracula-theme.them... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 260,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/xorg | 297 | [
"no_license"
] | [
{
"path": "post/roles/xorg/tasks/setup_archlinux.yml",
"content": "---\n- name: Install xorg\n package:\n name:\n #- brightnessctl\n - gnu-free-fonts\n - sxhkd\n - xf86-video-intel\n - xorg-server\n - xorg-xbacklight\n - xorg-xinit\n - xorg-xinput\n - xorg-xk... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 351,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/yadm | 297 | [
"no_license"
] | [
{
"path": "post/roles/yadm/tasks/main.yml",
"content": "---\n- name: Create user aur_builder\n become: true\n user:\n name: aur_builder\n group: wheel\n- name: give aur_builder sudo access\n become: true\n lineinfile:\n path: /etc/sudoers.d/11-install-aur_builder\n line: \"aur_builder ALL=(A... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 881,
"all_permissive": false
} |
ansible_role | pblgomez/arch_laptop | b495bef2860fe1962b0b6f9965daa6cda307c766 | 2 | post/roles/zsh | 297 | [
"no_license"
] | [
{
"path": "post/roles/zsh/tasks/main.yml",
"content": "---\n- include_tasks: setup_archlinux.yml\n when: ansible_os_family == 'Archlinux'\n tags: zsh\n\n- include_tasks: setup_debian.yml\n when: ansible_os_family == 'Debian'\n tags: zsh\n",
"license_type": "no_license",
"detected_licenses": [],
... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 648,
"all_permissive": false
} |
ansible_role | muroya2355/aws_performance_test | 8a3c7385ea290d0270ae9f28c9301500986147ac | 0 | 02_Ansible/roles/build_ap | 297 | [
"no_license"
] | [
{
"path": "02_Ansible/roles/build_ap/tasks/main.yml",
"content": "# ソフトウェアダウンロード、配置\n- name: ソースコードがあるか確認\n stat: path=/home/ec2-user/terasoluna-tourreservation/README.md\n register: sourcecode_files\n\n- name: ソースコードを取得\n ansible.builtin.git:\n repo: https://github.com/terasolunaorg/terasoluna-tourre... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1562,
"all_permissive": false
} |
ansible_role | muroya2355/aws_performance_test | 8a3c7385ea290d0270ae9f28c9301500986147ac | 0 | 02_Ansible/roles/cloudwatch_agent | 297 | [
"no_license"
] | [
{
"path": "02_Ansible/roles/cloudwatch_agent/tasks/main.yml",
"content": "- name: cloudwatch agent のインストール\n yum: name=amazon-cloudwatch-agent state=latest\n\n- name: 設定ファイルの配置\n copy:\n src: ../files/amazon-cloudwatch-agent.json\n dest: /opt/aws/amazon-cloudwatch-agent/etc/amazon-cloudwatch-agent.j... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 606,
"all_permissive": false
} |
ansible_role | muroya2355/aws_performance_test | 8a3c7385ea290d0270ae9f28c9301500986147ac | 0 | 02_Ansible/roles/corretto | 297 | [
"no_license"
] | [
{
"path": "02_Ansible/roles/corretto/tasks/main.yml",
"content": "# Javaがインストールされているか確認\n- name: javaの存在確認\n shell: which java\n register: java_which\n failed_when: java_which.rc not in [0, 1]\n\n\n# javaがインストールされていない場合, Javaをインストール\n- name: Amazon Corretto 11のインストール\n yum: name=java-11-amazon-corretto ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 837,
"all_permissive": false
} |
ansible_role | muroya2355/aws_performance_test | 8a3c7385ea290d0270ae9f28c9301500986147ac | 0 | 02_Ansible/roles/deploy_ap | 297 | [
"no_license"
] | [
{
"path": "02_Ansible/roles/deploy_ap/tasks/main.yml",
"content": "- name: warファイルを取得\n copy:\n src: /home/ec2-user/terasoluna-tourreservation/terasoluna-tourreservation-web/target/terasoluna-tourreservation-web.war\n dest: /opt/tomcat/webapps\n mode: 0755",
"license_type": "no_license",
"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 195,
"all_permissive": false
} |
ansible_role | muroya2355/aws_performance_test | 8a3c7385ea290d0270ae9f28c9301500986147ac | 0 | 02_Ansible/roles/golang | 297 | [
"no_license"
] | [
{
"path": "02_Ansible/roles/golang/tasks/main.yml",
"content": "- name: yum install golang \n yum: name=golang state=latest",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 59
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 59,
"all_permissive": false
} |
ansible_role | muroya2355/aws_performance_test | 8a3c7385ea290d0270ae9f28c9301500986147ac | 0 | 02_Ansible/roles/jmeter-client | 297 | [
"no_license"
] | [
{
"path": "02_Ansible/roles/jmeter-client/tasks/main.yml",
"content": "- name: Windows ファイアウォールの無効化\n win_firewall:\n state: disabled\n profiles:\n - Domain\n - Private\n - Public\n\n- name: Amazon Corretto のインストーラを取得\n ansible.windows.win_package:\n path: https://corretto.aws/downloads/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1102,
"all_permissive": false
} |
ansible_role | muroya2355/aws_performance_test | 8a3c7385ea290d0270ae9f28c9301500986147ac | 0 | 02_Ansible/roles/jmeter-server | 297 | [
"no_license"
] | [
{
"path": "02_Ansible/roles/jmeter-server/tasks/main.yml",
"content": "# ソフトウェアダウンロード、配置\n- name: JMeterインストーラがあるか確認\n stat: path=/tmp/apache-jmeter-5.4.1.tgz\n register: jmeter_tgz\n\n- name: JMeterのインストーラを取得\n get_url:\n url: https://dlcdn.apache.org//jmeter/binaries/apache-jmeter-5.4.1.tgz\n des... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1379,
"all_permissive": false
} |
ansible_role | muroya2355/aws_performance_test | 8a3c7385ea290d0270ae9f28c9301500986147ac | 0 | 02_Ansible/roles/maven | 297 | [
"no_license"
] | [
{
"path": "02_Ansible/roles/maven/tasks/main.yml",
"content": "# ソフトウェアダウンロード、配置\n- name: Mavenインストーラがあるか確認\n stat: path=/tmp/apache-maven-3.8.3-bin.tar.gz\n register: maven_targz\n\n- name: Mavenのインストーラを取得\n get_url:\n url: https://archive.apache.org/dist/maven/maven-3/3.8.3/binaries/apache-maven-3.8... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1164,
"all_permissive": false
} |
ansible_role | muroya2355/aws_performance_test | 8a3c7385ea290d0270ae9f28c9301500986147ac | 0 | 02_Ansible/roles/tomcat | 297 | [
"no_license"
] | [
{
"path": "02_Ansible/roles/tomcat/tasks/main.yml",
"content": "# Tomcatがインストールされ、起動しているか確認\n# リターンコードが0:起動済み。3:インストール済みで停止。4:未インストール\n- name: Tomcat起動状態確認\n shell: systemctl status tomcat\n register: tomcat_status\n failed_when: tomcat_status.rc not in [0, 3, 4]\n\n# Tomcatユーザ作成\n- name: Tomcatグループの作成\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2084,
"all_permissive": false
} |
ansible_role | GinaGrg1/from-eventstore-to-bigquery | 68626d1de8c460534849466f2fff1e3dd7da23c1 | 0 | playbooks/roles/data-river | 297 | [
"no_license"
] | [
{
"path": "playbooks/roles/data-river/tasks/main.yml",
"content": "---\n\n- name: Load variables\n include_vars:\n file: \"{{ item }}\"\n with_items:\n - \"{{ library_path }}/group_vars/all\"\n - \"vars/env/{{ env }}.yml\"\n\n- name: Run nomad job\n include_role:\n name: nomad-job\n vars:\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 5008,
"all_permissive": false
} |
ansible_role | mr-kaveh/plays | ad92e0e0b19add3c0adfd21e85c1057c8366aa02 | 0 | day3/2-roles/demo/roles/myrole | 302 | [
"no_license"
] | [
{
"path": "day3/2-roles/demo/roles/myrole/tasks/main.yml",
"content": "---\n - name: name the task\n template:\n .....\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 54
},
{
"path": "day3/2-roles/demo/roles/myrole/templates/main.j2",
"content": "thi... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 120,
"all_permissive": false
} |
ansible_role | devops-serge/ansible-install-wordpress | 557ea963de1d9b0ad4125f4a6433c84864423a9c | 1 | roles/nginx | 302 | [
"no_license"
] | [
{
"path": "roles/nginx/vars/main.yaml",
"content": "configs:\n nginx.conf: /etc/nginx/nginx.conf\n mysite: /etc/nginx/sites-enabled/mysite",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 86
},
{
"path": "roles/nginx/tasks/main.yaml",
"content": "---\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 522,
"all_permissive": false
} |
ansible_role | devops-serge/ansible-install-wordpress | 557ea963de1d9b0ad4125f4a6433c84864423a9c | 1 | roles/php | 302 | [
"no_license"
] | [
{
"path": "roles/php/tasks/main.yaml",
"content": "---\n- name: Install php packages\n ansible.builtin.apt:\n name: \"{{ item }}\"\n state: present\n install_recommends: no\n loop: \"{{ packages }}\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 149
},
{
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 286,
"all_permissive": false
} |
ansible_role | devops-serge/ansible-install-wordpress | 557ea963de1d9b0ad4125f4a6433c84864423a9c | 1 | roles/server | 302 | [
"no_license"
] | [
{
"path": "roles/server/tasks/main.yaml",
"content": "---\n- name: Update all packages\n ansible.builtin.apt:\n update_cache: yes\n- name: Upgrade all packages\n ansible.builtin.apt:\n upgrade: yes\n notify:\n - \"Restart server\"\n - \"Wait for server to restart\"\n",
"license_type": "no... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 468,
"all_permissive": false
} |
ansible_role | devops-serge/ansible-install-wordpress | 557ea963de1d9b0ad4125f4a6433c84864423a9c | 1 | roles/wordpress | 302 | [
"no_license"
] | [
{
"path": "roles/wordpress/tasks/main.yaml",
"content": "---\n- name: Create directory for site\n ansible.builtin.file:\n path: /var/www/mydomain.com\n state: directory\n owner: www-data\n group: www-data\n mode: '0755'\n\n- name: Check the file \n ansible.builtin.stat:\n path: /var/www/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1060,
"all_permissive": false
} |
ansible_role | InformaticsMatters/fragmentor-k8s-orchestration | ec24ad32a1db17d080ada180b00c262a9ce33543 | 0 | roles/player | 302 | [
"no_license"
] | [
{
"path": "roles/player/tasks/main.yaml",
"content": "---\n\n- name: Include prep\n include_tasks: prep.yaml\n\n- name: Load parameters from {{ fp_parameter_file }}\n include_vars:\n file: \"{{ fp_parameter_file }}\"\n\n# A kubernetes host and an API key must be set.\n# Either environment variables wil... | {
"task_files": 6,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 16,
"total_bytes": 28728,
"all_permissive": false
} |
ansible_role | igrakhimov/ansible-templates | bb01a4e586845c642ef3d3e347043bf66c9c9ced | 0 | demo-long-running-playbook/roles/common | 302 | [
"no_license"
] | [
{
"path": "demo-long-running-playbook/roles/common/vars/main.yml",
"content": "---\ndocker_version: \"{{ lookup('env', 'INPUT_DOCKER_VERSION')|default('18.04',true ) }}\"\nswapfile_location: \"/var/swap.space\"\nswapfile_size: 4096\n",
"license_type": "no_license",
"detected_licenses": [],
"size... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2709,
"all_permissive": false
} |
ansible_role | psbrandt/homepi-ansible | 1b9ff08746c5057567f90957af8025517e875947 | 0 | roles/raspbian-docker | 302 | [
"no_license"
] | [
{
"path": "roles/raspbian-docker/tasks/main.yml",
"content": "---\n- name: 'Update APT package cache'\n action: apt update_cache=yes\n\n- name: 'Install dependencies'\n apt:\n pkg: \"{{ item }}\"\n state: latest\n with_items:\n - apt-transport-https\n - ca-certificates\n\n- name: 'Add key'\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 863,
"all_permissive": false
} |
ansible_role | sdmitriev1/workstation | 6ad4252b3fdaf81908c388ae3a25a4203cac3ea6 | 0 | roles/packages | 302 | [
"permissive"
] | [
{
"path": "roles/packages/tasks/hashicorp.yml",
"content": "---\n- name: Install binary packages from Hashicorp\n hashicorp_package:\n name: \"{{ item }}\"\n state: present\n become: true\n when: not packages_hashicorp_upgrade | bool\n loop: \"{{ packages_hashicorp }}\"\n loop_control:\n label... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 4072,
"all_permissive": true
} |
ansible_role | dvoong/data_science_jobs | ceb561cdb98acb6b91c6d7caa9dbe9bd2485fa5d | 0 | deployment/roles/common | 302 | [
"no_license"
] | [
{
"path": "deployment/roles/common/tasks/main.yml",
"content": "---\n# file: roles/common/tasks/main.yml\n\n- name: Create project dir\n file: path=\"{{ project_dir }}\" owner=\"{{ ansible_ssh_user }}\" group=root mode=0775 state=directory\n sudo: True\n\n- name: Install git\n apt: pkg=git update_cache=y... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 435,
"all_permissive": false
} |
ansible_role | dvoong/data_science_jobs | ceb561cdb98acb6b91c6d7caa9dbe9bd2485fa5d | 0 | deployment/roles/django | 302 | [
"no_license"
] | [
{
"path": "deployment/roles/django/handlers/main.yml",
"content": "- name: restart scraping\n service: name=scraping state=restarted\n sudo: True\n ",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 81
},
{
"path": "deployment/roles/django/tasks/main.yml",
"co... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1590,
"all_permissive": false
} |
ansible_role | dvoong/data_science_jobs | ceb561cdb98acb6b91c6d7caa9dbe9bd2485fa5d | 0 | deployment/roles/gunicorn | 302 | [
"no_license"
] | [
{
"path": "deployment/roles/gunicorn/handlers/main.yml",
"content": "- name: restart gunicorn\n service: name={{ gunicorn_service_name }} state=restarted\n sudo: True",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 97
},
{
"path": "deployment/roles/gunicorn/vars/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 676,
"all_permissive": false
} |
ansible_role | dvoong/data_science_jobs | ceb561cdb98acb6b91c6d7caa9dbe9bd2485fa5d | 0 | deployment/roles/virtualenv | 302 | [
"no_license"
] | [
{
"path": "deployment/roles/virtualenv/vars/main.yml",
"content": "venv_dir: \"{{ project_dir }}/virtualenv\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 41
},
{
"path": "deployment/roles/virtualenv/tasks/main.yml",
"content": "---\n# file: roles/virtuale... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 195,
"all_permissive": false
} |
ansible_role | afyazici/ansible-kvm | 8e6222418ddb2f109548be0a8ef68882703c5dde | 0 | roles/kvm_provision | 301 | [
"no_license"
] | [
{
"path": "roles/kvm_provision/tasks/create_vm.yml",
"content": "# create_vm.yml\n\n- name: Check if VM already exists\n set_fact:\n vm_exists: \"{{ vm_name in existing_vms.list_vms }}\"\n\n- name: Download base image\n get_url:\n url: \"{{ base_image_url }}\"\n dest: \"/tmp/{{ base_image_name }}... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2362,
"all_permissive": false
} |
ansible_role | victorock/ansible_code | c659dc461498f96c68f1c49513547f2b26d59cc5 | 0 | roles/k8s | 301 | [
"no_license"
] | [
{
"path": "roles/k8s/templates/secrets/home-ssh.yaml.j2",
"content": "---\r\napiVersion: v1\r\nkind: Secret\r\nmetadata:\r\n name: {{ k8s_resources.user }}-home-ssh\r\n labels:\r\n {{ k8s_labels | indent 4 | trim }}\r\ndata:\r\n authorized_keys: |-\r\n {{ k8s_secrets.authorized_keys | b64enc }}\r\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 5955,
"all_permissive": false
} |
ansible_role | lukaku3/ansible-sample | 36ef2b517c423a7fb76a54c27f2a5688318aff6d | 0 | roles/apache2 | 301 | [
"no_license"
] | [
{
"path": "roles/apache2/tasks/main.yml",
"content": "---\r\n- name: Install a list of packages\r\n apt:\r\n pkg:\r\n - apache2\r\n - apache2-utils\r\n - apache2-ssl-dev\r\n\r\n- name: install 000-default.conf\r\n copy: src=files/etc/apache2/conf-available/000-default.conf dest=/etc/apache2/co... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 355,
"all_permissive": false
} |
ansible_role | lukaku3/ansible-sample | 36ef2b517c423a7fb76a54c27f2a5688318aff6d | 0 | roles/httpd | 301 | [
"no_license"
] | [
{
"path": "roles/httpd/tasks/main.yml",
"content": "---\r\n- name: yum update\r\n shell: yum update\r\n\r\n- name: Prevent multiple packages from being updated\r\n community.general.yum_versionlock:\r\n state: present\r\n name:\r\n - httpd\r\n\r\n- name: install 000-default.conf\r\n copy: src=fi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 421,
"all_permissive": false
} |
ansible_role | lukaku3/ansible-sample | 36ef2b517c423a7fb76a54c27f2a5688318aff6d | 0 | roles/postgresql_ubuntu | 301 | [
"no_license"
] | [
{
"path": "roles/postgresql_ubuntu/tasks/main.yml",
"content": "---\r\n- name: Install a list of packages\r\n apt:\r\n pkg:\r\n - postgresql\r\n - postgresql-contrib\r\n\r\n# sudo -u postgres psql\r\n# CREATE ROLE vagrant LOGIN PASSWORD '<PASSWORD>';\r\n# CREATE DATABASE db_example OWNER = vagrant... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 457,
"all_permissive": false
} |
ansible_role | lukaku3/ansible-sample | 36ef2b517c423a7fb76a54c27f2a5688318aff6d | 0 | roles/ubuntu | 301 | [
"no_license"
] | [
{
"path": "roles/ubuntu/tasks/main.yml",
"content": "---\r\n- include: 20.04.yml\r\n#- include: inc2.yml\r\n\r\n\r\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 53
},
{
"path": "roles/ubuntu/tasks/20.04.yml",
"content": "- name: Run the equivalent of \"apt-... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 262,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/actors | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/actors/templates/kube/api/configmap.yml",
"content": "apiVersion: v1\nkind: ConfigMap\nmetadata:\n name: actors-environment-vars\ndata:\n abaco_host_path: \"/home/apim/{{ actors_host_path }}\"\n _abaco_secret: \"123\"\n TAS_ROLE_ACCT: \"{{ actors_tas_role_acct }}\"\n TAS_ROLE... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 29,
"total_bytes": 39398,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/admin | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/admin/templates/docker/verification/meta-test",
"content": "#!/bin/bash\n\n\nsource functions\ngettoken\n\ncurl -H X-Tapis-Token:$tok {{admin_devtenant_url}}/v3/meta/hello \n\n\ncurl {{admin_devtenant_url}}/v3/meta/ready",
"license_type": "no_license",
"detected_licenses":... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 43,
"total_bytes": 27076,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/apps | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/apps/templates/kube/apps-config.yml",
"content": "apiVersion: v1\nkind: ConfigMap\nmetadata: \n name: apps-config\ndata:\n \"service_site_url\": \"{{apps_service_url}}\"\n \"service_tenant_id\": \"{{apps_service_tenant_id}}\"\n \"site_id\": \"{{apps_service_site_id}}\"\n \"se... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 30,
"total_bytes": 18117,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/authenticator | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/authenticator/templates/kube/authenticator-config.yml",
"content": "apiVersion: v1\nkind: ConfigMap\nmetadata:\n name: authenticator-config\ndata:\n LDAP_DOMAIN: tapis\n LDAP_ORGANISATION: Tapis\n authenticator-config.json: |-\n {\n \"primary_site_admin_tenant_base_url... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 25,
"total_bytes": 12015,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/baseburnup | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/baseburnup/tasks/generate.yml",
"content": "---\n\n- name: baseburnup tree\n include_role:\n name: template-filetree\n vars:\n calling_rolename: baseburnup\n tree_name: \"\"\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 133
},
... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 15880,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/files | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/files/templates/kube/postgres_16/files-init-db-sh",
"content": "#!/bin/bash\n# Script to initialize Files service DB using psql\n# Create database, user and schema\n# Postgres password must be set in env var PG_PASSWORD\n\nPG_HOST=${DB_HOST}\nPG_USER=${DB_USERNAME}\nPG_DATABASE=${... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 40,
"total_bytes": 41691,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/get_defaults | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/get_defaults/tasks/main.yml",
"content": "---\n\n# Ensure global vars are defined and checked\n\n- name: Test that important variables are present and not empty\n assert:\n that:\n - tapisdir != ''\n - tapisdatadir != ''\n - components_to_deploy != ''\n - g... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3352,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/globus-proxy | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/globus-proxy/templates/kube/burndown",
"content": "#!/bin/bash\n\nkubectl delete -f globus-proxy-config.yml\nkubectl delete -f deploy.yml \n\n\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 88
},
{
"path": "playbooks/roles/globus-pro... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 15,
"total_bytes": 3477,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/jobs | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/jobs/templates/kube/readers/jobrdr-Recovery.yml",
"content": "apiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: jobs-rdr-recovery\nspec:\n selector:\n matchLabels:\n app: jobrdr\n template:\n metadata:\n labels:\n app: jobrdr\n spec:\n init... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 41,
"total_bytes": 31524,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/meta | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/meta/templates/docker/burndown",
"content": "#!/bin/bash\n\necho \"burndown meta:\"\n\ndocker compose down\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 56
},
{
"path": "playbooks/roles/meta/templates/kube/mongo/service.yml",
"con... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 34,
"total_bytes": 20004,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/mlhub | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/mlhub/templates/kube/burndown",
"content": "#!/bin/bash\n\nhere=`pwd`\n\ncd $here/traefik\n./burndown\n\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 55
},
{
"path": "playbooks/roles/mlhub/templates/kube/burnup",
"content": "#!/... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 561,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/monitoring | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/monitoring/tasks/generate.yml",
"content": "---\n\n\n- name: monitoring tree\n include_role:\n name: template-filetree\n vars:\n calling_rolename: monitoring\n tree_name: monitoring\n\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes":... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 18,
"total_bytes": 18511,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/nginx-custom-locations | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/nginx-custom-locations/tasks/main.yml",
"content": "---\n\n- name: create proxy dir\n ansible.builtin.file:\n state: directory\n path: \"{{ tapisdir }}/proxy\"\n\n- name: create locations dir\n ansible.builtin.file:\n state: directory\n path: \"{{ tapisdir }}/proxy/l... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 17189,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/notifications | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/notifications/templates/kube/dispatcher/deploy.yml",
"content": "apiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: notifications-dispatcher\nspec:\n replicas: 1\n selector:\n matchLabels:\n app: notifications-dispatcher\n template:\n metadata:\n labels:\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 33,
"total_bytes": 23066,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/pgrest | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/pgrest/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - generate-pgrest\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 74
},
{
"path": "playbooks/roles/pgrest/templates/kube/burnup",
"conte... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 14,
"total_bytes": 5837,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/pods | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/pods/templates/kube/traefik-pvc.yml",
"content": "kind: PersistentVolumeClaim\napiVersion: v1\nmetadata:\n name: pods-traefik-vol01\nspec:\n accessModes:\n - ReadWriteOnce\n storageClassName: {{ pods_storage_class }}\n resources:\n requests:\n storage: 10Gi\n\n---\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 23,
"total_bytes": 21700,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/proxy | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/proxy/defaults/main/images.yml",
"content": "proxy_nginx_image: nginx:1.23.3\nproxy_site_router_api_image: tapis/site-router-api:{{ proxy_site_router_api_version }}\nproxy_redis_image: redis:6.2\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 1... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 25,
"total_bytes": 18475,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/security | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/security/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\n roles:\n - generate-security\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 76
},
{
"path": "playbooks/roles/security/templates/kube/postgres_16/b... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 30,
"total_bytes": 19151,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/streams | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/streams/templates/docker/chords/tapis_chords_start.sh",
"content": "#!/bin/bash\n\n# Get the CHORDS rails application server running.\n#\n# Set RAILS_ENV to development or production. If not set,\n# it will default to production.\n#\n# Set CHORDS_ADMIN_PW to the database password.... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 34,
"total_bytes": 34276,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/systems | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/systems/templates/kube/migrate_postgres/migrate.env",
"content": "#\n# Settings for migrateDb.sh\n#\n# Directory and deployment names\nexport PG_DIR_OLD=postgres\nexport PG_DIR_NEW=postgres_16\nexport PG_DEPLOY_OLD=systems-postgres\nexport PG_DEPLOY_NEW=systems-postgres-16\n# DB c... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 32,
"total_bytes": 20449,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/tapisui | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/tapisui/tasks/generate.yml",
"content": "---\n\n- name: tapisui tree\n include_role:\n name: template-filetree\n vars:\n calling_rolename: tapisui\n tree_name: tapisui\n\n\n\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 135
},
... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 1573,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/template-filetree | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/template-filetree/tasks/main.yml",
"content": "---\n\n- name: 'create {{ calling_rolename }} base dir: {{ tapisdir }}/{{ tree_name }}'\n ansible.builtin.file:\n state: directory\n path: '{{ tapisdir }}/{{ tree_name }}'\n\n- name: 'ensure directory structure exists for {{ ca... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 942,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/tenants | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/tenants/templates/kube/api/burnup",
"content": "#!/bin/bash\n\n# first ensure that the ./postgres/burnup script has been run.\n\n#kubectl create configmap tenantsnewdb --from-file=new_db.sql\n\nkubectl apply -f service.yml\nkubectl apply -f api.yml \n#kubectl apply -f util.yml \n"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 20,
"total_bytes": 9474,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/test-resources | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/test-resources/templates/docker/burnup",
"content": "#!/bin/bash\n\necho \"burnup test-resources:\"\n\nmkdir -p {{ tapisdatadir }}/test-resources\n\n#docker compose up -d\n\nSCRIPT_DIR=$(dirname $0)\n\nSERVICE_CODE=\"files\"\n\nIRODS_CONTAINER=\"irods-1\"\nIRODS_ADMIN_USER=\"rods\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 20,
"total_bytes": 12307,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/tokens | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/tokens/defaults/main/vars.yml",
"content": "---\n\ntokens_service_url: '{{ global_service_url }}'\ntokens_service_site_id: '{{ global_site_id }}'\ntokens_use_sk: yes\ntokens_log_level: 'INFO'\ntokens_show_traceback: false\ntokens_use_allservices_password: false\ntokens_tenants: [\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 14,
"total_bytes": 3901,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/vault | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/vault/templates/docker/burnup",
"content": "#!/bin/bash\n\necho \"burnup vault:\"\n\n\n\nmkdir -p {{ tapisdatadir }}/vault/data\n\nMYUID=`id -u`\ndocker run -it --rm -v {{ tapisdatadir }}/vault:/vault {{ vault_util_image }} chown $MYUID /vault\n\ndocker run -it --rm -v {{ tapisdat... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 17,
"total_bytes": 20340,
"all_permissive": false
} |
ansible_role | tapis-project/tapis-deployer | f25809f3d358c202196ece8890d72a9cbce544a5 | 3 | playbooks/roles/workflows | 301 | [
"no_license"
] | [
{
"path": "playbooks/roles/workflows/templates/kube/rabbitmq/pvc.yml",
"content": "kind: PersistentVolumeClaim\napiVersion: v1\nmetadata:\n name: workflows-rabbitmq-pvc\nspec:\n accessModes:\n - ReadWriteOnce\n storageClassName: {{workflows_storage_class}}\n resources:\n requests:\n storage: ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 30,
"total_bytes": 17521,
"all_permissive": false
} |
ansible_role | todaygood/k8s-lab | 393dd34d55c4c18976c63c5e69ce1884270eb62b | 0 | deploy/target-init/roles/common | 301 | [
"no_license"
] | [
{
"path": "deploy/target-init/roles/common/tasks/install-rpm.yml",
"content": "---\n\n- name: install rpm packages\n yum: name={{item}} state=present\n with_items: \n - lvm2\n - lrzsz\n - rsync\n - ntp \n - chrony\n - nfs-utils\n - ipmitool\n - gcc \n - wget\n - curl\n - t... | {
"task_files": 8,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 18,
"total_bytes": 6897,
"all_permissive": false
} |
ansible_role | triumph/ansible_playbooks | 236b792e8de60144b2229a4f613bba7fad4d38ca | 0 | LTJF/roles/update | 301 | [
"no_license"
] | [
{
"path": "LTJF/roles/update/handlers/main.yml",
"content": "- name: Start Service\n shell: supervisorctl start {{ services_name }}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 71
},
{
"path": "LTJF/roles/update/vars/main.yml",
"content": "down_url: http:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 890,
"all_permissive": false
} |
ansible_role | nadimm90/automation | 91fc62f60e2edcabe068c40ad530b166725c6c42 | 0 | Roles/vpc | 301 | [
"no_license"
] | [
{
"path": "Roles/vpc/tasks/main.yaml",
"content": "---\n- name: Generate SSH keys\n shell: ssh-keygen -b 4096 -t rsa -f ~/.ssh/nadim -q -N \"\"\n args:\n creates: ~/.ssh/nadim\n\n- name: Import public key to aws \n command: aws ec2 --profile import-key-pair --key-name k8s-key --public-key-material \"$... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 706,
"all_permissive": false
} |
ansible_role | serhiihomeniuk/azurecaptest | 6c92e1064aa9e655277f71cb4d198a49966599d4 | 0 | Topic 7 - Azure IaC/Task05/ansible-azure/roles/nginx-config | 301 | [
"no_license"
] | [
{
"path": "Topic 7 - Azure IaC/Task05/ansible-azure/roles/nginx-config/tasks/main.yml",
"content": "- name: Install Nginx\n apt:\n name: nginx\n state: present\n update_cache: yes\n become: yes \n\n- name: Start and enable Nginx\n service:\n name: nginx\n state: started\n enabled: ye... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 612,
"all_permissive": false
} |
ansible_role | fbimoura/RH294 | dc110261386e3a72bdaa98617e0b7e6d7953ad4e | 0 | chapter8/roles/motd | 301 | [
"no_license"
] | [
{
"path": "chapter8/roles/motd/templates/motd.j2",
"content": "If you are not authorized to login to {{ ansible_facts.hostname }} you will grow warts!\n\nPlease contact {{ owner }} for access.\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 128
},
{
"path": "chap... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 846,
"all_permissive": false
} |
ansible_role | juliiatretyakova/ansible | 2a5d50725bae49ad4a781b53c58de379fe4dcb3f | 0 | roles/creating_a_empty_file | 301 | [
"no_license"
] | [
{
"path": "roles/creating_a_empty_file/handlers/main.yml",
"content": "---\n# handlers file for roles/creating_a_empty_file\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 52
},
{
"path": "roles/creating_a_empty_file/defaults/main.yml",
"content": "---\n# def... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 445,
"all_permissive": false
} |
ansible_role | juliiatretyakova/ansible | 2a5d50725bae49ad4a781b53c58de379fe4dcb3f | 0 | roles/defining_variable | 301 | [
"no_license"
] | [
{
"path": "roles/defining_variable/tasks/main.yml",
"content": "---\n# tasks file for roles/defining_variable\n\n- name: Print hostnames together with registered variables\n debug:\n msg: \"Hostname {{ inventory_hostname }} have the 'path' variable value is {{ path }}\"\n ",
"license_type": "no_lic... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 449,
"all_permissive": false
} |
ansible_role | cp-20/asterion-ansible | 85e886321dee31fc9866f09291ac0e4b8234462b | 1 | project/roles/bot-yumi | 301 | [
"no_license"
] | [
{
"path": "project/roles/bot-yumi/templates/docker-compose.yaml.j2",
"content": "version: '3'\n\nservices:\n bot:\n container_name: bot\n build:\n context: .\n dockerfile: ./Dockerfile\n restart: always\n environment:\n GEMINI_API_KEY: ${GEMINI_API_KEY}\n TRAQ_BOT_ID: ${TRAQ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1219,
"all_permissive": false
} |
ansible_role | cp-20/asterion-ansible | 85e886321dee31fc9866f09291ac0e4b8234462b | 1 | project/roles/bun | 301 | [
"no_license"
] | [
{
"path": "project/roles/bun/tasks/main.yaml",
"content": "---\n- name: Install Bun\n npm:\n name: bun\n global: yes\n state: present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 80
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 80,
"all_permissive": false
} |
ansible_role | cp-20/asterion-ansible | 85e886321dee31fc9866f09291ac0e4b8234462b | 1 | project/roles/common | 301 | [
"no_license"
] | [
{
"path": "project/roles/common/tasks/main.yaml",
"content": "---\n- name: apt update & upgrade\n apt:\n update_cache: yes\n upgrade: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 79
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 79,
"all_permissive": false
} |
ansible_role | cp-20/asterion-ansible | 85e886321dee31fc9866f09291ac0e4b8234462b | 1 | project/roles/docker | 301 | [
"no_license"
] | [
{
"path": "project/roles/docker/tasks/main.yaml",
"content": "---\n- name: Uninstall old docker\n apt:\n name:\n - docker.io\n - docker-doc\n - docker-compose\n - docker-compose-v2\n - podman-docker\n - containerd\n - runc\n state: absent\n\n- name: Install packages... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1130,
"all_permissive": false
} |
ansible_role | cp-20/asterion-ansible | 85e886321dee31fc9866f09291ac0e4b8234462b | 1 | project/roles/grafana | 301 | [
"no_license"
] | [
{
"path": "project/roles/grafana/tasks/main.yaml",
"content": "---\n# なぜかエラーが出るのでコメントアウトしとく\n# - name: Instal required pip packages\n# pip:\n# name: requests\n\n# - name: Create a Grafana Cloud stack\n# grafana.grafana.cloud_stack:\n# name: asterion\n# stack_slug: asterion\n# cloud_api_k... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 5615,
"all_permissive": false
} |
ansible_role | cp-20/asterion-ansible | 85e886321dee31fc9866f09291ac0e4b8234462b | 1 | project/roles/obsidian-livesync | 301 | [
"no_license"
] | [
{
"path": "project/roles/obsidian-livesync/files/local.ini",
"content": "[couchdb]\nsingle_node=true\nmax_document_size = 50000000\n\n[chttpd]\nrequire_valid_user = true\nmax_http_request_size = 4294967296\nenable_cors = false\n\n[chttpd_auth]\nrequire_valid_user = true\nauthentication_redirect = /_utils/se... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1343,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.