dip values add

This commit is contained in:
ychangkim
2026-06-09 16:30:22 +09:00
parent 409536ee7c
commit 4064cd8971
8 changed files with 14 additions and 1 deletions
@@ -24,6 +24,7 @@ ingress:
cert-manager.io/cluster-issuer: "root-ca-issuer" cert-manager.io/cluster-issuer: "root-ca-issuer"
cert-manager.io/duration: 8760h cert-manager.io/duration: 8760h
cert-manager.io/renew-before: 720h cert-manager.io/renew-before: 720h
k8s.apisix.apache.org/plugin-config-name: https-redirect
hosts: hosts:
- host: "{{ .Name }}.{{ .Domain }}" - host: "{{ .Name }}.{{ .Domain }}"
paths: paths:
@@ -21,6 +21,9 @@ inferenceService:
ingress: ingress:
annotations: annotations:
cert-manager.io/cluster-issuer: "root-ca-issuer" cert-manager.io/cluster-issuer: "root-ca-issuer"
cert-manager.io/duration: 8760h
cert-manager.io/renew-before: 720h
k8s.apisix.apache.org/plugin-config-name: https-redirect
hosts: hosts:
- host: "{{ .Name }}-kserve.{{ .Namespace }}.{{ .Domain }}" - host: "{{ .Name }}-kserve.{{ .Namespace }}.{{ .Domain }}"
tls: tls:
@@ -14,6 +14,9 @@ langfuse:
enabled: true enabled: true
annotations: annotations:
cert-manager.io/cluster-issuer: "root-ca-issuer" cert-manager.io/cluster-issuer: "root-ca-issuer"
cert-manager.io/duration: 8760h
cert-manager.io/renew-before: 720h
k8s.apisix.apache.org/plugin-config-name: https-redirect
hosts: hosts:
- host: "{{ .Name }}.{{ .Domain }}" - host: "{{ .Name }}.{{ .Domain }}"
paths: paths:
@@ -10,6 +10,7 @@ ingress:
cert-manager.io/cluster-issuer: "root-ca-issuer" cert-manager.io/cluster-issuer: "root-ca-issuer"
cert-manager.io/duration: 8760h cert-manager.io/duration: 8760h
cert-manager.io/renew-before: 720h cert-manager.io/renew-before: 720h
k8s.apisix.apache.org/plugin-config-name: https-redirect
hosts: hosts:
- host: "{{ .Name }}.{{ .Domain }}" - host: "{{ .Name }}.{{ .Domain }}"
paths: paths:
@@ -94,6 +94,7 @@ ingress:
cert-manager.io/cluster-issuer: "root-ca-issuer" cert-manager.io/cluster-issuer: "root-ca-issuer"
cert-manager.io/duration: 8760h cert-manager.io/duration: 8760h
cert-manager.io/renew-before: 720h cert-manager.io/renew-before: 720h
k8s.apisix.apache.org/plugin-config-name: https-redirect
hosts: hosts:
- host: "{{ .Name }}.{{ .Domain }}" - host: "{{ .Name }}.{{ .Domain }}"
paths: paths:
@@ -60,6 +60,7 @@ ingress:
cert-manager.io/cluster-issuer: root-ca-issuer cert-manager.io/cluster-issuer: root-ca-issuer
cert-manager.io/duration: 8760h cert-manager.io/duration: 8760h
cert-manager.io/renew-before: 720h cert-manager.io/renew-before: 720h
k8s.apisix.apache.org/plugin-config-name: https-redirect
className: "apisix" className: "apisix"
tls: tls:
- hosts: - hosts:
@@ -13,6 +13,7 @@ ingress:
cert-manager.io/cluster-issuer: "root-ca-issuer" cert-manager.io/cluster-issuer: "root-ca-issuer"
cert-manager.io/duration: 8760h cert-manager.io/duration: 8760h
cert-manager.io/renew-before: 720h cert-manager.io/renew-before: 720h
k8s.apisix.apache.org/plugin-config-name: https-redirect
host: "{{ .Name }}.{{ .Domain }}" host: "{{ .Name }}.{{ .Domain }}"
tls: true tls: true
existingSecret: "{{ .Name }}-tls-secret" existingSecret: "{{ .Name }}-tls-secret"
@@ -14,6 +14,8 @@ configOverrides:
"DASHBOARD_NATIVE_FILTERS" : True, "DASHBOARD_NATIVE_FILTERS" : True,
"DASHBOARD_NATIVE_FILTERS_SET": True "DASHBOARD_NATIVE_FILTERS_SET": True
} }
proxy_fix: |
PROXY_FIX_CONFIG = {"x_for": 1, "x_proto": 1, "x_host": 1, "x_port": 0, "x_prefix": 1}
enable_oauth: | enable_oauth: |
from flask_appbuilder.security.manager import (AUTH_DB, AUTH_OAUTH) from flask_appbuilder.security.manager import (AUTH_DB, AUTH_OAUTH)
from superset.security import SupersetSecurityManager from superset.security import SupersetSecurityManager