Skip to content

Commit

Permalink
Merge pull request #16 from Chris-Greaves/update-kubernetes-docs
Browse files Browse the repository at this point in the history
Update Kubernetes docs to use the Helm Repo in Commands
  • Loading branch information
meltyshev authored May 3, 2024
2 parents 593a904 + e1a2367 commit 44691bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/installation/kubernetes/helm_chart.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ helm search repo planka
**Generate *SECRETKEY* and install Planka**
```bash
export SECRETKEY=$(openssl rand -hex 64)
helm install planka . --set secretkey=$SECRETKEY \
helm install planka planka/planka --set secretkey=$SECRETKEY \
--set admin_email="demo@demo.demo" \
--set admin_password="demo" \
--set admin_name="Demo Demo" \
Expand All @@ -36,7 +36,7 @@ kubectl port-forward $POD_NAME 3000:1337
**To access Planka externally you can use the following configuration**
```bash
# HTTP only
helm install planka . --set secretkey=$SECRETKEY \
helm install planka planka/planka --set secretkey=$SECRETKEY \
--set admin_email="demo@demo.demo" \
--set admin_password="demo" \
--set admin_name="Demo Demo" \
Expand All @@ -45,7 +45,7 @@ helm install planka . --set secretkey=$SECRETKEY \
--set ingress.hosts[0].host=planka.example.dev \

# HTTPS
helm install planka . --set secretkey=$SECRETKEY \
helm install planka planka/planka --set secretkey=$SECRETKEY \
--set admin_email="demo@demo.demo" \
--set admin_password="demo" \
--set admin_name="Demo Demo" \
Expand Down

0 comments on commit 44691bf

Please sign in to comment.