first commit

This commit is contained in:
2025-11-15 19:53:41 +08:00
commit ec97834a55
14 changed files with 1828 additions and 0 deletions

15
UPGRADE.md Normal file
View File

@@ -0,0 +1,15 @@
# Upgrade
## From v0.9.x to v1.x
This version adds a more flexible way to define TLS configuration for the
Ingress resource. Users should replace any previous `certificateSecret`
configuration values with an equivalent `tls` block as described below:
```diff
- certificateSecret: plex.example.com
+ tls:
+ - hosts:
+ - plex.example.com
+ secretName: cert-example-com
```