Skip to content

Commit

Permalink
Move cluster-aws root-level Helm values to global in capa standard test
Browse files Browse the repository at this point in the history
  • Loading branch information
nprokopic committed Nov 28, 2023
1 parent ca0414d commit 06ff1c5
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions providers/capa/standard/test_data/cluster_values.yaml
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

0 comments on commit 06ff1c5

Please sign in to comment.