Skip to content

Commit 89674ba

Browse files
Merge pull request #261 from KoppulaRajender/6.0
6.0 | updating changelog 6.0.2
2 parents b582902 + 3ef1172 commit 89674ba

15 files changed

+93
-35
lines changed

enforcer/CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
## 6.0.1 (April 5th, 2021)
22

33
Improvements:
4-
* Adding Changelog
4+
* Adding Changelog
5+
6+
## 6.0.2 (May 5th, 2021)
7+
8+
Improvements:
9+
* Updated Readme
10+
11+
Bugs:
12+
* Service Account naming error #[241](https://github.com/aquasecurity/aqua-helm/pull/241)

enforcer/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "6.0"
33
description: A Helm chart for the Aqua Enforcer
44
name: enforcer
5-
version: 6.0.1
5+
version: 6.0.2
66
icon: https://avatars3.githubusercontent.com/u/12783832?s=200&v=4
77
home: https://www.aquasec.com/
88
maintainers:

enforcer/README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ Follow the steps in this section for production grade deployments. You can eithe
2929
* Clone the GitHub repository with the charts
3030

3131
```bash
32-
git clone -b 6.0 https://github.com/aquasecurity/aqua-helm.git
33-
cd aqua-helm/
32+
$ git clone -b 6.0 https://github.com/aquasecurity/aqua-helm.git
33+
$ cd aqua-helm/
3434
```
3535

3636
* Install Aqua Enforcer
3737

3838
```bash
39-
helm upgrade --install --namespace aqua aqua-enforcer ./enforcer --set imageCredentials.username=<>,imageCredentials.password=<>,enforcerToken=<aquasec-token>
39+
$ helm upgrade --install --namespace aqua aqua-enforcer ./enforcer --set imageCredentials.username=<>,imageCredentials.password=<>,enforcerToken=<aquasec-token>
4040
```
4141

