-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Marcus Noble <[email protected]>
- Loading branch information
1 parent
49e01ec
commit 01be7c9
Showing
6 changed files
with
80 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
{{- define "registry-secret" -}} | ||
{{- if and .Values.registry .Values.registry.configure -}} | ||
{{- if .Values.registry -}} | ||
{{- if .Values.registry.configure -}} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "resource.default.name" $ }}-registry-configuration | ||
name: {{ include "resource.default.name" $ }}-registry-configuration | ||
data: | ||
registry-config.toml: {{ tpl ($.Files.Get "files/etc/containerd/conf.d/registry-config.toml") $ | b64enc | quote }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- end -}} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,22 +46,73 @@ network: | |
# prefixListID is the ID of the Managed Prefix List to use when `mode` is set to `UserManaged`. | ||
prefixListID: "" | ||
|
||
# subnets defines all the subnets for a cluster. | ||
# There must be at least as many as the value of `availabilityZoneUsageLimit` and all subnets must be within the `vpcCIDR` range. | ||
subnets: | ||
- cidrBlock: 10.0.0.0/18 | ||
- cidrBlock: 10.0.0.0/23 | ||
availabilityZone: eu-west-1a | ||
isPublic: true | ||
tags: | ||
subnet.giantswarm.io/role: load-balancers | ||
- cidrBlock: 10.0.2.0/23 | ||
availabilityZone: eu-west-1b | ||
isPublic: true | ||
tags: | ||
subnet.giantswarm.io/role: load-balancers | ||
- cidrBlock: 10.0.4.0/23 | ||
availabilityZone: eu-west-1c | ||
isPublic: true | ||
tags: | ||
subnet.giantswarm.io/role: load-balancers | ||
|
||
- cidrBlock: 10.0.6.0/23 | ||
availabilityZone: eu-west-1a | ||
isPublic: false | ||
tags: | ||
subnet.giantswarm.io/role: control-plane | ||
- cidrBlock: 10.0.8.0/23 | ||
availabilityZone: eu-west-1b | ||
isPublic: false | ||
tags: | ||
subnet.giantswarm.io/role: control-plane | ||
- cidrBlock: 10.0.10.0/23 | ||
availabilityZone: eu-west-1c | ||
isPublic: false | ||
tags: | ||
subnet.giantswarm.io/role: control-plane | ||
|
||
- cidrBlock: 10.0.64.0/18 | ||
availabilityZone: eu-west-1a | ||
isPublic: false | ||
tags: | ||
subnet.giantswarm.io/role: workers | ||
- cidrBlock: 10.0.128.0/18 | ||
availabilityZone: eu-west-1b | ||
isPublic: false | ||
tags: | ||
subnet.giantswarm.io/role: workers | ||
- cidrBlock: 10.0.192.0/18 | ||
availabilityZone: eu-west-1c | ||
isPublic: false | ||
tags: | ||
subnet.giantswarm.io/role: workers | ||
|
||
|
||
bastion: | ||
enabled: true | ||
instanceType: t3.small | ||
replicas: 1 | ||
subnetTags: | ||
- subnet.giantswarm.io/role: control-plane | ||
|
||
controlPlane: | ||
instanceType: m5.xlarge | ||
rootVolumeSizeGB: 120 | ||
etcdVolumeSizeGB: 100 | ||
containerdVolumeSizeGB: 100 | ||
kubeletVolumeSizeGB: 100 | ||
subnetTags: | ||
- subnet.giantswarm.io/role: control-plane | ||
|
||
machinePools: | ||
- name: def00 # Name of node pool. | ||
|
@@ -76,6 +127,8 @@ machinePools: | |
# - key: "" | ||
# value: "" | ||
# effect: "" # Valid effects are NoSchedule, PreferNoSchedule and NoExecute. | ||
subnetTags: | ||
- subnet.giantswarm.io/role: workers | ||
|
||
sshSSOPublicKey: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM4cvZ01fLmO9cJbWUj7sfF+NhECgy+Cl0bazSrZX7sU [email protected]" | ||
flatcarAWSAccount: "075585003325" | ||
|