You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{- print "\n\n⚠ SECURITY WARNING: Verifying original container images was skipped. Please note this Helm chart was designed, tested, and validated on multiple platforms using a specific set of Bitnami and Tanzu Application Catalog containers. Substituting other containers is likely to cause degraded security and performance, broken chart features, and missing environment variables.\n" -}}
{{- $errorString := "Original containers have been substituted for unrecognized ones. Deploying this chart with non-standard containers is likely to cause degraded security and performance, broken chart features, and missing environment variables." -}}
{{- $errorString = print $errorString"\n\nIf you are sure you want to proceed with non-standard containers, you can skip container image verification by setting the global parameter 'global.security.allowInsecureImages' to true." -}}
71
+
{{- $errorString = print $errorString"\nFurther information can be obtained at https://github.com/bitnami/charts/issues/30850" -}}
{{- $warnString := "\n\n⚠ WARNING: Original containers have been retagged. Please note this Helm chart was tested, and validated on multiple platforms using a specific set of Tanzu Application Catalog containers. Substituting original image tags could cause unexpected behavior." -}}
- secret - String - Required - Name of the 'Secret' resource where the password is stored.
@@ -80,12 +80,15 @@ Params:
80
80
- failOnNew - Boolean - Optional - Default to true. If set to false, skip errors adding new keys to existing secrets.
81
81
- skipB64enc - Boolean - Optional - Default to false. If set to true, no the secret will not be base64 encrypted.
82
82
- skipQuote - Boolean - Optional - Default to false. If set to true, no quotes will be added around the secret.
83
+
- honorProvidedValues - Boolean - Optional - Default to false. If set to true, the values in providedValues have higher priority than an existing secret
83
84
The order in which this function returns a secret password:
84
-
1. Already existing 'Secret' resource
85
+
1. Password provided via the values.yaml if honorProvidedValues = true
86
+
(If one of the keys passed to the 'providedValues' parameter to this function is a valid path to a key in the values.yaml and has a value, the value of the first key with a value will be returned)
87
+
2. Already existing 'Secret' resource
85
88
(If a 'Secret' resource is found under the name provided to the 'secret' parameter to this function and that 'Secret' resource contains a key with the name passed as the 'key' parameter to this function then the value of this existing secret password will be returned)
86
-
2. Password provided via the values.yaml
89
+
3. Password provided via the values.yaml if honorProvidedValues = false
87
90
(If one of the keys passed to the 'providedValues' parameter to this function is a valid path to a key in the values.yaml and has a value, the value of the first key with a value will be returned)
88
-
3. Randomly generated secret password
91
+
4. Randomly generated secret password
89
92
(A new random secret password with the length specified in the 'length' parameter will be generated and returned)
90
93
91
94
*/}}
@@ -106,6 +109,10 @@ The order in which this function returns a secret password:
WARNING: Rolling tag detected ({{ .repository }}:{{ .tag }}), please note that it is strongly recommended to avoid using rolling tags in a production environment.
0 commit comments