4242
### Installing Aqua Enforcer from Helm Private Repository
@@ -46,10 +46,15 @@ helm upgrade --install --namespace aqua aqua-enforcer ./enforcer --set imageCred
4646
$ helm repo add aqua-helm https://helm.aquasec.com
4747
```
4848

49+
* Check for the available chart versions either from [Changelog](./CHANGELOG.md) or by running the below command
50+
```bash
51+
$ helm search repo aqua-helm/enforcer --versions
52+
```
53+
4954
* Install Aqua Enforcer
5055

5156
```bash
52-
helm upgrade --install --namespace aqua aqua-enforcer aqua-helm/enforcer --set imageCredentials.username=<>,imageCredentials.password=<>,enforcerToken=<aquasec-token> --version <>
57+
$ helm upgrade --install --namespace aqua aqua-enforcer aqua-helm/enforcer --set imageCredentials.username=<>,imageCredentials.password=<>,enforcerToken=<aquasec-token> --version <>
5358
```
5459

5560

kube-enforcer/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
## 6.0.1 (April 5th, 2021)
22

33
Improvements:
4-
* Adding Changelog
4+
* Adding Changelog
5+
6+
## 6.0.2 (May 5th, 2021)
7+
8+
Improvements:
9+
* Updated Readme
10+
* Added timeouts for KE webhooks #[245](https://github.com/aquasecurity/aqua-helm/pull/245)

kube-enforcer/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "6.0"
33
description: A Helm chart for the Aqua KubeEnforcer
44
name: kube-enforcer
5-
version: 6.0.0
5+
version: 6.0.2
66
icon: https://avatars3.githubusercontent.com/u/12783832?s=200&v=4
77
keywords:
88
- scanning

kube-enforcer/README.md

+14-9
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,19 @@ Optionally, you can provide these certificates in base64 encoded format as flags
8686
3a. To deploy the KubeEnforcer on the same cluster as the Aqua Server (console), run this command on that cluster:
8787

8888
```shell
89-
helm upgrade --install --namespace aqua kube-enforcer ./kube-enforcer
89+
$ helm upgrade --install --namespace aqua kube-enforcer ./kube-enforcer
9090
```
9191

9292
3b. Multi-cluster: To deploy the KubeEnforcer in a different cluster:
9393

9494
First, create a namespace on that cluster named `aqua`:
9595
```bash
96-
kubectl create namespace aqua
96+
$ kubectl create namespace aqua
9797
```
9898
Next, run the following command:
9999

100100
```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>
102102
```
103103

104104
### Installing Aqua Kube-Enforcer from Helm Private Repository
@@ -111,24 +111,29 @@ Optionally, you can provide these certificates in base64 encoded format as flags
111111

112112
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.
113113

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
115+
```bash
116+
$ helm search repo aqua-helm/kube-enforcer --versions
117+
```
115118

116-
3a. To deploy the KubeEnforcer on the same cluster as the Aqua Server (console), run this command on that cluster:
119+
4. Choose **either** 4a **or** 4b:
120+
121+
4a. To deploy the KubeEnforcer on the same cluster as the Aqua Server (console), run this command on that cluster:
117122

118123
```shell
119-
helm upgrade --install --namespace aqua kube-enforcer aqua-helm/kube-enforcer
124+
$ helm upgrade --install --namespace aqua kube-enforcer aqua-helm/kube-enforcer
120125
```
121126

122-
3b. Multi-cluster: To deploy the KubeEnforcer in a different cluster:
127+
4b. Multi-cluster: To deploy the KubeEnforcer in a different cluster:
123128

124129
First, create a namespace on that cluster named `aqua`:
125130
```bash
126-
kubectl create namespace aqua
131+
$ kubectl create namespace aqua
127132
```
128133
Next, copy the values.yaml content from [Values.yaml](./values.yaml) and make the respective changes then run the following command:
129134

130135
```shell
131-
helm upgrade --install --namespace aqua kube-enforcer aqua-helm/kube-enforcer --values values.yaml --version <>
136+
$ helm upgrade --install --namespace aqua kube-enforcer aqua-helm/kube-enforcer --values values.yaml --version <>
132137
```
133138

134139
Optional flags:

scanner/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
## 6.0.1 (April 5th, 2021)
22

33
Improvements:
4-
* Adding Changelog
4+
* Adding Changelog
5+
6+
## 6.0.2 (May 5th, 2021)
7+
8+
Improvements:
9+
* Updated Readme

scanner/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "6.0"
33
description: A Helm chart for the Aqua Scanner CLI component
44
name: scanner
5-
version: 6.0.1
5+
version: 6.0.2
66
icon: https://avatars3.githubusercontent.com/u/12783832?s=200&v=4
77
home: https://www.aquasec.com/
88
maintainers:

scanner/README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ Follow the steps in this section for production grade deployments. You can eithe
2929
* Clone the GitHub repository with the charts
3030

3131
```bash
32-
git clone -b 6.0 https://github.com/aquasecurity/aqua-helm.git
33-
cd aqua-helm/
32+
$ git clone -b 6.0 https://github.com/aquasecurity/aqua-helm.git
33+
$ cd aqua-helm/
3434
```
3535

3636

3737
* Install Aqua
3838

3939
```bash
40-
helm upgrade --install --namespace aqua scanner ./scanner --set imageCredentials.username=<>,imageCredentials.password=<>
40+
$ helm upgrade --install --namespace aqua scanner ./scanner --set imageCredentials.username=<>,imageCredentials.password=<>
4141
```
4242

4343
### Installing Aqua Scanner from Helm Private Repository
@@ -47,10 +47,15 @@ helm upgrade --install --namespace aqua scanner ./scanner --set imageCredentials
4747
$ helm repo add aqua-helm https://helm.aquasec.com
4848
```
4949

50+
* Check for available chart versions either from [Changelog](./CHANGELOG.md) or by running the below command
51+
```bash
52+
$ helm search repo aqua-helm/scanner --versions
53+
```
54+
5055
* Install Aqua
5156

5257
```bash
53-
helm upgrade --install --namespace aqua scanner aqua-helm/scanner --set imageCredentials.username=<>,imageCredentials.password=<> --version <>
58+
$ helm upgrade --install --namespace aqua scanner aqua-helm/scanner --set imageCredentials.username=<>,imageCredentials.password=<> --version <>
5459
```
5560

5661

server/CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
## 6.0.1 (April 5th, 2021)
22

33
Improvements:
4-
* Adding Changelog
4+
* Adding Changelog
5+
6+
## 6.0.2 (May 5th, 2021)
7+
8+
Improvements:
9+
* Updated Readme
10+
* Added Maintenance DB support #[245](https://github.com/aquasecurity/aqua-helm/pull/245)
11+
* added annotations support foe SA creation #[248](https://github.com/aquasecurity/aqua-helm/pull/248)

