fix(ci): fix-ingress-testing (#44426)

**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ 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?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ 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>
This commit is contained in:
Alfred Göppel
2026-02-01 16:56:47 +01:00
committed by GitHub
parent 53d1dda22d
commit f7fa346043
3 changed files with 112 additions and 4 deletions

View File

@@ -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

View File

@@ -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:

View File

@@ -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