diff options
Diffstat (limited to 'f3s/example-apache')
| -rw-r--r-- | f3s/example-apache/Justfile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/f3s/example-apache/Justfile b/f3s/example-apache/Justfile index ef13e2d..579b925 100644 --- a/f3s/example-apache/Justfile +++ b/f3s/example-apache/Justfile @@ -1,5 +1,12 @@ -apply: - helm install example-apache ./helm-chart --namespace test --create-namespace +NAMESPACE := "test" +RELEASE_NAME := "example-apache" +CHART_PATH := "./helm-chart" + +install: + helm install {{RELEASE_NAME}} {{CHART_PATH}} --namespace {{NAMESPACE}} --create-namespace + +upgrade: + helm upgrade {{RELEASE_NAME}} {{CHART_PATH}} --namespace {{NAMESPACE}} delete: - helm uninstall example-apache --namespace test + helm uninstall {{RELEASE_NAME}} --namespace {{NAMESPACE}} |