server/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "6.0"
33
description: A Helm chart for the Aqua Console components
44
name: server
5-
version: 6.0.1
5+
version: 6.0.2
66
icon: https://avatars3.githubusercontent.com/u/12783832?s=200&v=4
77
home: https://www.aquasec.com/
88
maintainers:

server/README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ Follow the steps in this section for production grade deployments. You can eithe
4242
* Clone the GitHub repository with the charts
4343
4444
```bash
45-
git clone -b 6.0 https://github.com/aquasecurity/aqua-helm.git
46-
cd aqua-helm/
45+
$ git clone -b 6.0 https://github.com/aquasecurity/aqua-helm.git
46+
$ cd aqua-helm/
4747
```
4848

4949

5050
* Install Aqua
5151

5252
```bash
53-
helm upgrade --install --namespace aqua aqua ./server --set imageCredentials.username=<>,imageCredentials.password=<>,platform=<>
53+
$ helm upgrade --install --namespace aqua aqua ./server --set imageCredentials.username=<>,imageCredentials.password=<>,platform=<>
5454
```
5555

5656
### Installing Aqua Web from Helm Private Repository
@@ -60,10 +60,15 @@ helm upgrade --install --namespace aqua aqua ./server --set imageCredentials.use
6060
$ helm repo add aqua-helm https://helm.aquasec.com
6161
```
6262

63+
* Check for available chart versions either from [Changelog](./CHANGELOG.md) or by running the below command
64+
```bash
65+
$ helm search repo aqua-helm/server --versions
66+
```
67+
6368
* Install Aqua
6469

6570
```bash
66-
helm upgrade --install --namespace aqua aqua aqua-helm/server --set imageCredentials.username=<>,imageCredentials.password=<>,platform=<> --version <>
71+
$ helm upgrade --install --namespace aqua aqua aqua-helm/server --set imageCredentials.username=<>,imageCredentials.password=<>,platform=<> --version <>
6772
```
6873

6974
## Advanced Configuration

tenant-manager/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
## 6.0.1 (April 5th, 2021)
22

33
Improvements:
4-
* Adding Changelog
4+
* Adding Changelog
5+
6+
## 6.0.2 (May 5th, 2021)
7+
8+
Improvements:
9+
* Updated Readme
10+
* Added Maintenance DB support #[252](https://github.com/aquasecurity/aqua-helm/pull/252)

tenant-manager/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "6.0"
33
description: A Helm chart for the Aqua Tenant Manger
44
name: tenant-manger
5-
version: 6.0.1
5+
version: 6.0.2
66
icon: https://avatars3.githubusercontent.com/u/12783832?s=200&v=4
77
home: https://www.aquasec.com/
88
maintainers:

tenant-manager/README.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ db:
4141
* Clone the GitHub repository with the charts:
4242
4343
```bash
44-
git clone -b 6.0 https://github.com/aquasecurity/aqua-helm.git
45-
cd aqua-helm/
44+
$ git clone -b 6.0 https://github.com/aquasecurity/aqua-helm.git
45+
$ cd aqua-helm/
4646
```
4747

4848
* Deploy the Aqua Tenant Manager
4949

5050
```bash
51-
helm upgrade --install --namespace aqua tenant-manager ./tenant-manger --set imageCredentials.username=<>,imageCredentials.password=<>,platform=<>
51+
$ helm upgrade --install --namespace aqua tenant-manager ./tenant-manger --set imageCredentials.username=<>,imageCredentials.password=<>,platform=<>
5252
```
5353

5454
### Installing Aqua Tenant Manager from Helm Private Repository
@@ -58,10 +58,16 @@ helm upgrade --install --namespace aqua tenant-manager ./tenant-manger --set ima
5858
```bash
5959
$ helm repo add aqua-helm https://helm.aquasec.com
6060
```
61+
62+
* Check for available chart versions either from [Changelog](./CHANGELOG.md) or by running the below command
63+
```bash
64+
$ helm search repo aqua-helm/tenant-manager --versions
65+
```
66+
6167
* Deploy the Aqua Tenant Manager
6268

6369
```bash
64-
helm upgrade --install --namespace aqua tenant-manager aqua-helm/tenant-manager --set imageCredentials.username=<>,imageCredentials.password=<>,platform=<> --version <>
70+
$ helm upgrade --install --namespace aqua tenant-manager aqua-helm/tenant-manager --set imageCredentials.username=<>,imageCredentials.password=<>,platform=<> --version <>
6571
```
6672

6773
## Database

0 commit comments

Comments
 (0)