-
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.
Move cluster-aws root-level Helm values to global in capa standard test
- Loading branch information
Showing
1 changed file
with
22 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
metadata: | ||
name: "{{ .ClusterName }}" | ||
description: "E2E Test cluster" | ||
organization: "{{ .Organization }}" | ||
global: | ||
metadata: | ||
name: "{{ .ClusterName }}" | ||
description: "E2E Test cluster" | ||
organization: "{{ .Organization }}" | ||
|
||
controlPlane: | ||
containerdVolumeSizeGB: 15 | ||
etcdVolumeSizeGB: 50 | ||
kubeletVolumeSizeGB: 10 | ||
rootVolumeSizeGB: 10 | ||
controlPlane: | ||
containerdVolumeSizeGB: 15 | ||
etcdVolumeSizeGB: 50 | ||
kubeletVolumeSizeGB: 10 | ||
rootVolumeSizeGB: 10 | ||
|
||
# We need to pass the node pools otherwise the test called "has all the worker nodes running" will fail because it | ||
# expects to find the number of worker nodes in the helm values, but the value is not there if don't pass it, as it's | ||
# defaulted in the chart template. | ||
# @TODO: https://github.com/giantswarm/giantswarm/issues/28063 | ||
nodePools: | ||
pool0: | ||
maxSize: 2 | ||
minSize: 1 | ||
rootVolumeSizeGB: 25 | ||
spotInstances: | ||
enabled: true | ||
maxPrice: 0.2960 | ||
# We need to pass the node pools otherwise the test called "has all the worker nodes running" will fail because it | ||
# expects to find the number of worker nodes in the helm values, but the value is not there if don't pass it, as it's | ||
# defaulted in the chart template. | ||
# @TODO: https://github.com/giantswarm/giantswarm/issues/28063 | ||
nodePools: | ||
pool0: | ||
maxSize: 2 | ||
minSize: 1 | ||
rootVolumeSizeGB: 25 | ||
spotInstances: | ||
enabled: true | ||
maxPrice: 0.2960 |