mirror of
https://github.com/GothenburgBitFactory/taskchampion-sync-server.git
synced 2026-08-22 14:53:45 +00:00
Add more specific settings for HTTPRoute (#203)
* Adding Helm chart * Update maintainer * Updating filesystem settings to prevent issues * CREATE_CLIENTS is now true by default * Add name override options * Validation for postges * Fix plain connection string in pod env * Simplifying secret management * Fix port quoting * Init container to run sql file * Fix port type * Fix secret management * Working now * Fixing Postgres connection issue * Upgrade postgres init container * Auto add UUIDs when starting postgres * feat: Use standard value names for adding HTTPReoute * fix: Remove merge issues * chore: bump version
This commit is contained in:
@ -38,8 +38,36 @@ ingress:
|
||||
# HTTPRoute configuration (Kubernetes Gateway API)
|
||||
httpRoute:
|
||||
enabled: false
|
||||
annotations: {}
|
||||
|
||||
# List of parent gateway references.
|
||||
# name is required; namespace and sectionName are optional.
|
||||
parentRefs: []
|
||||
# parentRefs:
|
||||
# - name: my-gateway
|
||||
# namespace: gateway-system # optional — cross-namespace gateway reference
|
||||
# sectionName: https # optional — targets a specific listener on the gateway
|
||||
|
||||
# List of hostnames the route applies to.
|
||||
hostnames: []
|
||||
# hostnames:
|
||||
# - tasks.example.com
|
||||
# - tasks.internal.example.com
|
||||
|
||||
# List of routing rules. Each rule matches a path and forwards to this chart's Service.
|
||||
# When empty, falls back to the deprecated path/port fields below.
|
||||
rules: []
|
||||
# rules:
|
||||
# - path:
|
||||
# type: PathPrefix # PathPrefix or Exact
|
||||
# value: /
|
||||
# backendPort: 8080
|
||||
|
||||
# Deprecated: use parentRefs instead
|
||||
gateway: ""
|
||||
# Deprecated: use hostnames instead
|
||||
host: ""
|
||||
# Deprecated: use rules instead
|
||||
path: "/"
|
||||
port: 8080
|
||||
|
||||
|
||||
Reference in New Issue
Block a user