Last active
February 7, 2019 07:54
-
-
Save mateobur/5c745060a6abcf3f743ec14ca387f119 to your computer and use it in GitHub Desktop.
Ansible Openshift Sysdig host
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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