Skip to content

Commit

Permalink
SLK-76594 - Support ArgoCD deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
Adi Shaull committed Dec 25, 2023
1 parent 7a4bed2 commit bc000d7
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This repository includes the following charts; they can be deployed separately:

| Chart | Description | Latest Chart Version |
|-------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------|
| [Server](server/) | Deploys the Console, Database, and Gateway components; optionally deploys Envoy component | 2022.4.22 |
| [Server](server/) | Deploys the Console, Database, and Gateway components; optionally deploys Envoy component | 2022.4.23 |
| [Enforcer](enforcer/) | Deploys the Aqua Enforcer daemonset | 2022.4.18 |
| [Scanner](scanner/) | Deploys the Aqua Scanner deployment | 2022.4.6 |
| [KubeEnforcer](kube-enforcer/) | Deploys Aqua KubeEnforcer | 2022.4.36 |
Expand Down Expand Up @@ -84,7 +84,7 @@ aqua-helm/enforcer 2022.4.18 2022.4 A Helm chart for
aqua-helm/kube-enforcer 2022.4.36 2022.4 A Helm chart for the Aqua KubeEnforcer Starboard
aqua-helm/gateway 2022.4.12 2022.4 A Helm chart for the Aqua Gateway
aqua-helm/scanner 2022.4.6 2022.4 A Helm chart for the Aqua Scanner CLI component
aqua-helm/server 2022.4.22 2022.4 A Helm chart for the Aqua Console components
aqua-helm/server 2022.4.23 2022.4 A Helm chart for the Aqua Console components
aqua-helm/tenant-manager 2022.4.1 2022.4 A Helm chart for the Aqua Tenant Manager
```

Expand Down
9 changes: 7 additions & 2 deletions server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2022.4.35 ( Dec 10th, 2023 )
## 2022.4.23 ( Dec 24th, 2023 )
* Add support for ArgoCD deployment - [#799](https://github.com/aquasecurity/aqua-helm/issues/799)
* Immutable Secrets - Preventing changes to the data of an existing Secret (DB)


## 2022.4.22 ( Dec 10th, 2023 )
* Fix indentation and formatting for external DB - [#790](https://github.com/aquasecurity/aqua-helm/issues/790)
* Fix envoy configuration
*

## 2022.4.21 (Dec 5 th, 2023)
* Allow the API version of PodDisruptionBudget to be overridden [#807](https://github.com/aquasecurity/aqua-helm/pull/807)

Expand Down
6 changes: 3 additions & 3 deletions server/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: gateway
repository: file://../gateway/
repository: https://helm.aquasec.com
version: 2022.4.12
digest: sha256:6dfa51926c5b5ae71cec195ba4b8067a75354590b122de6be24844bcb16a15ef
generated: "2023-04-10T15:16:59.914279+03:00"
digest: sha256:47dae0cfdf1eb452427a37a790892afbc5fc2248d7110d395b65f8912be8f094
generated: "2023-12-19T16:37:32.076402+02:00"
2 changes: 1 addition & 1 deletion server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "2022.4"
description: A Helm chart for the Aqua Console components
name: server
version: "2022.4.22"
version: "2022.4.23"
dependencies:
- name: gateway
version: "2022.4.12"
Expand Down
1 change: 1 addition & 0 deletions server/templates/db-password-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ metadata:
"helm.sh/hook": pre-install
"helm.sh/hook-delete-policy": before-hook-creation
type: Opaque
immutable: true
data:
db-password: {{ randAlphaNum 20 | b64enc | quote }}
audit-password: {{ randAlphaNum 20 | b64enc | quote }}
Expand Down
1 change: 1 addition & 0 deletions server/templates/job-check-db-upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ metadata:
"helm.sh/hook": pre-upgrade
"helm.sh/hook-weight": "0"
"helm.sh/hook-delete-policy": before-hook-creation
argocd.argoproj.io/hook: Skip
spec:
backoffLimit: 0
template:
Expand Down

0 comments on commit bc000d7

Please sign in to comment.