Guillaume Coré
2019-04-11 9b4332995d217a7c84851688c97322642bd87224
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
apiVersion: v1beta3
baseDomain: {{ ocp4_base_domain | default(guid + subdomain_base_suffix) }}
compute:
- name: worker
  platform:
    aws:
      type: {{ worker_instance_type }}
  replicas: {{ worker_instance_count }}
controlPlane:
  name: master
  platform:
    aws:
      type: {{ master_instance_type }}
  replicas: {{ master_instance_count }}
metadata:
  name: {{ cluster_name }}
networking:
  clusterNetworks:
  - cidr: 10.128.0.0/14
    hostSubnetLength: 9
  machineCIDR: 10.0.0.0/16
  serviceCIDR: 172.30.0.0/16
  type: OpenShiftSDN
platform:
  aws:
    region: {{ aws_region_final | d(aws_region) }}
    userTags: {{ hostvars.localhost.cf_tags_final | d({}) | to_json }}
pullSecret: '{{ ocp4_token }}'
sshKey: |
  {{ idrsapub.content | b64decode }}