From 0165e22076b17858a8bd94bba0ff21d10459ea1a Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Thu, 21 Oct 2021 15:35:29 +0200 Subject: [PATCH] fix(Custom-App): Move test values to ci folder and use bare-bones values.yaml (#1218) --- charts/stable/custom-app/Chart.yaml | 3 +- charts/stable/custom-app/ci/test-values.yaml | 39 ++++++++++++++++++++ charts/stable/custom-app/values.yaml | 35 ------------------ 3 files changed, 40 insertions(+), 37 deletions(-) create mode 100644 charts/stable/custom-app/ci/test-values.yaml diff --git a/charts/stable/custom-app/Chart.yaml b/charts/stable/custom-app/Chart.yaml index ac6ec5ed164..386971e801d 100644 --- a/charts/stable/custom-app/Chart.yaml +++ b/charts/stable/custom-app/Chart.yaml @@ -19,10 +19,9 @@ name: custom-app sources: - https://github.com/truecharts/apps/tree/master/charts/stable/custom-app type: application -version: 2.0.21 +version: 2.0.22 annotations: truecharts.org/catagories: | - custom - truecharts.org/SCALE-support: "true" truecharts.org/grade: U diff --git a/charts/stable/custom-app/ci/test-values.yaml b/charts/stable/custom-app/ci/test-values.yaml new file mode 100644 index 00000000000..cb1e8f66705 --- /dev/null +++ b/charts/stable/custom-app/ci/test-values.yaml @@ -0,0 +1,39 @@ +image: + repository: ghcr.io/k8s-at-home/jackett + pullPolicy: IfNotPresent + tag: v0.18.1025@sha256:fc255969e675bf34818450c9b4440403edd4b20f35bb148017c292186db381ff + +securityContext: + readOnlyRootFilesystem: false + +service: + main: + enabled: true + ports: + main: + port: 9117 + portsList: + - name: "extraport" + enabled: true + port: 9118 + +serviceList: + - name: extraservice + enabled: true + portsList: + - name: "extrasvcport" + enabled: true + port: 9119 + +env: {} + # TZ: UTC + # PUID: 1001 + + +persistence: + config: + enabled: true + mountPath: "/config" + type: pvc + accessMode: ReadWriteOnce + size: "100Gi" diff --git a/charts/stable/custom-app/values.yaml b/charts/stable/custom-app/values.yaml index 3738fedd5af..11281620961 100644 --- a/charts/stable/custom-app/values.yaml +++ b/charts/stable/custom-app/values.yaml @@ -4,38 +4,3 @@ image: repository: ghcr.io/k8s-at-home/jackett pullPolicy: IfNotPresent tag: v0.18.1025@sha256:fc255969e675bf34818450c9b4440403edd4b20f35bb148017c292186db381ff - -securityContext: - readOnlyRootFilesystem: false - -service: - main: - enabled: true - ports: - main: - port: 9117 - portsList: - - name: "extraport" - enabled: true - port: 9118 - -serviceList: - - name: extraservice - enabled: true - portsList: - - name: "extrasvcport" - enabled: true - port: 9119 - -env: {} - # TZ: UTC - # PUID: 1001 - - -persistence: - config: - enabled: true - mountPath: "/config" - type: pvc - accessMode: ReadWriteOnce - size: "100Gi"