mirror of
https://github.com/openshift/openshift-ansible-contrib.git
synced 2026-02-05 09:45:58 +01:00
23 lines
485 B
YAML
23 lines
485 B
YAML
---
|
|
ec2_region: us-east-1
|
|
ec2_image: ami-7e14f213
|
|
api_port: 443
|
|
console_port: 443
|
|
|
|
identity_providers:
|
|
- name: htpasswd_auth
|
|
login: true
|
|
challenge: true
|
|
kind: HTPasswdPasswordIdentityProvider
|
|
filename: /etc/origin/master/htpasswd
|
|
|
|
masters:
|
|
count: "{{ num_masters | default(3) }}"
|
|
instance_type: m4.xlarge
|
|
infra_nodes:
|
|
count: "{{ num_infra_nodes | default(2) }}"
|
|
instance_type: m4.xlarge
|
|
app_nodes:
|
|
count: "{{ num_app_nodes | default(2) }}"
|
|
instance_type: m4.xlarge
|