mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-20 11:32:19 +00:00
rustfs#1916 Allow existing secrets to be used for tls certs in ingress (#1918)
Signed-off-by: mkrueger92 <7305571+mkrueger92@users.noreply.github.com> Co-authored-by: houseme <housemecn@gmail.com>
This commit is contained in:
+13
-1
@@ -144,9 +144,21 @@ ingress:
|
||||
pathType: Prefix
|
||||
tls:
|
||||
enabled: false # Enable tls and access rustfs via https.
|
||||
|
||||
certManager:
|
||||
enabled: false # Enable certmanager to generate certificate for rustfs, default false.
|
||||
secretName: secret-tls
|
||||
|
||||
existingSecret:
|
||||
# To use an existing secret for tls certificates in the ingress enable this,
|
||||
# set the name of the existing secret and make sure that the secret contains
|
||||
# values for the keys "crt" and "key".
|
||||
enabled: false
|
||||
name: ""
|
||||
|
||||
# If the certmanager is not used and no existing secret is used to provide a tls certificate,
|
||||
# then this certificate can be configured here. A secret will be created and used.
|
||||
# Note: The following input will be base64 encoded during secret creation. There is no need
|
||||
# to provide it base64 encoded here already.
|
||||
crt: tls.crt
|
||||
key: tls.key
|
||||
|
||||
|
||||
Reference in New Issue
Block a user