From 062aeafd2e475675871a418f3ca23c30a5e02a6f Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Sun, 28 Apr 2024 21:24:55 +0200 Subject: [PATCH] some more linting --- .../common-test/ci/credentials-values.yaml | 48 +++++++++++++++++++ .../ci/credentialsList-values.yaml | 48 +++++++++++++++++++ 2 files changed, 96 insertions(+) create mode 100644 library/common-test/ci/credentials-values.yaml create mode 100644 library/common-test/ci/credentialsList-values.yaml diff --git a/library/common-test/ci/credentials-values.yaml b/library/common-test/ci/credentials-values.yaml new file mode 100644 index 00000000..4ee0db84 --- /dev/null +++ b/library/common-test/ci/credentials-values.yaml @@ -0,0 +1,48 @@ +service: + main: + enabled: true + primary: true + ports: + main: + enabled: true + primary: true + protocol: http + port: 8080 + +workload: + main: + enabled: true + primary: true + type: Deployment + podSpec: + containers: + main: + enabled: true + primary: true + args: + - --port + - "8080" + probes: + liveness: + enabled: true + type: http + port: "{{ .Values.service.main.ports.main.port }}" + readiness: + enabled: true + type: http + port: "{{ .Values.service.main.ports.main.port }}" + startup: + enabled: true + type: http + port: "{{ .Values.service.main.ports.main.port }}" + + +credentials: + mys3: + type: s3 + url: "" + region: "" + bucket: "" + accessKey: "" + secretKey: "" + encrKey: "" diff --git a/library/common-test/ci/credentialsList-values.yaml b/library/common-test/ci/credentialsList-values.yaml new file mode 100644 index 00000000..aa1ea290 --- /dev/null +++ b/library/common-test/ci/credentialsList-values.yaml @@ -0,0 +1,48 @@ +service: + main: + enabled: true + primary: true + ports: + main: + enabled: true + primary: true + protocol: http + port: 8080 + +workload: + main: + enabled: true + primary: true + type: Deployment + podSpec: + containers: + main: + enabled: true + primary: true + args: + - --port + - "8080" + probes: + liveness: + enabled: true + type: http + port: "{{ .Values.service.main.ports.main.port }}" + readiness: + enabled: true + type: http + port: "{{ .Values.service.main.ports.main.port }}" + startup: + enabled: true + type: http + port: "{{ .Values.service.main.ports.main.port }}" + + +credentials: + - name: mys3 + type: s3 + url: "" + region: "" + bucket: "" + accessKey: "" + secretKey: "" + encrKey: ""