mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
updates and helm
This commit is contained in:
parent
72ef3db7df
commit
374c47b244
@ -226,3 +226,33 @@ webhook-example-deploy-Deployment.tmp.yaml
|
||||
+-----------------------------------+-----------------------+
|
||||
|
||||
```
|
||||
|
||||
## Helm
|
||||
|
||||
Let's install `helm` in our container
|
||||
|
||||
```
|
||||
apk add tar
|
||||
curl -L https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz -o /tmp/helm.tar.gz && \
|
||||
tar -xzf /tmp/helm.tar.gz -C /tmp && \
|
||||
chmod +x /tmp/linux-amd64/helm && \
|
||||
mv /tmp/linux-amd64/helm /usr/local/bin/helm
|
||||
|
||||
```
|
||||
|
||||
Let's install the `helm` plugin for `datree`
|
||||
|
||||
```
|
||||
helm plugin install https://github.com/datreeio/helm-datree
|
||||
|
||||
```
|
||||
|
||||
Now we can test a `helm` chart we have in our repo from my `helm` tutorial </br>
|
||||
|
||||
```
|
||||
|
||||
cd kubernetes/helm
|
||||
|
||||
helm datree test example-app \
|
||||
-- --values ./example-app/example-app-01.values.yaml
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user