diff --git a/charts/everest/templates/NOTES.txt b/charts/everest/templates/NOTES.txt index 2f211c71..7c526472 100644 --- a/charts/everest/templates/NOTES.txt +++ b/charts/everest/templates/NOTES.txt @@ -1,34 +1,37 @@ -{{ if .Release.IsInstall }} -Thank you for installing Everest! +{{- if .Release.IsInstall }} +Thank you for installing Everest (v{{ .Chart.AppVersion }})! -Get started by following the below steps: +Follow the steps below to get started: +{{ if not .Values.dbNamespace.enabled }} +PROVISION A NAMESPACE FOR YOUR DATABASES +========================================= -1. Access the Everest UI: +Install a namespace for your databases using the following command: -Setup a port-forward to the Everest service: + helm install everest/everest-db-namespace --namespace everest --create-namespace -kubectl port-forward svc/everest 8080:8080 -n everest-system +{{- end }} -Next, open your browser at http://localhost:8080. +RETRIEVE THE INITIAL ADMIN PASSWORD +==================================== -2. Retrieve the initial admin password: +Run the following command to fetch the initial admin password: -kubectl get secret everest-accounts -n everest-system -o jsonpath='{.data.users\.yaml}' | base64 --decode | yq '.admin.passwordHash' + kubectl get secret everest-accounts -n everest-system -o jsonpath='{.data.users\.yaml}' | base64 --decode | yq '.admin.passwordHash' -{{if (not .Values.dbNamespace.enabled) }} -3. Provision a namespace for your databases: +**Note:** The initial password is stored in plain text. For security, change it immediately using the following command: -cat <