日本語
helm show values dify/dify
global: consoleApiDomain: "console.dify.local" consoleWebDomain: "console.dify.local" serviceApiDomain: "api.dify.local" appApiDomain: "app.dify.local" appWebDomain: "app.dify.local" filesDomain: "upload.dify.local" enterpriseDomain: "enterprise.dify.local" ... ...
kubectl create secret tls example-tls --key example.key --cert example.crt
useTLS
true
global: useTLS: true
ingress: tls: - hosts: - console.dify.local - app.dify.local - api.dify.local - upload.dify.local - enterprise.dify.local secretName: example-tls
ingress: tls: - hosts: - console.dify.local secretName: example-tls - hosts: - app.dify.local secretName: example-tls-2 - hosts: - api.dify.local secretName: example-tls-3 - hosts: - upload.dify.local secretName: example-tls-4 - hosts: - enterprise.dify.local secretName: example-tls-5