[bitnami/several] Replace base64 --decode with base64 -d (#10495)

Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com>
This commit is contained in:
Carlos Rodríguez Hernández
2022-05-30 18:16:36 +01:00
committed by GitHub
parent c08a2b76f0
commit 099286ae7a
113 changed files with 257 additions and 257 deletions

View File

@@ -35,4 +35,4 @@ name: wordpress-intel
sources:
- https://github.com/bitnami/bitnami-docker-wordpress-intel
- https://wordpress.org/
version: 1.3.1
version: 1.3.2

View File

@@ -73,7 +73,7 @@ To access your WordPress site from outside the cluster follow the steps below:
3. Login with the following credentials below to see your blog:
echo Username: {{ .Values.wordpressUsername }}
echo Password: $(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "common.names.fullname" . }} -o jsonpath="{.data.wordpress-password}" | base64 --decode)
echo Password: $(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "common.names.fullname" . }} -o jsonpath="{.data.wordpress-password}" | base64 -d)
{{- if .Values.metrics.enabled }}