You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: kube-enforcer/README.md
+14-9
Original file line number
Diff line number
Diff line change
@@ -86,19 +86,19 @@ Optionally, you can provide these certificates in base64 encoded format as flags
86
86
3a. To deploy the KubeEnforcer on the same cluster as the Aqua Server (console), run this command on that cluster:
87
87
88
88
```shell
89
-
helm upgrade --install --namespace aqua kube-enforcer ./kube-enforcer
89
+
$ helm upgrade --install --namespace aqua kube-enforcer ./kube-enforcer
90
90
```
91
91
92
92
3b. Multi-cluster: To deploy the KubeEnforcer in a different cluster:
93
93
94
94
First, create a namespace on that cluster named `aqua`:
95
95
```bash
96
-
kubectl create namespace aqua
96
+
$ kubectl create namespace aqua
97
97
```
98
98
Next, run the following command:
99
99
100
100
```shell
101
-
helm upgrade --install --namespace aqua kube-enforcer ./kube-enforcer --set envs.gatewayAddress="<Aqua_Remote_Gateway_IP/URL>",imageCredentials.username=<registry-username>,imageCredentials.password=<registry-password>
101
+
$ helm upgrade --install --namespace aqua kube-enforcer ./kube-enforcer --set envs.gatewayAddress="<Aqua_Remote_Gateway_IP/URL>",imageCredentials.username=<registry-username>,imageCredentials.password=<registry-password>
102
102
```
103
103
104
104
### Installing Aqua Kube-Enforcer from Helm Private Repository
@@ -111,24 +111,29 @@ Optionally, you can provide these certificates in base64 encoded format as flags
111
111
112
112
2. (Optional) Update the Helm charts `values.yaml` file with your environment's custom values, registry secret, Aqua Server (console) credentials, and TLS certificates. This eliminates the need to pass the parameters to the HELM command. Then run one of the following commands to deploy the relevant services.
113
113
114
-
3. Choose **either** 3a **or** 3b:
114
+
3. Check for the available chart versions either from [Changelog](./CHANGELOG.md) or by running the below command
0 commit comments