-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CAPZ: Change Helm values structure (#262)
* CAPZ: Change Helm values structure where root-level properties are moved to `.Values.global`. * update cluster values for capz --------- Signed-off-by: Mario Nitchev <[email protected]> Co-authored-by: Mario Nitchev <[email protected]>
- Loading branch information
Showing
3 changed files
with
37 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
metadata: | ||
name: "{{ .ClusterName }}" | ||
description: "E2E Test cluster" | ||
organization: "{{ .Organization }}" | ||
providerSpecific: | ||
location: "westeurope" | ||
subscriptionId: 6b1f6e4a-6d0e-4aa4-9a5a-fbaca65a23b3 | ||
nodePools: | ||
# We are using a name with 10 chars which is the max number of characters allowed by our kyverno policies. | ||
- name: nodepool-0 | ||
instanceType: Standard_D4s_v5 | ||
replicas: 2 | ||
rootVolumeSizeGB: 50 | ||
connectivity: | ||
bastion: | ||
enabled: true | ||
global: | ||
metadata: | ||
name: "{{ .ClusterName }}" | ||
description: "E2E Test cluster" | ||
organization: "{{ .Organization }}" | ||
providerSpecific: | ||
location: "westeurope" | ||
subscriptionId: 6b1f6e4a-6d0e-4aa4-9a5a-fbaca65a23b3 | ||
nodePools: | ||
# We are using a name with 10 chars which is the max number of characters allowed by our kyverno policies. | ||
nodepool-0: | ||
instanceType: Standard_D4s_v5 | ||
replicas: 2 | ||
rootVolumeSizeGB: 50 | ||
connectivity: | ||
bastion: | ||
enabled: true |
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,16 +1,17 @@ | ||
metadata: | ||
name: "{{ .ClusterName }}" | ||
description: "E2E Test cluster" | ||
organization: "{{ .Organization }}" | ||
providerSpecific: | ||
location: "westeurope" | ||
subscriptionId: 6b1f6e4a-6d0e-4aa4-9a5a-fbaca65a23b3 | ||
nodePools: | ||
# We are using a name with 10 chars which is the max number of characters allowed by our kyverno policies. | ||
- name: nodepool-0 | ||
instanceType: Standard_D4s_v5 | ||
replicas: 2 | ||
rootVolumeSizeGB: 50 | ||
connectivity: | ||
bastion: | ||
enabled: true | ||
global: | ||
metadata: | ||
name: "{{ .ClusterName }}" | ||
description: "E2E Test cluster" | ||
organization: "{{ .Organization }}" | ||
providerSpecific: | ||
location: "westeurope" | ||
subscriptionId: 6b1f6e4a-6d0e-4aa4-9a5a-fbaca65a23b3 | ||
nodePools: | ||
# We are using a name with 10 chars which is the max number of characters allowed by our kyverno policies. | ||
nodepool-0: | ||
instanceType: Standard_D4s_v5 | ||
replicas: 2 | ||
rootVolumeSizeGB: 50 | ||
connectivity: | ||
bastion: | ||
enabled: true |