Files
helm-gitea/unittests/helm/values-conflicting-checks.yaml
T
williamp 9d9ea09afb
commitlint / check-and-test (pull_request) Successful in 3s
check-and-test / check-and-test (pull_request) Failing after 36s
feat: Gateway API support, in lieu of Ingress
2026-07-04 12:22:32 -04:00

26 lines
720 B
YAML

suite: Values conflicting checks
release:
name: gitea-unittests
namespace: testing
tests:
- it: fails when trying to configure valkey and valkey-cluster the same time
set:
valkey-cluster:
enabled: true
valkey:
enabled: true
asserts:
- failedTemplate:
errorMessage: valkey and valkey-cluster cannot be enabled at the same time. Please only choose one.
- it: fails when trying to enable ingress and gateway httpRoute at the same time
set:
ingress:
enabled: true
gateway:
httpRoute:
enabled: true
asserts:
- failedTemplate:
errorMessage: You cannot enable both Ingress and HTTPRoute at the same time