-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #702 from kloudmax/Helm
update helm
- Loading branch information
Showing
9 changed files
with
181 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,27 @@ | ||
## Install KubeArmor using helm | ||
* Install kubearmor via helm, enable/disable kuberarmor relay by specifying either true or false. | ||
* Specify the namespace. | ||
* Specify environment depends on your environment like { docker, microk8s, minikube, k3s and generic (GKE, EKS)} by default it is generic. | ||
## Install KubeArmor | ||
|
||
Install KubeArmor using helm | ||
|
||
``` | ||
helm upgrade --install kubearmor . \ | ||
--set kubearmorrelay.enabled=true \ | ||
--set environment.name=<environment> \ | ||
--set namespace.name=<namespace> | ||
--set namespace.name=<namespace> \ | ||
--set environment.name=<environment> | ||
``` | ||
Check if all the pods are up and running. | ||
* kubearmorrelay.enabled = {true | false} (default: true) | ||
* namespace.name = [namespace name] (default: kube-system) | ||
* environment.name = {generic | docker | microk8s | minikube | k3s} (default: generic) / use 'generic' for GKE and EKS | ||
|
||
Check if all the pods are up and running | ||
|
||
``` | ||
kubectl get all -n <namespace> | ||
``` | ||
|
||
## To uninstall KubeArmor using helm | ||
## Remove KubeArmor | ||
|
||
Uninstall KubeArmor using helm | ||
|
||
``` | ||
helm uninstall kubearmor | ||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,3 @@ subjects: | |
- kind: ServiceAccount | ||
name: kubearmor | ||
namespace: {{ .Values.namespace.name }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,5 +75,3 @@ spec: | |
{{- else }} # generic | ||
{{- toYaml .Values.kubearmor.volumesGeneric | nindent 8 }} | ||
{{- end }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.