mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-21 13:58:49 +00:00
🔧 Add Makefile
rules to do Helm install using canary
and dev
tags without the debug mode enabled
This commit is contained in:
parent
909cc8de15
commit
9f889a7a36
10
Makefile
10
Makefile
@ -126,8 +126,11 @@ exec:
|
|||||||
helm-install:
|
helm-install:
|
||||||
cd helm-chart && helm install kubeshark . && cd ..
|
cd helm-chart && helm install kubeshark . && cd ..
|
||||||
|
|
||||||
helm-uninstall:
|
helm-install-canary:
|
||||||
helm uninstall kubeshark
|
cd helm-chart && helm install kubeshark . --set tap.docker.tag=canary && cd ..
|
||||||
|
|
||||||
|
helm-install-dev:
|
||||||
|
cd helm-chart && helm install kubeshark . --set tap.docker.tag=dev && cd ..
|
||||||
|
|
||||||
helm-install-debug:
|
helm-install-debug:
|
||||||
cd helm-chart && helm install kubeshark . --set tap.debug=true && cd ..
|
cd helm-chart && helm install kubeshark . --set tap.debug=true && cd ..
|
||||||
@ -138,5 +141,8 @@ helm-install-debug-canary:
|
|||||||
helm-install-debug-dev:
|
helm-install-debug-dev:
|
||||||
cd helm-chart && helm install kubeshark . --set tap.debug=true --set tap.docker.tag=dev && cd ..
|
cd helm-chart && helm install kubeshark . --set tap.debug=true --set tap.docker.tag=dev && cd ..
|
||||||
|
|
||||||
|
helm-uninstall:
|
||||||
|
helm uninstall kubeshark
|
||||||
|
|
||||||
proxy:
|
proxy:
|
||||||
kubeshark proxy
|
kubeshark proxy
|
||||||
|
Loading…
Reference in New Issue
Block a user