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 | opennetworkinglab/onos | dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9 | 1,237 | tools/dev/vagrant/ansible/roles/tutorial-sdnip | 170 | [
"no_license"
] | [
{
"path": "tools/dev/vagrant/ansible/roles/tutorial-sdnip/tasks/main.yml",
"content": "---\n#\n# Adds sdn-ip tutorial specific configurations\n#\n- name: Installing Prerequisites\n apt:\n name: \"{{ item }}\"\n force: yes\n update_cache: yes\n with_items: \"{{ tutorials.sdnip.packages }}\"\n\n- n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 930,
"all_permissive": false
} |
ansible_role | opennetworkinglab/onos | dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9 | 1,237 | tools/dev/vagrant/ansible/roles/user-sdn | 170 | [
"no_license"
] | [
{
"path": "tools/dev/vagrant/ansible/roles/user-sdn/tasks/main.yml",
"content": "---\n#\n# Creates the user sdn with password rocks and makes it sudoer with no password required.\n#\n- name: Creating user sdn\n user:\n name: sdn\n password: <PASSWORD>\n generate_ssh_key: yes\n ssh_key_bits: 204... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 451,
"all_permissive": false
} |
ansible_role | opennetworkinglab/onos | dd5172e5a6e1ba5c7e17e2f497aa8c27a1ed33e9 | 1,237 | tools/dev/vagrant/ansible/roles/wireshark-custom | 170 | [
"no_license"
] | [
{
"path": "tools/dev/vagrant/ansible/roles/wireshark-custom/tasks/main.yml",
"content": "- name: Enabling non-root wireshark 1/2 (Set debconf)\n become: yes\n debconf: name='wireshark-common' question='wireshark-common/install-setuid' value='true' vtype='boolean'\n\n- name: Enabling non-root wireshark 2/2... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 533,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | canary-release/ansible/roles/checkboxio | 170 | [
"no_license"
] | [
{
"path": "canary-release/ansible/roles/checkboxio/tasks/main.yml",
"content": "- name: add key nodejs\n become: yes\n apt_key:\n keyserver: keyserver.ubuntu.com\n id: 68576280\n\n- name: add nodejs repo\n become: yes\n apt_repository:\n repo: 'deb https://deb.nodesource.com/node_7.x {{ ansible... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1585,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | canary-release/ansible/roles/load-balancer | 170 | [
"no_license"
] | [
{
"path": "canary-release/ansible/roles/load-balancer/files/lb.py",
"content": "import BaseHTTPServer\nimport time\nimport sys\nimport random\nimport redis\n\n\nHOST_NAME = '' # !!!REMEMBER TO CHANGE THIS!!!\nPORT_NUMBER = 8080 # Maybe set this to 9000.\n\nPROD = None\nSTAGING = None\nred = redis.Redis()\n\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1474,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | canary-release/ansible/roles/mongodb | 170 | [
"no_license"
] | [
{
"path": "canary-release/ansible/roles/mongodb/tasks/main.yml",
"content": "- name: add key for mongodb\n become: yes\n apt_key:\n keyserver: keyserver.ubuntu.com\n id: 7F0CEB10\n state: present\n\n- name: add mongodb repo\n become: yes\n lineinfile:\n line: \"deb http://repo.mongodb.org/ap... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1039,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | canary-release/ansible/roles/prereqs | 170 | [
"no_license"
] | [
{
"path": "canary-release/ansible/roles/prereqs/tasks/main.yml",
"content": "---\n- name: install pip\n apt:\n name: python-pip\n state: present\n become: yes\n\n- name: install do py\n pip:\n name: dopy\n version: 0.3.5\n become: yes\n\n- name: ensure ssh keys exist\n user:\n name: \"{{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 525,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | canary-release/ansible/roles/provision-vms | 170 | [
"no_license"
] | [
{
"path": "canary-release/ansible/roles/provision-vms/tasks/main.yml",
"content": "---\n- name: create mongodb VM\n digital_ocean:\n state: present\n command: droplet\n name: droplet-mongodb\n unique_name: yes\n size_id: 1gb\n region_id: sgp1\n image_id: ubuntu-14-04-x64\n ssh_key_i... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2055,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | canary-release/ansible/roles/redis | 170 | [
"no_license"
] | [
{
"path": "canary-release/ansible/roles/redis/tasks/main.yml",
"content": "- name: install build-essential and tcl8.5\n become: yes\n apt:\n name: \"{{ item }}\"\n with_items:\n - build-essential\n - tcl8.5\n\n- name: download redis\n become: yes\n get_url:\n url: http://download.redis.io/r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 903,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | canary-release/ansible/roles/test | 170 | [
"no_license"
] | [
{
"path": "canary-release/ansible/roles/test/tasks/main.yml",
"content": "---\n- name: see VM IPs\n debug:\n msg: \"mongo: {{ droplet_mongodb.droplet.ip_address }} prod: {{ droplet_prod.droplet.ip_address }} staging: {{ droplet_staging.droplet.ip_address }}\"\n",
"license_type": "no_license",
"d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 185,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | infrastructure-upgrade/checkbox-ansible/roles/checkbox | 170 | [
"no_license"
] | [
{
"path": "infrastructure-upgrade/checkbox-ansible/roles/checkbox/tasks/main.yml",
"content": "---\n- name: Install packages\n apt: \n pkg: \"{{ item }}\"\n state: present\n with_items:\n# - git\n# - mongodb\n - python-pip\n - nginx\n\n- name: Add the NodeSource package signing key\n ap... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2280,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | infrastructure-upgrade/roles/delete-cluster | 170 | [
"no_license"
] | [
{
"path": "infrastructure-upgrade/roles/delete-cluster/tasks/main.yaml",
"content": "- name: Delete the cluster\n shell: \"kops delete cluster --name=qiufeng.checkbox.io --yes\"\n",
"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 | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | rolling-update/roles/dopy | 170 | [
"no_license"
] | [
{
"path": "rolling-update/roles/dopy/tasks/main.yml",
"content": "---\n- name: install dopy\n become: yes\n pip:\n name: dopy\n version: 0.3.5",
"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 | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | rolling-update/roles/git | 170 | [
"no_license"
] | [
{
"path": "rolling-update/roles/git/tasks/main.yml",
"content": "---\n- name: Install latest version of git\n apt: pkg=git state=present\n ",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 73
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 73,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | rolling-update/roles/java8 | 170 | [
"no_license"
] | [
{
"path": "rolling-update/roles/java8/tasks/main.yml",
"content": "---\n- name: Install Java 8 PreReq\n apt: name=python-software-properties\n \n- name: Add Java 8 Repo\n apt_repository: repo='ppa:webupd8team/java'\n\n- name: Accept Oracle License\n debconf: name=oracle-java8-installer question=shared... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 355,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | rolling-update/roles/maven | 170 | [
"no_license"
] | [
{
"path": "rolling-update/roles/maven/tasks/main.yml",
"content": "---\n- name: Install latest version of maven\n apt: pkg=maven state=present\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 | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | rolling-update/roles/mysql-python | 170 | [
"no_license"
] | [
{
"path": "rolling-update/roles/mysql-python/tasks/main.yml",
"content": "---\n- name: install mysql-python\n pip:\n name: MySQL-python",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 62
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 62,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | rolling-update/roles/mysql-server | 170 | [
"no_license"
] | [
{
"path": "rolling-update/roles/mysql-server/tasks/main.yml",
"content": "---\n- name: Install mysql\n apt: \n pkg: \"{{ item }}\"\n state: present\n with_items:\n - mysql-server\n - libmysqlclient-dev\n - libssl-dev\n - build-essential\n - libffi-dev\n - python-dev",
"license_type": "no_l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 193,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | rolling-update/roles/python-pip | 170 | [
"no_license"
] | [
{
"path": "rolling-update/roles/python-pip/tasks/main.yml",
"content": "---\n- name: install pip\n become: yes\n apt:\n name: python-pip",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 65
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 65,
"all_permissive": false
} |
ansible_role | qiufengyu21/DevOps-Deployment | de503f8f53b9a400af358f60254db4cd1485833b | 0 | rolling-update/roles/refresh-apt | 170 | [
"no_license"
] | [
{
"path": "rolling-update/roles/refresh-apt/tasks/main.yml",
"content": "---\n- name: Run autoclean, autoremove and update cache\n apt:\n autoclean: yes\n autoremove: yes\n update_cache: yes\n cache_valid_time: 3600",
"license_type": "no_license",
"detected_licenses": [],
"size_byte... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 149,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/alacritty | 172 | [
"no_license"
] | [
{
"path": "roles/alacritty/tasks/install_Darwin.yml",
"content": "- name: install alacritty\n community.general.homebrew_cask:\n name: alacritty\n state: present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 100
},
{
"path": "roles/alacritty/tasks/instal... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1799,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/base | 172 | [
"no_license"
] | [
{
"path": "roles/base/files/bin/bank-to-ledger",
"content": "#! /usr/bin/env bash\n\nhelp() {\n echo \"Usage: bank-to-ledger [file] [account]\"\n echo \" file: the CSV file with transactions to read in\"\n echo \" account: the account to calculate the transactions against\"\n echo \" -h (print t... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 3598,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/bspwm | 172 | [
"no_license"
] | [
{
"path": "roles/bspwm/files/arch-updates.sh",
"content": "#!/bin/sh\n\nupdates=\"$(checkupdates | wc -l)\"\n\nif [ -z \"$updates\" ]; then\n echo \"0\"\nelse\n echo $updates\nfi\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 112
},
{
"path": "roles/bspwm/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 5002,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/code | 172 | [
"no_license"
] | [
{
"path": "roles/code/tasks/install_linux.yml",
"content": "- name: install code on linux\n package:\n name: code\n state: present\n become: yes\n\n- name: symlink files on linux\n file:\n src: \"{{ ansible_env.PWD }}/roles/code/files/{{ item }}\"\n path: \"~/.config/Code - OSS/User/{{ item }... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1482,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/ctags | 172 | [
"no_license"
] | [
{
"path": "roles/ctags/tasks/install_linux.yml",
"content": "- name: install ctags on linux\n package:\n name: ctags\n state: present\n become: yes\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 91
},
{
"path": "roles/ctags/tasks/config.yml",
"conten... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 325,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/dav | 172 | [
"no_license"
] | [
{
"path": "roles/dav/tasks/main.yml",
"content": "\n- name: install vdirsyncer, khal and khard\n become: yes\n package:\n name:\n - vdirsyncer\n - khal\n - khard\n state: present\n\n- name: create vdirsyncer config directory\n file:\n path: ~/.config/vdirsyncer\n state: directo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1865,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/dmenu | 172 | [
"no_license"
] | [
{
"path": "roles/dmenu/files/run-recent",
"content": "#!/bin/sh\n# end a command with ; to run in a terminal\n\nSB=\"#336699\"\nSF=\"#ccc\"\nNB=\"#111\"\nNF=\"#ccc\"\nFN=\"-*-fixed-medium-r-semicondensed-*-13-*-*-*-*-*-iso10646-*\"\nOPTIONS=\"-fn $FN -nb $NB -nf $NF -sb $SB -sf $SF -i\"\n\nDMENU=\"dmenu -i ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1062,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/dunst | 172 | [
"no_license"
] | [
{
"path": "roles/dunst/tasks/main.yml",
"content": "- name: install dunst\n become: yes\n package:\n name: dunst\n state: present\n\n- name: create dunst config directory\n file:\n path: ~/.config/dunst\n state: directory\n\n- name: symlink dunstrc\n file:\n src: \"{{ ansible_env.PWD }}/r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 335,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/dwm | 172 | [
"no_license"
] | [
{
"path": "roles/dwm/tasks/main.yml",
"content": "- name: install dwm dependencies\n become: yes\n package:\n name:\n - xorg-server\n - xorg-xinit\n - xorg-xsetroot\n - freetype2\n - libx11\n - libxft\n - libxinerama\n - xclip\n - feh\n state: present\n\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1640,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/emacs | 172 | [
"no_license"
] | [
{
"path": "roles/emacs/files/snippets/org-mode/title",
"content": "#-*- mode: snippet -*-\n# name: Title\n#key: ti\n# --\n#+TITLE: $1",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 62
},
{
"path": "roles/emacs/files/modeline-dark.el",
"content": "(setq-default... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 19,
"total_bytes": 48820,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/fish | 172 | [
"no_license"
] | [
{
"path": "roles/fish/tasks/install_linux.yml",
"content": "- name: make sure fish is installed\n package:\n name: fish\n state: present\n become: yes\n\n- name: set fish as default shell\n user:\n name: \"{{ ansible_env.USER }}\"\n shell: /usr/bin/fish\n become: yes\n\n- name: Include versi... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 3997,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/git | 172 | [
"no_license"
] | [
{
"path": "roles/git/tasks/main.yml",
"content": "- name: install git on Mac OSX\n community.general.homebrew:\n name: git\n state: present\n when: ansible_facts['os_family'] == \"Darwin\"\n\n- name: install git on Linux\n become: yes\n package:\n name: git\n state: present\n when: ansible_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 596,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/gnupg | 172 | [
"no_license"
] | [
{
"path": "roles/gnupg/tasks/main.yml",
"content": "- name: check if gnupg is setup\n stat:\n path: ~/.gnupg\n register: gnupg\n\n- name: install gnupg\n become: yes\n package:\n name: gnupg\n state: present\n\n- name: create full-chain if not exists\n command: gpg --batch --generate-key \"{{ ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 525,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/locale | 172 | [
"no_license"
] | [
{
"path": "roles/locale/tasks/main.yml",
"content": "- name: symlink berlin timezone\n become: yes\n file:\n src: /usr/share/zoneinfo/Europe/Berlin\n path: /etc/localtime\n state: link\n force: yes\n\n- name: ensure de locale exists\n become: yes\n locale_gen:\n name: de_DE.UTF-8\n sta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 502,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/mail | 172 | [
"no_license"
] | [
{
"path": "roles/mail/tasks/install.yml",
"content": "- name: install mail software\n become: yes\n package:\n name:\n - msmtp\n - neomutt\n - offlineimap\n - stack\n - notmuch\n state: present\n\n- name: create neomutt config directory\n file:\n path: ~/.config/mutt/\n ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1414,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/mu | 172 | [
"no_license"
] | [
{
"path": "roles/mu/tasks/main.yml",
"content": "- name: install mu on Mac OSX\n community.general.homebrew:\n name: mu\n state: present\n install_options: with-emacs\n when: ansible_facts['os_family'] == \"Darwin\"\n\n- name: install mu on Linux\n become: yes\n package:\n name: mu4e\n st... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 390,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/nvim | 172 | [
"no_license"
] | [
{
"path": "roles/nvim/files/UltiSnips/go.snippets",
"content": "snippet f\nfunc ${1:name}(${2:params}) ${3:} {\n\t${4:}\n}\nendsnippet\n\nsnippet fs\nfunc (${1:type}) ${2:name}(${3:params}) ${4:} {\n\t${5:}\n}\nendsnippet\n\nsnippet s\ntype ${1:name} struct {\n\t${2:}\n}\nendsnippet\n",
"license_type": ... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 29,
"total_bytes": 24067,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/offlineimap | 172 | [
"no_license"
] | [
{
"path": "roles/offlineimap/templates/offlineimaprc.j2",
"content": "[general]\nui = ttyui\naccounts = Privat\npythonfile = ~/.offlineimap.py\n\n[Account Privat]\nlocalrepository = Privat-Local\nremoterepository = Privat-Remote\n\n[Repository Privat-Local]\ntype=Maildir\nlocalfolders = ~/Mail\ncreatefolder... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 1816,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/qutebrowser | 172 | [
"no_license"
] | [
{
"path": "roles/qutebrowser/tasks/setup_linux.yml",
"content": "- name: install qutebrowser on Arch Linux\n become: yes\n package:\n name: qutebrowser\n state: present\n \n- name: symlink qutebrowser dotfiles\n file:\n src: \"{{ ansible_env.PWD }}/roles/qutebrowser/files/{{ item }}\"\n pa... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 934,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/ranger | 172 | [
"no_license"
] | [
{
"path": "roles/ranger/tasks/install_linux.yml",
"content": "- name: install ranger on linux\n become: yes\n package:\n name: ranger\n state: present\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 93
},
{
"path": "roles/ranger/tasks/config.yml",
"co... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 486,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/st | 172 | [
"no_license"
] | [
{
"path": "roles/st/tasks/main.yml",
"content": "- name: clone st\n git:\n repo: https://github.com/snowiow/st\n dest: ~/workspace/st\n version: snow\n accept_hostkey: yes\n\n- name: make and make install st\n make:\n chdir: \"/home/{{ ansible_user_id }}/workspace/st\"\n target: install\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 261,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/syncthing | 172 | [
"no_license"
] | [
{
"path": "roles/syncthing/tasks/install_darwin.yml",
"content": "- name: make sure syncthing is installed\n community.general.homebrew:\n name:\n - syncthing\n state: present\n\n- name: make sure qsyncthingtray is installed\n community.general.homebrew_cask:\n name:\n - qsyncthingtray\... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 798,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/taskwarrior | 172 | [
"no_license"
] | [
{
"path": "roles/taskwarrior/tasks/config_taskwarrior.yml",
"content": "- name: symlink taskrc\n file:\n src: \"{{ ansible_env.PWD }}/roles/taskwarrior/files/taskrc\"\n path: \"~/.taskrc\"\n state: link\n force: yes\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 1939,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/work | 172 | [
"no_license"
] | [
{
"path": "roles/work/tasks/install_linux.yml",
"content": "- name: make sure fish is installed\n package:\n name:\n - awscli\n - golang-go\n - npm\n state: present\n become: yes\n\n- name: Install gopls\n shell: go install golang.org/x/tools/gopls@latest\n \n- name: Include version... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2796,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/yabai | 172 | [
"no_license"
] | [
{
"path": "roles/yabai/tasks/main.yml",
"content": "- name: make sure yabai and spacebar are installed\n community.general.homebrew:\n name:\n - koekeishiya/formulae/yabai\n - koekeishiya/formulae/skhd\n - cmacrae/formulae/spacebar\n state: present\n\n- name: symlink yabai dotfiles\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3917,
"all_permissive": false
} |
ansible_role | snowiow/snow | 839f11067c7592f9d1cceaad17b4e963cdfae1b7 | 9 | roles/zsh | 172 | [
"no_license"
] | [
{
"path": "roles/zsh/files/inputrc",
"content": "set editing-mode vi\nset show-mode-in-prompt on\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 47
},
{
"path": "roles/zsh/tasks/main.yml",
"content": "- name: check if oh-my-zsh is installed\n stat:\n path... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 5223,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/access | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/access/tasks/main.yaml",
"content": "- name: Add User To Sudoers Permission\n ansible.builtin.copy:\n dest: /etc/sudoers\n content: |\n Defaults env_reset\n Defaults mail_badpass\n Defaults secure_path=\"/usr/local/sbin:/usr/local/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 484,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/alertmanager | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/alertmanager/files/alertmanager.yaml",
"content": "global:\n resolve_timeout: 1m\n\ntemplates:\n - '/etc/alertmanager/templates/slack.tmpl'\nroute:\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 3h\n receiver: 'default_receiver'\n routes:\n - receiver: \"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2567,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/cadvisor | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/cadvisor/templates/docker-compose.yaml.j2",
"content": "services:\n {{ cadvisor_container_name }}:\n image: \"{{ cadvisor_image }}:{{ cadvisor_tag }}\"\n container_name: \"{{ cadvisor_container_name }}\"\n restart: \"on-failure\"\n ports:\n{% for port in cadvis... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1233,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/defectdojo | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/defectdojo/tasks/main.yaml",
"content": "- name: Check Install DefectDojo\n stat:\n path: /opt/django-DefectDojo\n register: exist_dir\n\n\n- name: Set permissions for /opt\n command: chown -R '{{ GLOBAL_USERSYS }}':'{{ GLOBAL_GROUPSYS }}' /opt\n\n- name: Clone the re... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 614,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/docker | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/docker/defaults/main.yaml",
"content": "DEFAULT_CPU_LIMIT: \"1\"\nDEFAULT_MEMOEY_LIMIT: \"2g\"\nDEFAULT_DOCKER_STATE: \"started\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 81
},
{
"path": "infra-automation/roles/docker/tasks/... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 915,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/elastic | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/elastic/tasks/main.yaml",
"content": "---\n- name: Ensure Directory Exists\n file:\n path: /opt/{{ elastic_container_name }}\n state: directory\n mode: '0755'\n- name: Generate docker-compose.yaml from template\n template:\n src: \"docker-compose.yaml.j2\"\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1511,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/etcd | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/etcd/handlers/main.yaml",
"content": "---\n- name: Restart Etcd\n ansible.builtin.systemd:\n name: etcd.service\n state: restarted\n\n\n- name: Stop Etcd\n ansible.builtin.systemd:\n name: etcd.service\n state: stopped\n",
"license_type": "no_license",
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 939,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/falco | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/falco/tasks/main.yaml",
"content": "---\n- name: Ensure Directory Exists\n file:\n path: /opt/{{ falco_container_name }}\n state: directory\n mode: '0755'\n\n- name: \"Render configuration file from template\"\n template:\n src: \"falco.yaml.j2\"\n dest: \"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1865,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/falco_sidekik | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/falco_sidekik/templates/docker-compose.yaml.j2",
"content": "version: '3'\n\nservices:\n falcosidekik:\n image: \"{{ falcosidekik_image }}:{{ falcosidekik_tag }}\"\n container_name: \"{{ falcosidekik_container_name }}\"\n restart: \"on-failure\"\n environment:\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1519,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/filebeat | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/filebeat/tasks/main.yaml",
"content": "---\n- name: Ensure Directory Exists\n file:\n path: /opt/{{ filebeat_container_name }}\n state: directory\n mode: '0755'\n\n- name: \"Render configuration file from template\"\n template:\n src: \"filebeat.yaml.j2\"\n ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2316,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/fluent-bit | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/fluent-bit/templates/fluent-bit.conf.j2",
"content": "[SERVICE]\n Parsers_File /fluent-bit/conf/parsers.conf\n[INPUT]\n Name {{ fluent_config.input.name }}\n Parser {{ fluent_config.input.parser }}\n{% if fluent_config.filter.enable %}\n[FILTER]\n Name {{ fluen... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2273,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/gitlab-pkg | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/gitlab-pkg/tasks/main.yaml",
"content": "---\n - name: Ensure Necessary Dependencies Installed.\n apt:\n pkg: \n - perl\n - tzdata \n - vim\n - net-tools\n - openssh-server\n - ca-certificates\n - curl \n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 582,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/grafana | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/grafana/tasks/main.yaml",
"content": "- name: Ensure Directory Exists\n file:\n path: /opt/{{ grafana_container_name }}\n state: directory\n mode: '0755'\n\n- name: Generate docker-compose.yaml from template\n template:\n src: \"docker-compose.yaml.j2\"\n d... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1091,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/jenkins | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/jenkins/templates/docker-compose.yaml.j2",
"content": "services:\n {{ jenkins_container_name }}:\n image: \"{{ jenkins_image }}:{{ jenkins_tag }}\"\n container_name: \"{{ jenkins_container_name }}\"\n restart: \"on-failure\"\n user: root\n privileged: true\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1290,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/jenkins-agent | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/jenkins-agent/defaults/main.yaml",
"content": "DEFAULT_CPU_LIMIT: \"2\"\nDEFAULT_MEMOEY_LIMIT: \"1g\"\nDEFAULT_jenkins_agent_STATE: \"started\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 89
},
{
"path": "infra-automation/rol... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1554,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/jenkins-pkg | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/jenkins-pkg/tasks/main.yaml",
"content": "- name: Install Jenkins, Terraform, and zap-cli\n hosts: all\n become: yes\n tasks:\n - name: Download Jenkins GPG key\n get_url:\n url: https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key\n dest: /usr/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1447,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/k3s_ansible | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/k3s_ansible/tasks/main.yaml",
"content": "---\n- hosts: all\n become: true\n tasks:\n - name: Check Installation Docker\n shell: which docker\n register: check_install\n ignore_errors: yes\n\n - name: Install Docker On All Server\n apt:\n name: docker.i... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1694,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/kibana | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/kibana/tasks/main.yaml",
"content": "---\n\n- name: Ensure Directory Exists\n file:\n path: /opt/{{ kibana_container_name }}\n state: directory\n mode: '0755'\n\n- name: Generate docker-compose.yaml from template\n template:\n src: \"docker-compose.yaml.j2\"\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1250,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/logstash | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/logstash/defaults/main.yaml",
"content": "DEFAULT_CPU_LIMIT: \"1\"\nDEFAULT_MEMOEY_LIMIT: \"1g\"\nDEFAULT_LOGSTASH_STATE: \"started\"\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 84
},
{
"path": "infra-automation/roles/logstas... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 2688,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/lvm | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/lvm/tasks/main.yaml",
"content": "---\n- name: Get filesystems with >80% usage\n ansible.builtin.shell: |\n df -h | awk '$5+0 > 80 && /mapper/ {print $1}'\n register: critical_fs\n changed_when: false\n\n- name: Extract VG and LV pairs from critical filesystems\n ans... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1005,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/nexus | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/nexus/tasks/main.yaml",
"content": "- name: Ensure Directory Exists\n file:\n path: /opt/{{ nexus_container_name }}\n state: directory\n mode: '0755'\n\n- name: Generate docker-compose.yaml from template\n template:\n src: \"docker-compose.yaml.j2\"\n dest:... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1478,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/node_exporter | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/node_exporter/tasks/main.yaml",
"content": "- name: Ensure Directory Exists\n file:\n path: /opt/{{ node_exporter_container_name }}\n state: directory\n mode: '0755'\n\n- name: Generate docker-compose.yaml from template\n template:\n src: \"docker-compose.yaml... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1244,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/patroni | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/patroni/templates/config.yaml.j2",
"content": "scope: postgresql-cluster\nnamespace: /service/\nname: {{ inventory_hostname }}\n\netcd3:\n hosts: {{ etcd_cluster }} \n\nrestapi:\n listen: 0.0.0.0:8008\n connect_address: {{ ansible_host }}:8008\n\nbootstrap:\n dcs:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2284,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/prometheus | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/prometheus/templates/prometheus.yaml.j2",
"content": "global:\n scrape_interval: 15s\n evaluation_interval: 15s\nalerting:\n alertmanagers:\n - static_configs:\n - targets: \n - {{ alertmanager_container_name }}:9093\n\nrule_files:\n - /etc/prometheus/alert... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 2885,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/requirment | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/requirment/tasks/network.yaml",
"content": "- name: Create shared Docker network\n community.docker.docker_network:\n name: shared_network\n state: present\n driver: bridge\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 135
... | {
"task_files": 2,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1840,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/rsyslog | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/rsyslog/tasks/main.yaml",
"content": "- name: Ensure rsyslog is installed\n ansible.builtin.package:\n name: rsyslog\n state: present\n\n\n- name: Configure rsyslog main configuration file\n ansible.builtin.copy:\n dest: /etc/rsyslog.d/50-default.conf\n conten... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 519,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/sonarqube | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/sonarqube/tasks/main.yaml",
"content": "---\n- name: Ensure Directory Exists\n file:\n path: /opt/{{ sonar_container_name }}\n state: directory\n mode: '0755'\n\n- name: Generate docker-compose.yaml from template\n template:\n src: \"docker-compose.yaml.j2\"\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 1285,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/vault | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/vault/templates/config.hcl.j2",
"content": "ui = true\ndisable_mlock = \"true\"\n\nstorage \"raft\" {\n path = \"/vault/data\"\n node_id = \"node1\"\n}\n\nlistener \"tcp\" {\n address = \"[::]:8200\"\n tls_disable = \"false\"\n tls_cert_file = \"/certs/server-cert.c... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 3061,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/zabbix-agent | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/zabbix-agent/handlers/main.yaml",
"content": "---\n- name: \"Restart Agent2\"\n ansible.builtin.service:\n name: \"zabbix-agent2.service\"\n state: \"restarted\"\n enabled: true",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 130... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1393,
"all_permissive": false
} |
ansible_role | mohammadhy/devseops | 26aa9e7528dd99d258609999d6f34d9c7207237a | 0 | infra-automation/roles/zap | 172 | [
"no_license"
] | [
{
"path": "infra-automation/roles/zap/tasks/main.yaml",
"content": "---\n- name: Add Repositor \n shell: echo 'deb http://download.opensuse.org/repositories/home:/cabelo/xUbuntu_22.04/ /' | sudo tee /etc/apt/sources.list.d/home:cabelo.list\n become: true\n\n- name: Add Gpg Key\n shell: curl -fsSL https:/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 482,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/certbot | 172 | [
"no_license"
] | [
{
"path": "roles/certbot/tasks/main.yml",
"content": "---\n# tasks file for certbot\n- name: Include appropriate vars file\n include_vars: \"{{ var_type }}.yml\"\n\n- name: Install Nginx and Certbot\n yum:\n name:\n - python2-certbot-nginx\n state: latest\n\n- name: Create Jenkins logging dir\n... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1766,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/ddclient | 172 | [
"no_license"
] | [
{
"path": "roles/ddclient/templates/ddclient.conf.j2",
"content": "# Configuration file for ddclient generated by debconf\n#\n# /etc/ddclient.conf\ndaemon={{ ddclient_daemon }}\nsyslog={{ ddclient_syslog }}\npid={{ ddclient_pid }}\nssl={{ ddclient_ssl }}\nuse={{ ddclient_use }}\nprotocol={{ ddclient_protoco... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 1367,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/development-instance | 172 | [
"no_license"
] | [
{
"path": "roles/development-instance/tasks/main.yml",
"content": "---\n# tasks file for development-instance\n- name: Update all packages to latest\n yum:\n lock_timeout: 180\n name: '*'\n state: latest\n\n- name: Install development tools\n yum:\n lock_timeout: 180\n state: present\n u... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 946,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/ec2-create | 172 | [
"no_license"
] | [
{
"path": "roles/ec2-create/tasks/main.yml",
"content": "---\n# tasks file for ec2-create\n- name: Include appropriate vars file\n include_vars: \"{{ var_type }}.yml\"\n\n- name: Create a new developer ec2 instance\n ec2:\n key_name: \"{{ keypair }}\"\n group_id: \"{{ security_group }}\" # security... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 1903,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/efs-mount | 172 | [
"no_license"
] | [
{
"path": "roles/efs-mount/vars/main.yml",
"content": "---\n# vars file for efs-mount\nefs: fs-312fd79a\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 47
},
{
"path": "roles/efs-mount/tests/test.yml",
"content": "---\n- hosts: localhost\n remote_user: root\... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 494,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/epel-ius | 172 | [
"no_license"
] | [
{
"path": "roles/epel-ius/defaults/main.yml",
"content": "---\n# defaults file for epel-ius\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 33
},
{
"path": "roles/epel-ius/handlers/main.yml",
"content": "---\n# handlers file for epel-ius\n",
"license_type... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 484,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/jenkins-configure | 172 | [
"no_license"
] | [
{
"path": "roles/jenkins-configure/templates/location.groovy.j2",
"content": "#!groovy\n// imports\nimport jenkins.model.Jenkins\nimport jenkins.model.JenkinsLocationConfiguration\n\n// parameters\ndef jenkinsParameters = [\n email: '<EMAIL>',\n url: 'https://jenkins.ethanp.dev'\n]\n\n// get Jenkins l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 2211,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/jenkins-worker | 172 | [
"no_license"
] | [
{
"path": "roles/jenkins-worker/tasks/main.yml",
"content": "---\n# tasks file for jenkin-docker-worker\n- name: Add the epel repo\n yum:\n lock_timeout: 180\n name: 'https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm'\n state: present\n\n- name: Add the IUS repo\n yum:\n l... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 856,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/nginx | 172 | [
"no_license"
] | [
{
"path": "roles/nginx/templates/jenkins-rproxy.conf.j2",
"content": "####========================================\n#### This Config Managed by Ansible\n#### Role: jenkins-master\n#### Local changes will be overwritten!\n####========================================\n##-- Upstream Proxy Pass --##\nupstream j... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 5,
"total_bytes": 7192,
"all_permissive": false
} |
ansible_role | maker2413/AnsiblePlaybooks | 9261f8cca32d2d1d82412a25170de84ac7180e2b | 0 | roles/webserver | 172 | [
"no_license"
] | [
{
"path": "roles/webserver/tasks/main.yml",
"content": "---\n# tasks file for webserver\n- name: Install Lamp Stack\n shell: \"amazon-linux-extras install -y lamp-mariadb10.2-php7.2 php7.2\"\n\n- name: Install httpd\n yum:\n state: present\n update_cache: true\n name:\n - httpd\n - mari... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 344,
"all_permissive": false
} |
ansible_role | AbrahamChan88/gcp_gcloud_standup | 12b29b763be00dfb92ff433953765e075810afbd | 0 | ansible/roles/gcp_firewall | 172 | [
"no_license"
] | [
{
"path": "ansible/roles/gcp_firewall/defaults/main.yml",
"content": "---\nfw_network_control_pane:\n#Firewall rule Palto to Control Pane, not created yet.\n#Firewall rule from outside VPC\n - fw_name: \"fw-yvr-{{ namespace }}-control-pane\"\n fw_description: \"Allow_http_https_ssh_inbound_traffic_to_co... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 10723,
"all_permissive": false
} |
ansible_role | AbrahamChan88/gcp_gcloud_standup | 12b29b763be00dfb92ff433953765e075810afbd | 0 | ansible/roles/gcp_subnet | 172 | [
"no_license"
] | [
{
"path": "ansible/roles/gcp_subnet/defaults/main.yml",
"content": "---\nsubnet_network_control_pane:\n - subnet_name: \"{{ namespace }}-control-pane\"\n subnet_network: \"yvr-{{ namespace }}-control-pane\"\n subnet_range: \"{{ ip_range_control_pane }}\"\n subnet_description: \"{{ namespace }}_con... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 3836,
"all_permissive": false
} |
ansible_role | AbrahamChan88/gcp_gcloud_standup | 12b29b763be00dfb92ff433953765e075810afbd | 0 | ansible/roles/gcp_vpc | 172 | [
"no_license"
] | [
{
"path": "ansible/roles/gcp_vpc/tasks/main.yml",
"content": "---\n- name: Create VPC for Control ENV\n command: gcloud compute --project={{ project_id }} networks create {{ item.vpc_name }} --bgp-routing-mode={{ item.vpc_routing }} --description={{ item.vpc_description }} --subnet-mode={{ item.vpc_subnet_... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2072,
"all_permissive": false
} |
ansible_role | Ahmed12Mokhtar/LampStack-using-ansible-playbook | c2b4d5e5ce508a0a6e009795bb967f28303061fe | 0 | roles/apache | 173 | [
"no_license"
] | [
{
"path": "roles/apache/tasks/main.yaml",
"content": "- name: install httpd\n yum:\n name: httpd\n state: installed\n- name: start and enable httpd\n systemd:\n name: httpd\n state: started\n enabled: yes\n- name: permit traffic in default zone for https service\n firewalld:\n port: \"{... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 432,
"all_permissive": false
} |
ansible_role | Ahmed12Mokhtar/LampStack-using-ansible-playbook | c2b4d5e5ce508a0a6e009795bb967f28303061fe | 0 | roles/php | 173 | [
"no_license"
] | [
{
"path": "roles/php/tasks/main.yaml",
"content": "- name: install php\n yum:\n name: \"{{ item }}\"\n state: installed\n with_items:\n - php\n - php-mysqlnd\n\n\n\n\n\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 118
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 118,
"all_permissive": false
} |
ansible_role | tribou/ansible-swap | deba4e81f3f177d627a556f47260e36f2fe8565b | 16 | roles/swap | 173 | [
"no_license"
] | [
{
"path": "roles/swap/handlers/main.yml",
"content": "---\n\n- name: sysctl\n command: sysctl -p\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 41
},
{
"path": "roles/swap/tasks/main.yml",
"content": "---\n\n- name: Gathering facts\n setup:\n\n- name: Crea... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1521,
"all_permissive": false
} |
ansible_role | sungaomeng/ansible-kubernetes | 558c5b291e279a92cec9981009eff6b2fa79d9fa | 0 | roles/k8s-step1-init-system | 173 | [
"no_license"
] | [
{
"path": "roles/k8s-step1-init-system/tasks/main.yaml",
"content": "---\n- name: 基础软件安装\n yum: name={{item}} state=present\n with_items:\n - gcc\n - gcc-c++\n - wget\n - lrzsz\n - telnet\n - net-tools\n - epel*\n - vim \n - unzip\n - ntpdate\n - yum-utils\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2303,
"all_permissive": false
} |
ansible_role | sungaomeng/ansible-kubernetes | 558c5b291e279a92cec9981009eff6b2fa79d9fa | 0 | roles/k8s-step2-install-docker | 173 | [
"no_license"
] | [
{
"path": "roles/k8s-step2-install-docker/tasks/main.yaml",
"content": "- name: ensure config directory\n file: \n path: \"{{ docker_config_dir }}\"\n state: directory\n\n- name: create docker directory\n file: \n path: /etc/docker\n state: directory\n\n- name: ensure required packages\n yum:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1417,
"all_permissive": false
} |
ansible_role | sungaomeng/ansible-kubernetes | 558c5b291e279a92cec9981009eff6b2fa79d9fa | 0 | roles/k8s-step3-scp-bin | 173 | [
"no_license"
] | [
{
"path": "roles/k8s-step3-scp-bin/tasks/main.yml",
"content": "- include: bin.yml\n\n- include: cfssl.yml\n when: inventory_hostname in groups['local']\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 87
},
{
"path": "roles/k8s-step3-scp-bin/tasks/bin.yml",
... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 2005,
"all_permissive": false
} |
ansible_role | sungaomeng/ansible-kubernetes | 558c5b291e279a92cec9981009eff6b2fa79d9fa | 0 | roles/k8s-step4-install-etcd | 173 | [
"no_license"
] | [
{
"path": "roles/k8s-step4-install-etcd/tasks/create_ca_ssl.yml",
"content": "- name: 本地创建创建create_ssl_dir\n file:\n path: \"{{ create_ssl_dir }}\"\n state: directory\n directory_mode: 755\n\n- name: 复制ca*.json到本地目标文件夹\n copy:\n src: files/{{ item }}\n dest: \"{{ create_ssl_dir }}\"\n with... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 7,
"total_bytes": 5531,
"all_permissive": false
} |
ansible_role | sungaomeng/ansible-kubernetes | 558c5b291e279a92cec9981009eff6b2fa79d9fa | 0 | roles/k8s-step5-install-k8smaster | 173 | [
"no_license"
] | [
{
"path": "roles/k8s-step5-install-k8smaster/tasks/create_kubernetes_certs.yml",
"content": "- name: create local {{ create_ssl_dir }}\n file:\n path: \"{{ create_ssl_dir }}\"\n state: directory\n directory_mode: 755\n when: inventory_hostname in groups['local']\n\n- name: cp kubernetes-csr.json ... | {
"task_files": 9,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 11,
"total_bytes": 9217,
"all_permissive": false
} |
ansible_role | sungaomeng/ansible-kubernetes | 558c5b291e279a92cec9981009eff6b2fa79d9fa | 0 | roles/k8s-step6-install-k8sslave | 173 | [
"no_license"
] | [
{
"path": "roles/k8s-step6-install-k8sslave/tasks/dns.yml",
"content": "- copy:\n src: files/{{ item }}\n dest: \"{{ kubernetes_path }}/temp\"\n with_items:\n - 'coredns.yaml'\n - 'dns-auto-scaling.yaml'\n\n- name: deploy coredns\n shell: |\n :;{{ kubelet_bin_path }}/kubectl apply -f {{ kub... | {
"task_files": 6,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 8428,
"all_permissive": false
} |
ansible_role | sungaomeng/ansible-kubernetes | 558c5b291e279a92cec9981009eff6b2fa79d9fa | 0 | roles/k8s-step7-install-ExtraAddons | 173 | [
"no_license"
] | [
{
"path": "roles/k8s-step7-install-ExtraAddons/files/dashboard/dashboard-ingress.yaml",
"content": "apiVersion: extensions/v1beta1\nkind: Ingress\nmetadata:\n name: kubernetes-dashboard-ingress\n annotations:\n ingress.kubernetes.io/ssl-passthrough: \"true\"\n nginx.ingress.kubernetes.io/secure-back... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 2910,
"all_permissive": false
} |
ansible_role | sungaomeng/ansible-kubernetes | 558c5b291e279a92cec9981009eff6b2fa79d9fa | 0 | roles/k8s-step8-addNode | 173 | [
"no_license"
] | [
{
"path": "roles/k8s-step8-addNode/tasks/bin.yml",
"content": "- name: unzip kubernetes\n unarchive:\n src: \"{{ kubernetes_tgz }}\"\n dest: /tmp/\n when: inventory_hostname in groups['local']\n\n- name: scp bin to slave\n copy:\n src: \"{{ item }}\"\n dest: \"{{ kubelet_bin_path }}\"\n di... | {
"task_files": 5,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 5538,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.