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 | cai4560/4week-4archit-2th | 6dce3b81087e7a1b43827e657229e9bc680a92c1 | 0 | exercise/exercise-2/roles/exercise-2 | 7,695 | [
"no_license"
] | [
{
"path": "exercise/exercise-2/roles/exercise-2/tasks/main.yml",
"content": "---\n - name: Static-website-hosting\n cloudformation:\n stack_name: \"Static-website-hosting-stack-{{user_name}}\"\n state: present\n region: \"ap-northeast-1\"\n disable_rollback: true\n template: \"c... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 428,
"all_permissive": false
} |
ansible_role | cai4560/4week-4archit-2th | 6dce3b81087e7a1b43827e657229e9bc680a92c1 | 0 | exercise/exercise-2/roles/exercise-2-final | 7,695 | [
"no_license"
] | [
{
"path": "exercise/exercise-2/roles/exercise-2-final/tasks/main.yml",
"content": "---\n - name: Static-website-hosting\n cloudformation:\n stack_name: \"Static-website-hosting-final-stack-{{user_name}}\"\n state: present\n region: \"ap-northeast-1\"\n disable_rollback: true\n t... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 562,
"all_permissive": false
} |
ansible_role | Konami33/k3s-deployment | 7735e48f5febde5b3ac2aae11de0ccc33dfe4dc1 | 1 | ansible/roles/common | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/common/tasks/main.yml",
"content": "---\n- name: Update and upgrade apt packages for ubuntu\n apt:\n update_cache: yes\n upgrade: dist\n force_apt_get: yes\n\n- name: Install necessary dependencies\n apt:\n name: \n - curl\n - wget\n - apt-transport-http... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 280,
"all_permissive": false
} |
ansible_role | Konami33/k3s-deployment | 7735e48f5febde5b3ac2aae11de0ccc33dfe4dc1 | 1 | ansible/roles/k3s-master | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/k3s-master/tasks/main.yml",
"content": "---\n- name: Download and install k3s\n shell: |\n curl -sfL https://get.k3s.io | sh -\n\n- name: Set file permission\n shell: |\n sudo chmod 644 /etc/rancher/k3s/k3s.yaml\n\n- name: Get k3s token\n shell: \"cat /var/lib/rancher/k3s/s... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 408,
"all_permissive": false
} |
ansible_role | Konami33/k3s-deployment | 7735e48f5febde5b3ac2aae11de0ccc33dfe4dc1 | 1 | ansible/roles/k3s-worker | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/k3s-worker/tasks/main.yml",
"content": "---\n- name: Join the k3s cluster\n shell: |\n curl -sfL https://get.k3s.io | K3S_URL=https://{{ hostvars['master-node']['master_ip'].stdout }}:6443 K3S_TOKEN={{ hostvars['master-node']['k3s_token'].stdout }} sh -\n",
"license_type": "... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 215,
"all_permissive": false
} |
ansible_role | vagrant-ops/vagrantops | b44a92b6468127fe2f5792d3f2a000068fdc73f7 | 23 | ansible/roles/memcached | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/memcached/tasks/main.yml",
"content": "---\n- name: Install Memcached\n apt: pkg={{ item }} state=installed update_cache=true\n with_items:\n - memcached\n notify:\n - Start Memcached",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 145
},
... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 283,
"all_permissive": false
} |
ansible_role | vagrant-ops/vagrantops | b44a92b6468127fe2f5792d3f2a000068fdc73f7 | 23 | ansible/roles/mysql | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/mysql/templates/.my.cnf.j2",
"content": "[client]\nuser=root\npassword={{ <PASSWORD> }}",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 44
},
{
"path": "ansible/roles/mysql/tasks/main.yml",
"content": "---\n- name: Install MySQL\n apt:... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1267,
"all_permissive": false
} |
ansible_role | vagrant-ops/vagrantops | b44a92b6468127fe2f5792d3f2a000068fdc73f7 | 23 | ansible/roles/nginx | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/nginx/tasks/main.yml",
"content": "---\n- name: Add Nginx Repository\n apt_repository: repo='ppa:nginx/stable' state=present\n\n- name: Install Nginx\n apt: pkg=nginx state=installed update_cache=true\n notify:\n - Start Nginx\n\n- name: Add H5BP Config\n copy: src=h5bp dest=... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 2494,
"all_permissive": false
} |
ansible_role | vagrant-ops/vagrantops | b44a92b6468127fe2f5792d3f2a000068fdc73f7 | 23 | ansible/roles/php | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/php/tasks/main.yml",
"content": "---\n- name: Add PHP Repository\n apt_repository: repo='ppa:ondrej/php5-5.6' state=present\n\n- name: Install PHP and PHP-FPM\n apt: pkg={{ item }} state=installed update_cache=true\n with_items:\n - php5-fpm\n - php5-cli\n - php5-pgsql\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1337,
"all_permissive": false
} |
ansible_role | vagrant-ops/vagrantops | b44a92b6468127fe2f5792d3f2a000068fdc73f7 | 23 | ansible/roles/postgresql | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/postgresql/tasks/main.yml",
"content": "---\n- name: Add PostgreSQL Key\n apt_key: url='https://www.postgresql.org/media/keys/ACCC4CF8.asc' state=present\n\n- name: Add PostgreSQL Repository\n apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main' sta... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1373,
"all_permissive": false
} |
ansible_role | vagrant-ops/vagrantops | b44a92b6468127fe2f5792d3f2a000068fdc73f7 | 23 | ansible/roles/redis | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/redis/tasks/main.yml",
"content": "---\n- name: Add Redis Repository\n apt_repository: repo='ppa:rwky/redis' state=present\n\n- name: Install Redis\n apt: pkg={{ item }} state=installed update_cache=true\n with_items:\n - redis-server\n notify:\n - Start Redis",
"license... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 360,
"all_permissive": false
} |
ansible_role | vagrant-ops/vagrantops | b44a92b6468127fe2f5792d3f2a000068fdc73f7 | 23 | ansible/roles/server | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/server/tasks/main.yml",
"content": "---\n- name: Perform Safe Upgrade\n apt: upgrade=safe update_cache=yes\n\n- name: Install Server Basics\n apt: pkg={{ item }} state=installed update_cache=true\n with_items:\n - acl\n - ack-grep\n - build-essential\n - curl\n - g... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 370,
"all_permissive": false
} |
ansible_role | vagrant-ops/vagrantops | b44a92b6468127fe2f5792d3f2a000068fdc73f7 | 23 | ansible/roles/ssl | 7,695 | [
"no_license"
] | [
{
"path": "ansible/roles/ssl/tasks/main.yml",
"content": "---\n- name: Create SSL Directry\n file: dest=/etc/ssl/vagrantops mode=0700 state=directory owner=root group=root\n\n- name: Create Self-Signed Certificate\n command: openssl req -new -nodes -x509 -subj \"/C=US/ST=Texas/L=San Antonio/O=IT/CN={{ dev... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 361,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/3scale | 7,695 | [
"no_license"
] | [
{
"path": "roles/3scale/tasks/prereq-check.yml",
"content": "---\n- name: \"Prerequisite checks\"\n fail:\n msg: \"Variable threescale_route_suffix is undefined. Please specify with -e threescale_route_suffix=<value>\"\n when: threescale_route_suffix == ''",
"license_type": "no_license",
"detec... | {
"task_files": 21,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 29,
"total_bytes": 94502,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/amq_streams | 7,695 | [
"no_license"
] | [
{
"path": "roles/amq_streams/tasks/uninstall.yml",
"content": "---\n- name: \"Get AMQ Streams install files for version {{ amq_version }}\"\n block:\n - name: Ensure clean clone location\n file:\n path: \"{{ amq_streams_dest }}\"\n state: absent\n\n - name: Clone AMQ Streams repo\n... | {
"task_files": 7,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 9,
"total_bytes": 4252,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/apicurito | 7,695 | [
"no_license"
] | [
{
"path": "roles/apicurito/tasks/new_limits.yml",
"content": "---\n\n- name: Apply resource overrides for apicurito\n include_role:\n name: resource_limits\n vars:\n ns: \"{{ apicurito_namespace }}\"\n resources: \"{{ apicurito_resources }}\"\n when: (apicurito_resources | d([], true) | length) ... | {
"task_files": 6,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 7,
"total_bytes": 2584,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/backup | 7,695 | [
"no_license"
] | [
{
"path": "roles/backup/templates/mysql-secret.yml.j2",
"content": "apiVersion: v1\nkind: Secret\nmetadata:\n name: {{ backup_secret_name }}\ntype: Opaque\nstringData:\n MYSQL_HOST: \"{{ host }}\"\n MYSQL_PORT: \"{{ port }}\"\n MYSQL_USER: \"{{ user }}\"\n MYSQL_PASSWORD: \"{{ <PASSWORD> }}\"\n",
"... | {
"task_files": 10,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 16,
"total_bytes": 11163,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/codeready | 7,695 | [
"no_license"
] | [
{
"path": "roles/codeready/tasks/upgrade_1.0_to_1.2.yml",
"content": "\n\n#1.0 -> 1.1 Migration\n#https://github.com/redhat-developer/codeready-workspaces-deprecated/blob/1.2.0.GA/operator-installer/migrate_1.0_to_1.1.sh\n#\n# This is only dealing with adding existing keycloak config to the new custom resou... | {
"task_files": 9,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 19372,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/customisation | 7,695 | [
"no_license"
] | [
{
"path": "roles/customisation/defaults/main.yml",
"content": "inventory_secret_name: integreatly-inventory\ninventory_namespace: integreatly",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 77
},
{
"path": "roles/customisation/templates/inventory.j2",
"content"... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 4,
"total_bytes": 15237,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/customise-web-console | 7,695 | [
"no_license"
] | [
{
"path": "roles/customise-web-console/templates/deploy.yml.j2",
"content": "---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: {{ customise_web_console.app_name }}\nspec:\n replicas: 1\n selector:\n matchLabels:\n name: {{ customise_web_console.app_name }}\n template:\n metadata:\... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 12209,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/datasync | 7,695 | [
"no_license"
] | [
{
"path": "roles/datasync/tasks/uninstall.yml",
"content": "---\n- name: \"Delete Mobile Developer Services Data Sync Application template\"\n shell: oc delete -f {{ datasync_app_template }} -n {{ datasync_template_namespace }}\n register: data_sync_app\n failed_when: data_sync_app.stderr != '' and 'NotF... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1518,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/delete-user-namespaces | 7,695 | [
"no_license"
] | [
{
"path": "roles/delete-user-namespaces/tasks/main.yml",
"content": "---\n-\n name: Get namespaces to clean up\n shell: \"oc get namespaces -o json | jq -r '{{ delete_user_namespaces.jq_query }}'\"\n register: namespaces_output\n-\n- include_role:\n name: namespace\n tasks_from: delete\n vars:\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 550,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/enmasse | 7,695 | [
"no_license"
] | [
{
"path": "roles/enmasse/tasks/backup.yml",
"content": "---\n# Postgres backup\n- name: Get Postgres password\n shell: oc get secret postgresql -n {{ enmasse_namespace }} -o jsonpath='{ .data.database-password }' | base64 --decode\n register: enmasse_postgres_password\n\n- name: Get Postgres username\n s... | {
"task_files": 13,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 18,
"total_bytes": 14934,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/fuse | 7,695 | [
"no_license"
] | [
{
"path": "roles/fuse/tasks/uninstall.yml",
"content": "---\n# CLEANUP FUSE ON OPENSHIFT IMAGE STREAMS\n- name: Delete Fuse image streams\n shell: \"oc delete -f {{ item }} -n openshift\"\n register: delete_fuse_imagestream_cmd\n failed_when: delete_fuse_imagestream_cmd.stderr != '' and 'NotFound' not in... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 5200,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/fuse_managed | 7,695 | [
"no_license"
] | [
{
"path": "roles/fuse_managed/templates/roles.yaml",
"content": "---\napiVersion: authorization.openshift.io/v1\nkind: Role\nmetadata:\n name: role-binder\n namespace: {{ fuse_namespace }}\nrules:\n - apiGroups:\n - rbac.authorization.k8s.io\n attributeRestrictions: null\n resources:\n - ... | {
"task_files": 9,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 12,
"total_bytes": 13673,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/gitea | 7,695 | [
"no_license"
] | [
{
"path": "roles/gitea/defaults/main.yml",
"content": "gitea_namespace: gitea\n\ngitea_operator_resource_items:\n - \"{{ gitea_operator_resources }}/service_account.yaml\"\n - \"{{ gitea_operator_resources }}/role.yaml\"\n - \"{{ gitea_operator_resources }}/role_binding.yaml\"\n - \"{{ gitea_operator_re... | {
"task_files": 3,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 9479,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/heimdall | 7,695 | [
"no_license"
] | [
{
"path": "roles/heimdall/defaults/main.yml",
"content": "heimdall_namespace: \"{{ns_prefix | default('')}}heimdall\"\n\nheimdall_operator_resource_items:\n - \"{{ heimdall_operator_resources }}/service_account.yaml\"\n - \"{{ heimdall_operator_resources }}/role.yaml\"\n - \"{{ heimdall_operator_resource... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 8,
"total_bytes": 4127,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/images | 7,695 | [
"no_license"
] | [
{
"path": "roles/images/test/import.yml",
"content": "- hosts: localhost\n tasks:\n - include_role:\n name: images\n tasks_from: import\n vars:\n images_source_namespace: fuse",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 145
},
{
"p... | {
"task_files": 3,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 4,
"total_bytes": 1384,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/imagestream_pull_secret | 7,695 | [
"no_license"
] | [
{
"path": "roles/imagestream_pull_secret/templates/imagestream-pull-secret.yml.j2",
"content": "apiVersion: v1\ndata:\n .dockerconfigjson: {{ imagestream_docker_config }}\nkind: Secret\nmetadata:\n name: {{ product_ns_pull_secret_name }}\ntype: kubernetes.io/dockerconfigjson",
"license_type": "no_lice... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 3,
"total_bytes": 901,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/launcher | 7,695 | [
"no_license"
] | [
{
"path": "roles/launcher/tasks/prereq-check.yml",
"content": "---\n- name: \"Prerequisite checks\"\n fail:\n msg: \"Variable {{ item }} is undefined\"\n when: (item is not defined) or (item == '')\n with_items:\n - \"{{ launcher_openshift_sso_route }}\"\n - \"{{ launcher_openshift_sso_realm }}\"\n ... | {
"task_files": 9,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 19,
"total_bytes": 20306,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/mdc | 7,695 | [
"no_license"
] | [
{
"path": "roles/mdc/defaults/main.yml",
"content": "mdc_operator_release_tag: '0.2.6'\nmdc_operator_image: 'quay.io/aerogear/mobile-developer-console-operator:{{ mdc_operator_release_tag }}'\nmdc_template_dir: /tmp\nmdc_namespace: \"{{ eval_mdc_namespace | default('mobile-developer-console') }}\"\nmdc_oaut... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 3849,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/middleware_monitoring | 7,695 | [
"no_license"
] | [
{
"path": "roles/middleware_monitoring/templates/grafana_crd.yml.j2",
"content": "apiVersion: apiextensions.k8s.io/v1beta1\nkind: CustomResourceDefinition\nmetadata:\n name: grafanas.integreatly.org\nspec:\n group: integreatly.org\n names:\n kind: Grafana\n listKind: GrafanaList\n plural: grafan... | {
"task_files": 10,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 20,
"total_bytes": 20306,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/middleware_monitoring_config | 7,695 | [
"no_license"
] | [
{
"path": "roles/middleware_monitoring_config/tasks/create_from_template.yml",
"content": "---\n- name: \"Create resource file from template ({{ item }})\"\n template:\n src: \"{{ item }}.j2\"\n dest: \"{{ monitoring_conf_tmp_dir }}/{{ item }}\"\n# `oc apply` is used deliberately here so that this ta... | {
"task_files": 10,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 40,
"total_bytes": 318726,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/mobile_security_service | 7,695 | [
"no_license"
] | [
{
"path": "roles/mobile_security_service/tasks/uninstall_mss.yml",
"content": "---\n- name: \"Delete project namespace: {{ mss_namespace }}\"\n shell: oc delete project {{ mss_namespace }}\n register: output\n failed_when: output.stderr != '' and 'not found' not in output.stderr and 'The system is ensuri... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1215,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/msbroker | 7,695 | [
"no_license"
] | [
{
"path": "roles/msbroker/tasks/main.yml",
"content": "---\n# Create managed-service-broker namespace\n- include_role:\n name: namespace\n tasks_from: create\n vars:\n name: \"{{ msbroker_namespace }}\"\n display_name: \"Managed Service Broker\"\n monitor: true\n is_service: true\n\n- inc... | {
"task_files": 5,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 6,
"total_bytes": 6763,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/namespace | 7,695 | [
"no_license"
] | [
{
"path": "roles/namespace/tasks/create.yml",
"content": "---\n- name: Check namespace doesn't already exist\n shell: oc get namespace {{ name }}\n register: namespace_exists\n failed_when: namespace_exists.stderr != '' and 'NotFound' not in namespace_exists.stderr\n\n- name: Creating namespace {{ name }... | {
"task_files": 4,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 6,
"total_bytes": 2460,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/nexus | 7,695 | [
"no_license"
] | [
{
"path": "roles/nexus/defaults/main.yml",
"content": "nexus_namespace: \"{{ eval_nexus_namespace | default('nexus') }}\"\nnexus_image: sonatype/nexus:{{nexus_version}}\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 111
},
{
"path": "roles/nexus/tasks/uninstall.... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 1590,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/openshift | 7,695 | [
"no_license"
] | [
{
"path": "roles/openshift/tasks/add_network_policy.yml",
"content": "---\n- copy:\n src: allow-from-middleware-namespaces.json\n dest: /tmp/allow-from-middleware-namespaces.json\n\n- name: Store contents of the allow-from-middleware-namespaces NetworkPolicy\n shell: cat /tmp/allow-from-middleware-na... | {
"task_files": 4,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 5,
"total_bytes": 2968,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/prerequisites | 7,695 | [
"no_license"
] | [
{
"path": "roles/prerequisites/tasks/check_master_params.yml",
"content": "---\n- block:\n - debug:\n msg: \"eval_app_host is required when run_master_tasks=false\"\n failed_when: eval_app_host is not defined\n - debug:\n msg: \"openshift_master_url is required when run_master_tasks=false\"\n... | {
"task_files": 8,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 9,
"total_bytes": 3563,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/reboot_template_broker | 7,695 | [
"no_license"
] | [
{
"path": "roles/reboot_template_broker/tasks/main.yml",
"content": "---\n# tasks file for reboot_template_broker\n- name: Dump current template broker\n shell: oc get clusterservicebroker template-service-broker -o yaml > /tmp/template-service-broker.yml\n register: result\n until: result.stderr == ''\n... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 736,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/resource_limits | 7,695 | [
"no_license"
] | [
{
"path": "roles/resource_limits/tasks/main.yml",
"content": "---\n\n- set_fact:\n valid_resource_patches: '{{ resources | selectattr(\"kind\",\"defined\") | selectattr(\"name\",\"defined\") | list }}'\n\n# This allows omit to be used to prevent seconds parameter from existing when prompts are used\n- se... | {
"task_files": 2,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 3,
"total_bytes": 8934,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/resources_backup | 7,695 | [
"no_license"
] | [
{
"path": "roles/resources_backup/defaults/main.yml",
"content": "---\nresources_cronjob_name: 'resources-backup'",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 46
},
{
"path": "roles/resources_backup/tasks/main.yml",
"content": "---\n# Kube resources backup b... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 307,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/rhsso | 7,695 | [
"no_license"
] | [
{
"path": "roles/rhsso/tasks/upgrade_alerts.yml",
"content": "---\n\n- name: Delete existing prometheus rule\n shell: \"oc delete prometheusrule application-monitoring -n {{ eval_rhsso_namespace }}\"\n register: delete_cmd\n failed_when: delete_cmd.stderr != '' and 'NotFound' not in delete_cmd.stderr\n ... | {
"task_files": 17,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 23,
"total_bytes": 44252,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/rhsso-user | 7,695 | [
"no_license"
] | [
{
"path": "roles/rhsso-user/templates/rbac.yaml.j2",
"content": "---\nkind: Role\napiVersion: rbac.authorization.k8s.io/v1beta1\nmetadata:\n name: keycloak-operator\nrules:\n - apiGroups:\n - batch\n resources:\n - \"cronjobs\"\n verbs:\n - \"*\"\n - apiGroups:\n - aerogear.org\... | {
"task_files": 10,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 15,
"total_bytes": 14821,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/ups | 7,695 | [
"no_license"
] | [
{
"path": "roles/ups/templates/role_binding.yml.j2",
"content": "---\nkind: RoleBinding\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n name: unifiedpush-operator\nsubjects:\n- kind: ServiceAccount\n name: unifiedpush-operator\n namespace: {{ ups_namespace }}\nroleRef:\n kind: Role\n name: unifi... | {
"task_files": 9,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 16,
"total_bytes": 13756,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/walkthroughs | 7,695 | [
"no_license"
] | [
{
"path": "roles/walkthroughs/defaults/main.yml",
"content": "---\n# defaults file for walkthroughs\ncrud_spboot_image_tag: \"51e5091\"\ncrud_spboot_runtime_version: 1.3-8\ncrud_spboot_source_repo_url: \"https://github.com/integr8ly/spboot-example.git\"\ncrud_spboot_source_repo_ref: \"51e5091\"\ncrud_spboot... | {
"task_files": 10,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 18,
"total_bytes": 35942,
"all_permissive": false
} |
ansible_role | integr8ly/installation | fc656c250b86f50e5acd6dffd487b2699644a918 | 83 | roles/webapp | 7,695 | [
"no_license"
] | [
{
"path": "roles/webapp/tasks/uninstall.yml",
"content": "---\n- name: Remove OpenShift OAuth client\n shell: oc delete oauthclient {{ webapp_client_id }}\n register: output\n failed_when: output.stderr != '' and 'not found' not in output.stderr\n changed_when: output.rc == 0\n\n- include_role:\n nam... | {
"task_files": 12,
"has_defaults": true,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 18,
"total_bytes": 15274,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/composer | 7,695 | [
"no_license"
] | [
{
"path": "roles/composer/tasks/main.yml",
"content": "---\n- name: Ensure php taps are tapped.\n homebrew_tap: \"tap={{ item }} state=present\"\n with_items:\n - \"digitalspacestdio/php\"\n\n- name: \"Ensure digitalspacestdio/php/composer@2\"\n homebrew:\n name: \"digitalspacestdio/php/composer@2\"\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 809,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/mailhog | 7,695 | [
"no_license"
] | [
{
"path": "roles/mailhog/tasks/main.yml",
"content": "---\n- name: Ensure that taps are tapped.\n homebrew_tap: \n tap: \"{{ item }}\"\n state: \"present\"\n path: \"{{ homebrew_prefix }}/bin\"\n with_items:\n - \"digitalspacestdio/ngdev\"\n\n- name: \"Ensure mailhog\"\n homebrew:\n name: \"... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 925,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/mysql57 | 7,695 | [
"no_license"
] | [
{
"path": "roles/mysql57/tasks/main.yml",
"content": "---\n- name: Ensure that taps are tapped.\n homebrew_tap: \n tap: \"{{ item }}\"\n state: \"present\"\n path: \"/home/linuxbrew/.linuxbrew/bin\"\n with_items:\n - \"digitalspacestdio/ngdev\"\n\n- name: \"Ensure mysql80\"\n homebrew:\n nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 909,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/mysql80 | 7,695 | [
"no_license"
] | [
{
"path": "roles/mysql80/tasks/main.yml",
"content": "---\n- name: Ensure that taps are tapped.\n homebrew_tap: \n tap: \"{{ item }}\"\n state: \"present\"\n path: \"/home/linuxbrew/.linuxbrew/bin\"\n with_items:\n - \"digitalspacestdio/ngdev\"\n\n- name: \"Ensure mysql57\"\n homebrew:\n nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 909,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/mysql84 | 7,695 | [
"no_license"
] | [
{
"path": "roles/mysql84/tasks/main.yml",
"content": "---\n- name: Ensure that taps are tapped.\n homebrew_tap: \n tap: \"{{ item }}\"\n state: \"present\"\n path: \"/home/linuxbrew/.linuxbrew/bin\"\n with_items:\n - \"digitalspacestdio/ngdev\"\n\n- name: \"Ensure mysql84\"\n homebrew:\n nam... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 909,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/nginx | 7,695 | [
"no_license"
] | [
{
"path": "roles/nginx/tasks/main.yml",
"content": "---\n- name: Ensure that taps are tapped.\n homebrew_tap: \n tap: \"{{ item }}\"\n state: \"present\"\n path: \"{{ homebrew_prefix }}/bin\"\n with_items:\n - \"digitalspacestdio/ngdev\"\n\n- name: \"Ensure nginx\"\n homebrew:\n name: \"digi... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 267,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/opensearch | 7,695 | [
"no_license"
] | [
{
"path": "roles/opensearch/tasks/main.yml",
"content": "---\n- name: Ensure that taps are tapped.\n homebrew_tap: \n tap: \"{{ item }}\"\n state: \"present\"\n path: \"/home/linuxbrew/.linuxbrew/bin\"\n with_items:\n - \"digitalspacestdio/ngdev\"\n tags:\n - opensearch\n\n- name: \"Ensure... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1041,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/php72 | 7,695 | [
"no_license"
] | [
{
"path": "roles/php72/tasks/main.yml",
"content": "---\n- import_tasks: php-abstract/tasks.yml",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 42
},
{
"path": "roles/php72/defaults/main.yml",
"content": "---\nphp_version: php72\nphp_version_num: \"7.2\"\nphp_f... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 173,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/phpNone | 7,695 | [
"no_license"
] | [
{
"path": "roles/phpNone/tasks/main.yml",
"content": "---\n - name: \"Remove all php versions\"\n shell: \"{{ homebrew_prefix }}/bin/brew list | grep 'php[0-9]\\\\+' && {{ homebrew_prefix }}/bin/brew uninstall --ignore-dependencies $({{ homebrew_prefix }}/bin/brew list | grep 'php[0-9]\\\\+') || /bin/tr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 851,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/postgresql15 | 7,695 | [
"no_license"
] | [
{
"path": "roles/postgresql15/tasks/main.yml",
"content": "---\n- name: Ensure that taps are tapped.\n homebrew_tap: \n tap: \"{{ item }}\"\n state: \"present\"\n path: \"/home/linuxbrew/.linuxbrew/bin\"\n with_items:\n - \"digitalspacestdio/ngdev\"\n\n- name: \"Ensure postgresql15\"\n homebr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1006,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/redis | 7,695 | [
"no_license"
] | [
{
"path": "roles/redis/tasks/main.yml",
"content": "---\n- name: Ensure that taps are tapped.\n homebrew_tap: \n tap: \"{{ item }}\"\n state: \"present\"\n path: \"/home/linuxbrew/.linuxbrew/bin\"\n with_items:\n - \"digitalspacestdio/ngdev\"\n\n- name: \"Ensure digitalspace-redis\"\n homebre... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 921,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/supervisor | 7,695 | [
"no_license"
] | [
{
"path": "roles/supervisor/tasks/main.yml",
"content": "---\n- name: Ensure that taps are tapped.\n homebrew_tap: \n tap: \"{{ item }}\"\n state: \"present\"\n path: \"{{ homebrew_prefix }}/bin\"\n with_items:\n - \"digitalspacestdio/ngdev\"\n\n- name: \"Ensure supervisor\"\n homebrew:\n na... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 279,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/system-base | 7,695 | [
"no_license"
] | [
{
"path": "roles/system-base/tasks/main.yml",
"content": "---\n# - name: Disable ipv6\n# lineinfile:\n# dest: '/etc/sysctl.conf'\n# line: '{{ item }}'\n# with_items:\n# - 'net.ipv6.conf.all.disable_ipv6 = 1'\n# - 'net.ipv6.conf.default.disable_ipv6 = 1'\n# - 'net.ipv6.conf.lo.disable... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1855,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/system-homebrew | 7,695 | [
"no_license"
] | [
{
"path": "roles/system-homebrew/tasks/main.yml",
"content": "---\n- name: Userhome Linux\n ansible.builtin.set_fact:\n developer_user_home: \"/home/{{ developer_username }}\"\n when: \"ansible_system == 'Linux'\"\n\n- name: Userhome Darwin\n ansible.builtin.set_fact:\n developer_user_home: \"/User... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 6881,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/user-developer | 7,695 | [
"no_license"
] | [
{
"path": "roles/user-developer/defaults/main.yml",
"content": "---\ndeveloper_uid: 1000\ndeveloper_username: developer\ndeveloper_password_hash: ",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 79
},
{
"path": "roles/user-developer/tasks/main.yml",
"content": ... | {
"task_files": 1,
"has_defaults": true,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 2318,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/user-developer-tmux | 7,695 | [
"no_license"
] | [
{
"path": "roles/user-developer-tmux/handlers/main.yml",
"content": "---\n- name: Restart user tmux service\n become: true\n become_user: \"{{ developer_username }}\"\n systemd:\n daemon-reload: yes\n name: tmux.service\n state: restarted\n scope: user\n # We mark the service as Type=notif... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 1659,
"all_permissive": false
} |
ansible_role | cloudspacesh/coder-ansible-php-stack | 42ea19427edbf768950b47b5fb0970d189f371eb | 0 | roles/zsh | 7,695 | [
"no_license"
] | [
{
"path": "roles/zsh/tasks/main.yml",
"content": "---\n- name: Ensure ZSH,GIT packages\n package: \n name: \n - zsh\n - git-core\n state: present\n register: installation\n when: \"ansible_system == 'Linux'\"\n become: true\n\n- name: Check if .oh-my-zsh exists\n stat:\n path: \"/roo... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3944,
"all_permissive": false
} |
ansible_role | IsaacArenas/AnsibleBasic | 52be1ab0cbce2ae0c2cba0b88d9be17369488b5d | 0 | roles/ping | 7,695 | [
"no_license"
] | [
{
"path": "roles/ping/tasks/main.yml",
"content": "# Disabling warnings\n- name: role Task 1\n debug: msg=\"name is {{ i_name }} {{ i_lastname }}\"",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 93
}
] | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 93,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/certbot | 7,695 | [
"no_license"
] | [
{
"path": "roles/certbot/tasks/main.yaml",
"content": "- name: \"Install snapd\"\n ansible.builtin.apt:\n name: snapd\n when: ss_use_https\n\n- name: Install snap core\n community.general.snap:\n name: core\n when: ss_use_https\n\n- name: Install certbot\n community.general.snap:\n name: certb... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 459,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/css_flood | 7,695 | [
"no_license"
] | [
{
"path": "roles/css_flood/tasks/main.yaml",
"content": "# install_flood.sh (on the css server machine this is needed for auth cache, which is then shared by auth-cache-webservice)\n- name: clone css-flood\n ansible.builtin.git:\n repo: https://github.com/SolidLabResearch/css-flood.git\n dest: /usr/... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 604,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/css_populate | 7,695 | [
"no_license"
] | [
{
"path": "roles/css_populate/tasks/main.yaml",
"content": "- name: clone css-populate\n ansible.builtin.git:\n repo: https://github.com/SolidLabResearch/css-populate.git\n dest: /usr/local/src/css-populate\n when: install_server_css_populate\n\n- name: \"Install css-populate\"\n community.general.... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1380,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/docker | 7,695 | [
"no_license"
] | [
{
"path": "roles/docker/tasks/main.yaml",
"content": "- name: Ensure /etc/apt/keyrings/ exists\n ansible.builtin.file:\n path: /etc/apt/keyrings/\n owner: root\n group: root\n state: directory\n mode: u=rwx,g=rx,o=rx\n\n- name: \"Add docker apt key\"\n ansible.builtin.apt_key:\n url: htt... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1691,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/fqdn | 7,695 | [
"no_license"
] | [
{
"path": "roles/fqdn/tasks/main.yaml",
"content": "- name: Find system FQDN (if any)\n # Check if a usable FQDN is available (not a bare IPv4 or IPv6 and not \"localhost\")\n # Prefer FQDN from inventory ansible_ssh_host, use ansible_facts['fqdn'] as fallback\n block:\n - name: Find system FQDN (if a... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2145,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/install_client_scripts | 7,695 | [
"no_license"
] | [
{
"path": "roles/install_client_scripts/tasks/main.yaml",
"content": "- name: Install bin files for client\n ansible.builtin.copy:\n src: \"files_client/{{ item }}\"\n dest: \"/usr/local/bin/{{ item }}\"\n owner: root\n group: root\n mode: u=rwx,g=rx,o=rx\n loop:\n - flood-init.sh\n -... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1096,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/install_common_ss | 7,695 | [
"no_license"
] | [
{
"path": "roles/install_common_ss/tasks/main.yaml",
"content": "- name: Install Exe provide_certs.sh and setup_ss_init.sh\n ansible.builtin.copy:\n src: \"files_ss/{{ item }}\"\n dest: \"/usr/local/bin/{{ item }}\"\n owner: root\n group: root\n mode: u=rwx,g=rx,o=rx\n loop:\n - provide_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1369,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/install_css | 7,695 | [
"no_license"
] | [
{
"path": "roles/install_css/tasks/main.yaml",
"content": "- name: \"Install relaxed-json\"\n # rjson is the cli tool of relaxed-json. See https://github.com/phadej/relaxed-json\n # see also https://github.com/jqlang/jq/wiki/FAQ#processing-not-quite-valid-json\n # this is used to manipulate CSS config, e... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 4351,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/install_kss | 7,695 | [
"no_license"
] | [
{
"path": "roles/install_kss/tasks/main.yaml",
"content": "- name: find kvasir repo project access token\n ansible.builtin.set_fact:\n kvasir_repo_user: \"{{ lookup('ansible.builtin.env', 'KVASIR_REPO_USERNAME', default=Undefined) }}\"\n kvasir_repo_pass: \"{{ lookup('ansible.builtin.env', 'KVASIR_RE... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3213,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/install_perftest_agent | 7,695 | [
"no_license"
] | [
{
"path": "roles/install_perftest_agent/tasks/main.yaml",
"content": "- name: Setup venv with PerfTest Agent\n ansible.builtin.pip:\n name: solidlab-perftest-agent\n virtualenv_command: '{{ python_exe }} -m venv'\n virtualenv: /usr/local/venv/perftest-agent/\n when: install_perftest_agent\n\n- na... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 2487,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/install_perftest_upload | 7,695 | [
"no_license"
] | [
{
"path": "roles/install_perftest_upload/tasks/main.yaml",
"content": "- name: Setup venv with PerfTest Upload\n ansible.builtin.pip:\n name: solidlab-perftest-upload\n virtualenv_command: '{{ python_exe }} -m venv'\n virtualenv: /usr/local/venv/perftest-upload/\n\n- name: Create /usr/local/bin/so... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 446,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/java | 7,695 | [
"no_license"
] | [
{
"path": "roles/java/tasks/main.yaml",
"content": "# This is java 11 on Ubuntu 20\n#- name: \"Install Java\"\n# ansible.builtin.apt:\n# name:\n# - default-jre\n# state: present\n\n- name: Ensure /etc/apt/keyrings/ exists\n ansible.builtin.file:\n path: /etc/apt/keyrings/\n owner: root\n ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1725,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/nodejs | 7,695 | [
"no_license"
] | [
{
"path": "roles/nodejs/tasks/main.yaml",
"content": "- name: Check nodejs version\n ansible.builtin.fail:\n msg: \"The nodejs version requested {{ nodejs_version }} is not the supported by this role.\"\n when: (nodejs_version != 16) and (nodejs_version != 18)\n\n- name: \"Add nodesource key\"\n ansib... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1978,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/perfstat | 7,695 | [
"no_license"
] | [
{
"path": "roles/perfstat/tasks/main.yaml",
"content": "- name: clone solidlab-perfstat\n ansible.builtin.git:\n repo: https://github.com/SolidLabResearch/solidlab-perfstat.git\n dest: /usr/local/src/solidlab-perfstat\n when: install_perfstat\n\n- name: Setup venv with solidlab-perfstat\n ansible.b... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 814,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/python | 7,695 | [
"no_license"
] | [
{
"path": "roles/python/tasks/main.yaml",
"content": "# - name: Check python version\n# ansible.builtin.fail:\n# msg: \"The system python version {{ ansible_facts['python_version' ]}} is too old. Python 3.11 or newer is required.\"\n# when: (ansible_facts['python']['version']['major'] !=... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1612,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/redis | 7,695 | [
"no_license"
] | [
{
"path": "roles/redis/tasks/main.yaml",
"content": "- name: \"Add Redis apt key\"\n ansible.builtin.apt_key:\n url: https://packages.redis.io/gpg\n state: present\n\n- name: \"Add Redis ppa\"\n ansible.builtin.apt_repository:\n repo: deb https://packages.redis.io/deb {{ ansible_distribution_rele... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 605,
"all_permissive": false
} |
ansible_role | SolidLabResearch/solidlab-env-setup | 2d69f072c1ac01197666b3588357042163f6ae6f | 1 | roles/solid_perftest_tools | 7,695 | [
"no_license"
] | [
{
"path": "roles/solid_perftest_tools/tasks/main.yaml",
"content": "- name: clone solid-perftest-tools\n ansible.builtin.git:\n repo: https://github.com/SolidLabResearch/solid-perftest-tools.git\n# repo: <EMAIL>:wvdemeer/solid-perftest-tools.git\n dest: /usr/local/src/solid-perftest-tools\n for... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1378,
"all_permissive": false
} |
ansible_role | smil-encieux/ansible_start_k8s | 8c0d9cb83569f76afddd60648731e8cc5a4b4c6d | 0 | roles/after_install | 7,701 | [
"no_license"
] | [
{
"path": "roles/after_install/tasks/main.yml",
"content": "---\n\n- name: Extract Helm\n unarchive:\n src: \"{{ share_dir }}/helm.tar.gz\"\n dest: /tmp\n remote_src: yes\n\n# 注意,这里需要根据实际情况修改\n- name: Move Helm binary\n copy:\n src: /tmp/linux-arm64/helm\n dest: /usr/local/bin/helm\n mod... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1411,
"all_permissive": false
} |
ansible_role | smil-encieux/ansible_start_k8s | 8c0d9cb83569f76afddd60648731e8cc5a4b4c6d | 0 | roles/common | 7,701 | [
"no_license"
] | [
{
"path": "roles/common/handlers/main.yml",
"content": "---\n- name: Reload sshd\n service:\n name: sshd\n state: reloaded\n\n- name: Reload Docker\n systemd:\n name: docker\n state: restarted\n daemon_reload: yes",
"license_type": "no_license",
"detected_licenses": [],
"size_by... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 2,
"total_bytes": 4646,
"all_permissive": false
} |
ansible_role | smil-encieux/ansible_start_k8s | 8c0d9cb83569f76afddd60648731e8cc5a4b4c6d | 0 | roles/haproxy | 7,701 | [
"no_license"
] | [
{
"path": "roles/haproxy/tasks/main.yml",
"content": "---\n- name: Install HAProxy\n apt:\n name: haproxy\n state: present\n update_cache: yes\n\n- name: Copy HAProxy configuration\n template:\n src: haproxy.cfg.j2\n dest: /etc/haproxy/haproxy.cfg\n notify: Restart HAProxy\n\n- name: Enabl... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 1297,
"all_permissive": false
} |
ansible_role | smil-encieux/ansible_start_k8s | 8c0d9cb83569f76afddd60648731e8cc5a4b4c6d | 0 | roles/master | 7,701 | [
"no_license"
] | [
{
"path": "roles/master/tasks/main.yml",
"content": "---\n- name: Pull required images\n command: >\n kubeadm config images pull\n --cri-socket unix:///var/run/cri-dockerd.sock\n --image-repository {{ image_repository }}\n --kubernetes-version v{{ kubernetes_version.split('-')[0] }}\n\n- name: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 3579,
"all_permissive": false
} |
ansible_role | smil-encieux/ansible_start_k8s | 8c0d9cb83569f76afddd60648731e8cc5a4b4c6d | 0 | roles/worker | 7,701 | [
"no_license"
] | [
{
"path": "roles/worker/tasks/main.yml",
"content": "---\n- name: Install NFS client\n apt:\n name: nfs-common\n state: present\n update_cache: yes\n become: yes\n\n- name: Check if node is already joined\n stat:\n path: /etc/kubernetes/kubelet.conf\n register: kubelet_conf\n\n- name: Displa... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 818,
"all_permissive": false
} |
ansible_role | iCyLand/ansible-playbook | 1a551c715cf9ee4b02d9ab2c4c0fc20e92e9ce08 | 0 | roles/common | 7,701 | [
"no_license"
] | [
{
"path": "roles/common/handlers/main.yml",
"content": "---\n- name: restart sshd\n service: name=sshd state=restarted\n\n- name: restart snmpd\n service: name=snmpd state=restarted\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 123
},
{
"path": "roles/common/... | {
"task_files": 7,
"has_defaults": false,
"has_handlers": true,
"has_templates": false
} | {
"file_count": 8,
"total_bytes": 3005,
"all_permissive": false
} |
ansible_role | iCyLand/ansible-playbook | 1a551c715cf9ee4b02d9ab2c4c0fc20e92e9ce08 | 0 | roles/repo-remi | 7,701 | [
"no_license"
] | [
{
"path": "roles/repo-remi/tasks/main.yml",
"content": "---\n- yum: name=\"http://mirrors.thzhost.com/remi/enterprise/remi-release-7.rpm\" state=present\n when: ansible_os_family == \"RedHat\" and ansible_distribution_major_version == \"7\"\n- yum: name=\"http://mirrors.thzhost.com/remi/enterprise/remi-rel... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 615,
"all_permissive": false
} |
ansible_role | Mendyslam/altschool-second-semester-project-cloud-engineering | 141c60174f93fe5bb2db84fd09b852c09c72da5d | 0 | roles/php | 7,701 | [
"no_license"
] | [
{
"path": "roles/php/tasks/main.yaml",
"content": "---\n\n- name: Add gpg key for php package repository\n ansible.builtin.apt_key:\n url: https://packages.sury.org/php/apt.gpg\n state: present\n become: true\n notify: Update apt\n\n- name: Add php package repository\n ansible.builtin.apt_reposito... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 981,
"all_permissive": false
} |
ansible_role | bernard-sh/ansible-tower-setup | bd6ff49b714d40dd7ccdaf0ccf9f6c502e3ed227 | 0 | roles/config_dynamic | 7,701 | [
"no_license"
] | [
{
"path": "roles/config_dynamic/tasks/main.yml",
"content": "---\n- name: Set database to internal or external\n set_fact:\n config_dynamic_database: \"{{ ( (pg_host is not defined or pg_host == '') or (pg_host | match('/.*')) ) | ternary('internal', 'external') }}\"\n\n- name: Database decision\n debu... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1847,
"all_permissive": false
} |
ansible_role | bernard-sh/ansible-tower-setup | bd6ff49b714d40dd7ccdaf0ccf9f6c502e3ed227 | 0 | roles/tvlk-config | 7,701 | [
"no_license"
] | [
{
"path": "roles/tvlk-config/tasks/main.yml",
"content": "- name: overwrite nginx config\n template:\n src: nginx.conf\n dest: /etc/nginx/nginx.conf\n mode: 0644\n owner: root\n group: root\n notify:\n - restart nginx\n\n- name: install required package\n pip:\n name: \"{{ item }}\"\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 4795,
"all_permissive": false
} |
ansible_role | richardev84/noaa-playbooks-projects | d7d28f6a14e226273b4c3eeca36457dba0956218 | 0 | roles/configure | 7,701 | [
"no_license"
] | [
{
"path": "roles/configure/templates/index.html.j2",
"content": "<html>\n<head>\n <title>Welcome</title>\n</head>\n<body>\n <h1>Hello from {{ ansible_distribution }}!</h1>\n</body>\n</html>\n",
"license_type": "no_license",
"detected_licenses": [],
"size_bytes": 124
},
{
"path": "r... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": true
} | {
"file_count": 2,
"total_bytes": 569,
"all_permissive": false
} |
ansible_role | richardev84/noaa-playbooks-projects | d7d28f6a14e226273b4c3eeca36457dba0956218 | 0 | roles/install | 7,701 | [
"no_license"
] | [
{
"path": "roles/install/tasks/main.yml",
"content": "---\n- name: Install common packages\n ansible.builtin.package:\n name:\n - vim\n - curl\n - git\n state: present\n\n- name: Install packages for Red Hat-based systems\n ansible.builtin.yum:\n name:\n - httpd\n state: pr... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 442,
"all_permissive": false
} |
ansible_role | richardev84/noaa-playbooks-projects | d7d28f6a14e226273b4c3eeca36457dba0956218 | 0 | roles/update | 7,701 | [
"no_license"
] | [
{
"path": "roles/update/tasks/main.yml",
"content": "---\n- name: Update packages for Red Hat-based systems\n ansible.builtin.yum:\n name: \"*\"\n state: latest\n when: ansible_os_family == \"RedHat\"\n\n- name: Update packages for Debian-based systems\n ansible.builtin.apt:\n update_cache: yes\... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 298,
"all_permissive": false
} |
ansible_role | bradfield7/Project2 | 0854d0a304185d59fce8ec49f14611a5ff51b6f6 | 0 | config/roles/docker | 7,701 | [
"no_license"
] | [
{
"path": "config/roles/docker/tasks/main.yml",
"content": "---\n# tasks file for docker\n\n- name: Install docker\n apt:\n name: python-docker\n state: latest\n update_cache: true\n become: yes\n\n- name: Install pip\n apt:\n name: python3-pip\n state: latest\n update_cache: true\n be... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 1014,
"all_permissive": false
} |
ansible_role | bradfield7/Project2 | 0854d0a304185d59fce8ec49f14611a5ff51b6f6 | 0 | config/roles/swarm-manager | 7,701 | [
"no_license"
] | [
{
"path": "config/roles/swarm-manager/tasks/main.yml",
"content": "---\n# tasks file for swarm-manager\n\n- name: \"start swarm\"\n shell: docker swarm init\n become: yes\n ignore_errors: true\n\n- name: \"get swarm info\"\n docker_swarm_info:\n register: info\n\n- name: pip install dependencies\n pip... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 434,
"all_permissive": false
} |
ansible_role | bradfield7/Project2 | 0854d0a304185d59fce8ec49f14611a5ff51b6f6 | 0 | config/roles/swarm-worker | 7,701 | [
"no_license"
] | [
{
"path": "config/roles/swarm-worker/tasks/main.yml",
"content": "---\n# tasks file for swarm-worker\n\n- name: \"join worker\"\n docker_swarm:\n state: join\n advertise_addr: swarmworker\n join_token: \"{{ hostvars['swarmmanager']['info']['swarm_facts']['JoinTokens']['Worker'] }}\"\n remote_ad... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 258,
"all_permissive": false
} |
ansible_role | donzx6/regdock | b647aeb24da1a4f2ff53b914ce519fb02ebe7fc6 | 0 | roles/Dockerclean | 7,701 | [
"no_license"
] | [
{
"path": "roles/Dockerclean/tasks/main.yml",
"content": "---\n- name: delete container\n docker_container:\n name: dbapp\n state: absent\n \n- name: delete webapp \n docker_container:\n name: webapp\n state: absent\n \n- name: Delete a network, disconnecting all containers\n docker_... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 543,
"all_permissive": false
} |
ansible_role | donzx6/regdock | b647aeb24da1a4f2ff53b914ce519fb02ebe7fc6 | 0 | roles/dbapp_install | 7,701 | [
"no_license"
] | [
{
"path": "roles/dbapp_install/tasks/main.yml",
"content": "---\n- name: Re-create a db container\n docker_container:\n name: dbapp\n image: docker.donemmerson.co.uk:443/usrdb:{{ TAG }}\n state: started\n exposed_ports:\n - 3306\n published_ports: \n - \"3306:3306\"\n networks: ... | {
"task_files": 1,
"has_defaults": false,
"has_handlers": false,
"has_templates": false
} | {
"file_count": 1,
"total_bytes": 267,
"all_permissive": false
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.