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.
24 lines
612 B
YAML
24 lines
612 B
YAML
suite: Test ingress with implicit path defaults
|
|
templates:
|
|
- templates/ingress.yaml
|
|
tests:
|
|
- it: should use default path and pathType when no paths are specified
|
|
set:
|
|
ingress.enabled: true
|
|
ingress.hosts:
|
|
- host: git.example.com
|
|
asserts:
|
|
- hasDocuments:
|
|
count: 1
|
|
- isKind:
|
|
of: Ingress
|
|
- equal:
|
|
path: spec.rules[0].host
|
|
value: "git.example.com"
|
|
- equal:
|
|
path: spec.rules[0].http.paths[0].path
|
|
value: "/"
|
|
- equal:
|
|
path: spec.rules[0].http.paths[0].pathType
|
|
value: "Prefix"
|