[stable/odoo]: fix password retrieval instructions (#816)

* [stable/odoo]: fix password retrieval instructions

* Version bump
This commit is contained in:
Martin Linkhorst
2017-03-22 20:17:09 -05:00
committed by Michael Goodness
parent cb688c1f8c
commit 0f3fc44631
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: odoo
version: 0.4.2
version: 0.4.3
description: A suite of web based open source business apps.
keywords:
- odoo
+1 -1
View File
@@ -26,4 +26,4 @@
2. Login with the following credentials
echo Email : {{ .Values.odooEmail }}
echo Password: $(printf $(printf '\%o' `kubectl get secret --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath="{.data.odoo-password[*]}"`))
echo Password: $(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath="{.data.odoo-password}" | base64 --decode)