From f7fa34604375c3c80351fd117cd43f4db1c63012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfred=20G=C3=B6ppel?= <43101280+alfi0812@users.noreply.github.com> Date: Sun, 1 Feb 2026 16:56:47 +0100 Subject: [PATCH] fix(ci): fix-ingress-testing (#44426) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [ ] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> --- .github/workflows/common-tests.yaml | 4 +- .../common-test/ci/ingress-wo-tls-values.yaml | 109 ++++++++++++++++++ charts/library/common/Chart.yaml | 3 +- 3 files changed, 112 insertions(+), 4 deletions(-) create mode 100644 charts/library/common-test/ci/ingress-wo-tls-values.yaml diff --git a/.github/workflows/common-tests.yaml b/.github/workflows/common-tests.yaml index 4a43c359d8c..db1c6c1d01d 100644 --- a/.github/workflows/common-tests.yaml +++ b/.github/workflows/common-tests.yaml @@ -164,8 +164,8 @@ jobs: - persistence-values.yaml - extra-containers-values.yaml - rbac-values.yaml - # Disable ingress tests for, due to certs not being greenlit during install test - # - ingress-values.yaml + # Only run ingress tests without as no valid certissuer -> helm v4 waits for cert to be ready + - ingress-wo-tls-values.yaml - networkPolicy-values.yaml # TODO: broken # - codeserver-values.yaml diff --git a/charts/library/common-test/ci/ingress-wo-tls-values.yaml b/charts/library/common-test/ci/ingress-wo-tls-values.yaml new file mode 100644 index 00000000000..c47921a75de --- /dev/null +++ b/charts/library/common-test/ci/ingress-wo-tls-values.yaml @@ -0,0 +1,109 @@ +workload: + main: + enabled: true + podSpec: + containers: + main: + enabled: true + args: + - --port + - "8080" + probes: + liveness: + enabled: true + readiness: + enabled: true + startup: + enabled: true + +service: + main: + enabled: true + ports: + main: + enabled: true + port: 8080 + protocol: http + autolink: + enabled: true + ports: + autolink: + enabled: true + protocol: http + port: 8081 + +# -- Configure the ingresses for the chart here. +# Additional ingresses can be added by adding a dictionary key similar to the 'main' ingress. +# @default -- See below +ingress: + main: + enabled: true + hosts: + - host: chart-example.local + paths: + - path: / + pathType: Prefix + tls: [] + + certificateissuer: + enabled: true + certificateIssuer: someissuer + hosts: + - host: ci.chart-example.local + paths: + - path: / + pathType: Prefix + service: + name: + port: + tls: [] + + tlscertificateissuer: + enabled: true + hosts: + - host: citls.chart-example.local + paths: + - path: / + pathType: Prefix + service: + name: + port: + tls: [] + + label: + enabled: true + labels: + labelexample1: labelvalue2 + hosts: + - host: label.chart-example.local + paths: + - path: / + pathType: Prefix + service: + name: + port: + tls: [] + + autolink: + enabled: true + hosts: + - host: label.chart-example.local + paths: + - path: / + pathType: Prefix + service: + name: + port: + tls: [] + autoLink: true + + notls: + enabled: true + hosts: + - host: notls.chart-example.local + paths: + - path: / + pathType: Prefix + service: + name: + port: diff --git a/charts/library/common/Chart.yaml b/charts/library/common/Chart.yaml index e8cf19b412d..2b5c424d93e 100644 --- a/charts/library/common/Chart.yaml +++ b/charts/library/common/Chart.yaml @@ -50,5 +50,4 @@ sources: - https://github.com/trueforge-org/truecharts/tree/master/charts/library/common - https://hub.docker.com/_/ type: library -version: 28.29.48 - +version: 28.29.49