Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SSO fix deprecated parameters #492

Merged
merged 3 commits into from
Mar 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions apps/kubenuc/sso/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,23 @@ spec:
cpu: 2000m
memory: 2Gi

ingress:
ingressClassName: nginx
enabled: true
hosts:
- host: sso.ddlns.net
paths:
- path: "/"
pathType: Prefix
annotations:
cert-manager.io/cluster-issuer: "letsencrypt"
nginx.ingress.kubernetes.io/ssl-redirect: "true"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
tls:
- secretName: sso-tls
hosts:
- sso.ddlns.net

authentik:
# This sends anonymous usage-data, stack traces on errors and
# performance data to sentry.io, and is fully opt-in
Expand Down Expand Up @@ -107,23 +124,6 @@ spec:
key: PG_PASS
name: sso-secrets

ingress:
ingressClassName: nginx
enabled: true
hosts:
- host: sso.ddlns.net
paths:
- path: "/"
pathType: Prefix
annotations:
cert-manager.io/cluster-issuer: "letsencrypt"
nginx.ingress.kubernetes.io/ssl-redirect: "true"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
tls:
- secretName: sso-tls
hosts:
- sso.ddlns.net

postgresql:
enabled: false

Expand Down
Loading