diff options
| author | Paul Buetow <paul@buetow.org> | 2025-08-07 09:37:29 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-08-07 09:37:29 +0300 |
| commit | e70b2730de420a84b5da9501bc705913aba3e289 (patch) | |
| tree | 413cf1c47446dda5d410ec462ae6f76c9934bb5d /f3s/example-apache | |
| parent | 1b204bffe48809c6695ce22d6e05851e22e3cc5d (diff) | |
modify regtistry to be a helm chart as well and some refactor
Diffstat (limited to 'f3s/example-apache')
| -rw-r--r-- | f3s/example-apache/Makefile | 4 | ||||
| -rw-r--r-- | f3s/example-apache/helm-chart/README.md | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/f3s/example-apache/Makefile b/f3s/example-apache/Makefile index ec6dc2c..2936d22 100644 --- a/f3s/example-apache/Makefile +++ b/f3s/example-apache/Makefile @@ -1,5 +1,5 @@ apply: - helm install example-apache ./helm-chart + helm install example-apache ./helm-chart --namespace test --create-namespace delete: - helm uninstall example-apache + helm uninstall example-apache --namespace test
\ No newline at end of file diff --git a/f3s/example-apache/helm-chart/README.md b/f3s/example-apache/helm-chart/README.md index 8024446..4eb16d4 100644 --- a/f3s/example-apache/helm-chart/README.md +++ b/f3s/example-apache/helm-chart/README.md @@ -7,5 +7,5 @@ This chart deploys a simple Apache web server. To install the chart with the release name `my-release`, run the following command: ```bash -helm install example-apache . -``` +helm install example-apache . --namespace test --create-namespace +```
\ No newline at end of file |
