Skip to content

Commit

Permalink
Merge pull request #420 from percona/EVEREST-107-update-message
Browse files Browse the repository at this point in the history
EVEREST-107 | update installation success message
  • Loading branch information
mayankshah1607 authored Nov 19, 2024
2 parents 7b82df2 + 2843133 commit 3d2becf
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions charts/everest/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,31 @@
{{ if .Release.IsInstall }}
Thank you for installing Everest!

To get started, simply port-forward to the Everest API server:
Get started by following the below steps:

1. Access the Everest UI:

Setup a port-forward to the Everest service:

kubectl port-forward svc/everest 8080:8080 -n everest-system

Then, open your browser to http://localhost:8080 to access the Everest dashboard.
Next, open your browser at http://localhost:8080.

To retrieve the initial admin password, run the following command:
2. Retrieve the initial admin password:

kubectl get secret everest-accounts -n everest-system -o jsonpath='{.data.users\.yaml}' | base64 --decode | yq '.admin.passwordHash'

3. Provision a namespace for your databases:

cat <<EOF | kubectl create -f -
apiVersion: v1
kind: Namespace
metadata:
name: everest
labels:
app.kubernetes.io/managed-by: everest
EOF
helm install everest percona/everest-db-namespace --namespace everest
{{ end }}
{{ if .Release.IsUpgrade }}
Everest has been successfully upgraded to version {{ .Chart.AppVersion }}!
Expand Down

0 comments on commit 3d2becf

Please sign in to comment.