From a34185567fba1aa891f08abe57cf765e9ece962c Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Mon, 16 Jan 2023 17:17:23 +0100 Subject: [PATCH] add statefullset and daemmonset tests --- library/common-test/ci/daemonset-values.yaml | 9 +++++++++ library/common-test/ci/statefullset-values.yaml | 15 +++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/library/common-test/ci/daemonset-values.yaml b/library/common-test/ci/daemonset-values.yaml index 16c6b98b..332bf57d 100644 --- a/library/common-test/ci/daemonset-values.yaml +++ b/library/common-test/ci/daemonset-values.yaml @@ -3,6 +3,15 @@ image: pullPolicy: IfNotPresent tag: latest +controller: + # -- Enable the controller. + enabled: true + # -- Set the controller type. + # Valid options are: deployment | daemonset | statefulset + type: Daemonset + # -- Number of desired pods + replicas: 2 + service: main: ports: diff --git a/library/common-test/ci/statefullset-values.yaml b/library/common-test/ci/statefullset-values.yaml index 16c6b98b..0ad329fd 100644 --- a/library/common-test/ci/statefullset-values.yaml +++ b/library/common-test/ci/statefullset-values.yaml @@ -3,6 +3,21 @@ image: pullPolicy: IfNotPresent tag: latest +controller: + # -- Enable the controller. + enabled: true + # -- Set the controller type. + # Valid options are: deployment | daemonset | statefulset + type: Statefulset + # -- Number of desired pods + replicas: 2 + +volumeClaimTemplates: + test: + mountPath: /test + accessMode: "ReadWriteOnce" + size: 1Gi + service: main: ports: