You've already forked helm-gitea
The following pull request removes the `gitea` directory. With regard to maintaining act_runners in a separate git repository or helm chart, this additional directory becomes redundant. Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/958 Reviewed-by: DaanSelen <daanselen@noreply.gitea.com> Co-authored-by: Markus Pesch <markus.pesch@cryptic.systems> Co-committed-by: Markus Pesch <markus.pesch@cryptic.systems>
27 lines
650 B
YAML
27 lines
650 B
YAML
suite: Test ingress with structured paths
|
|
templates:
|
|
- templates/ingress.yaml
|
|
tests:
|
|
- it: should work with structured path definitions
|
|
set:
|
|
ingress.enabled: true
|
|
ingress.hosts:
|
|
- host: git.devxy.io
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
asserts:
|
|
- hasDocuments:
|
|
count: 1
|
|
- isKind:
|
|
of: Ingress
|
|
- equal:
|
|
path: spec.rules[0].host
|
|
value: "git.devxy.io"
|
|
- equal:
|
|
path: spec.rules[0].http.paths[0].path
|
|
value: "/"
|
|
- equal:
|
|
path: spec.rules[0].http.paths[0].pathType
|
|
value: "Prefix"
|