Compare commits

...
Author SHA1 Message Date
Robert Brennan c90284ea1a use create-namespace in helm docs 2021-03-25 12:48:19 +00:00
2 changed files with 8 additions and 2 deletions
+3 -1
View File
@@ -28,7 +28,9 @@ kubectl apply -f https://github.com/fairwindsops/polaris/releases/latest/downloa
### Helm
```bash
helm repo add fairwinds-stable https://charts.fairwinds.com/stable
helm upgrade --install polaris fairwinds-stable/polaris --namespace polaris \
helm upgrade --install polaris fairwinds-stable/polaris \
--namespace polaris \
--create-namespace \
--set webhook.enable=true --set dashboard.enable=false
```
+5 -1
View File
@@ -19,7 +19,11 @@ kubectl port-forward --namespace polaris svc/polaris-dashboard 8080:80
### Helm
```bash
helm repo add fairwinds-stable https://charts.fairwinds.com/stable
helm upgrade --install polaris fairwinds-stable/polaris --namespace polaris
helm upgrade --install polaris fairwinds-stable/polaris \
--namespace polaris \
--create-namespace
kubectl port-forward --namespace polaris svc/polaris-dashboard 8080:80
```