Skip to content

Commit

Permalink
Fix tmpl
Browse files Browse the repository at this point in the history
Signed-off-by: Mayank Shah <[email protected]>
  • Loading branch information
mayankshah1607 committed Oct 10, 2024
1 parent c467865 commit 8a0071b
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion charts/everest/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,36 @@ Useful links:

## Usage

> WIP
### Deploy Percona Everest

```sh
helm repo add percona https://percona.github.io/percona-helm-charts/
helm install everest-core percona/everest --namespace everest-system --create-namespace
```

> Note: we currently do not support deploying Everest in a namespace other than `everest-system`.

This command may take a few minutes to complete. Once done, you can retrieve the admin credentials using the following command:

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

### Deploy your database namespace components

Once Everest is running, we need to create a namespace for your databases and provision the necessary operators.

```sh
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
```

## Configuration

Expand Down

0 comments on commit 8a0071b

Please sign in to comment.