forked from redhat-cop/agnosticd
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdefault_vars_gcp.yml
52 lines (40 loc) · 2.41 KB
/
default_vars_gcp.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
# The type of cloud provider this will be deployed to
cloud_provider: gcp
# Authenication credentials for Google Cloud SDK in order to create the things.
# These should be included with your secrets, but are listed here for reference
#gcp_auth_type: 'serviceaccount'
#gcp_account: '[email protected]'
#gcp_credentials_file: '/home/rhpds/openshift-test-abcdef012345.json'
#gcp_project_id: 'openshift-test'
# This needs to be created from the gcp_credentials secret (chmod 400)
gcp_credentials_file: '{{ output_dir }}/gcp_credentials_file_{{ guid }}.json'
# Setting default region in GCP (gcloud compute regions list)
#gcp_region: europe-west4
# Setting a zone
gcp_zone: "{{ gcp_region }}-b"
# This is the user that Ansible will use to connect to the nodes it is
# configuring from the admin/control host
ansible_user: gcpuser
remote_user: gcpuser
# If we dhould create DNS delegation or a bastion entry
dns_delegation: false
dns_bastion: true
# The domain that you want to add DNS entries to
# cluster_dns_zone need to be set in AgnosticV
ocp4_base_domain: "{{ cluster_dns_zone }}"
# Duplicating this in the GCP file to allow an unique default
master_instance_count: 3
# Which image family to use as a base (gcloud compute images list)
gcp_rhel_image_project: rhel-cloud
gcp_rhel_image_family: rhel-8
# Machine Type for control plane (master) nodes
master_instance_type: n2-standard-4
# Machine Type for worker nodes
worker_instance_type: n2-standard-4
# yamllint disable rule:line-length
# admin keys. Azure specific. Other platforms get these from the bastion roles
opentlc_admin_pub_keys:
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvZvn+GL0wTOsAdh1ikIQoqj2Fw/RA6F14O347rgKdpkgOQpGQk1k2gM8wcla2Y1o0bPIzwlNy1oh5o9uNjZDMeDcEXWuXbu0cRBy4pVRhh8a8zAZfssnqoXHHLyPyHWpdTmgIhr0UIGYrzHrnySAnUcDp3gJuE46UEBtrlyv94cVvZf+EZUTaZ+2KjTRLoNryCn7vKoGHQBooYg1DeHLcLSRWEADUo+bP0y64+X/XTMZOAXbf8kTXocqAgfl/usbYdfLOgwU6zWuj8vxzAKuMEXS1AJSp5aeqRKlbbw40IkTmLoQIgJdb2Zt98BH/xHDe9xxhscUCfWeS37XLp75J backdoor_opentlc_key
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDMfJo2auRqC+EbKgfJ2fanUY5iAGVBexBxKDQZxmZJdB99HRKKM6ySigratAlDP6hc7eYMFzMLh1Cr/3iN5vSnDq/8GzJoemJmAiAWZ8ETJVn3BCxntF1EoDvpPnFqiYUqPaOD3ze2Je83ZIuXrRKhldA7zQqZZi7X5OAz0dnP1jww8FMt4WnUKtL3xm8iu5tMC/pIrwVhGoW7KNDd1pk4pb7jv65/sth8WKWy4oEDypr89zWJj6yMdZz44z+ijMRu6U6TcgExlroct//k12d5AIIdath02kl0Q/pvIP+Pa93QAMbaSl296YtyHPQ3mYMjpi8jHMoK/ATSVWO4OSep rhpds@vp
# yamllint enable rule:line-length