All notable changes to the AnyCable Helm Chart will be documented in this file.
-
Breaking: Minimal supported Kubernetes version is 1.23
-
Breaking: Ingress configuration structure completely refactored
ingress.enable→ingress.enabled(for consistency)- Removed complex
ingress.acme.hostsandingress.nonAcme.hostsstructure - Replaced with standard
ingress.hosts[]array withhostandpaths[] - Removed
ingress.path(now per-host inpaths[]) ingress.tls[]now optional whenacme.enabled: true(auto-generated)
-
values.yaml updates
- Updated default image tag:
1.6.3→1.6.6 - Changed
replicas:1→2(better default for HA) - Removed deprecated ACME ingress structure
- Added simplified ingress configuration with ACME switch
- Updated default image tag:
Ingress Configuration
Before (v0.6.1):
ingress:
enable: true
path: /cable
acme:
hosts:
- anycable.example.com
nonAcme:
hosts:
- secretName: example-tls
names:
- anycable.example.com
tls:
crt: ""
key: ""After (v0.7.0):
ingress:
enabled: true
acme:
enabled: true
hosts:
- host: anycable.example.com
paths:
- path: /cableSee git history for changes in v0.6.1 and earlier releases.