Skip to content

Instantly share code, notes, and snippets.

@mateobur
Last active February 7, 2019 07:54
Show Gist options
  • Select an option

  • Save mateobur/5c745060a6abcf3f743ec14ca387f119 to your computer and use it in GitHub Desktop.

Select an option

Save mateobur/5c745060a6abcf3f743ec14ca387f119 to your computer and use it in GitHub Desktop.
Ansible Openshift Sysdig host
[OSEv3:children]
masters
etcd
nodes
[OSEv3:vars]
ansible_ssh_user=centos
ansible_sudo=true
ansible_become=true
deployment_type=origin
os_sdn_network_plugin_name='redhat/openshift-ovs-multitenant'
openshift_install_examples=true
openshift_docker_options='--selinux-enabled --insecure-registry 172.30.0.0/16'
openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', 'challenge': 'true', 'kind': 'HTPasswdPasswordIdentityProvider', 'filename': '/etc/openshift/openshift-passwd'}]
openshift_disable_check=disk_availability,docker_storage,memory_availability
[masters]
master-host-name
[etcd]
master-host-name
[nodes]
master-host-name openshift_node_labels="{'region':'infra','zone':'east'}" openshift_schedulable=true
worker1-host-name openshift_node_labels="{'region': 'primary', 'zone': 'east'}"
worker2-host-name openshift_node_labels="{'region': 'primary', 'zone': 'east'}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment