-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.yaml
44 lines (32 loc) · 1.02 KB
/
vars.yaml
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
---
cluster_name: kops-xc.xc-cloud.net #kub-xcellent.xc-cloud.net
state_store: s3://kops-cluster-xc-test
## Remote access
ssh_public_key: ~/.ssh/id_rsa.pub
kops_version: 1.22.3
## Regions / Availability zones
aws_region: eu-central-1
aws_zones: eu-central-1a,eu-central-1b,eu-central-1c
# Use master_zones if you want your masters in different zones than worker nodes.
# Useful especially when you want 1 master in single zone but workers in several zones.
# When not defined, aws_zones will be sued instead
master_zones: eu-central-1a,eu-central-1b,eu-central-1c
#master_zones: eu-central-1a
## Network
dns_zone: kops-xc.xc-cloud.net
network_cidr: 172.16.0.0/16
kubernetes_networking: amazonvpc
#kubernetes_networking: amazon-vpc-routed-eni
#kubernetes_networking: weave
# Topology must be either public or private
topology: private
bastion: true
# Master configuration
master_size: t2.small
master_count: 3
#master_volume_size: 50
# Node configuration
node_size: t2.small
node_count: 3
node_autoscaler_min: 1
node_autoscaler_max: 3