Skip to content

Commit

Permalink
added changes + bumped versions
Browse files Browse the repository at this point in the history
  • Loading branch information
BaruchBilanski committed Apr 1, 2024
1 parent 2bb06ff commit bdda574
Show file tree
Hide file tree
Showing 9 changed files with 80 additions and 53 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ This repository includes the following charts; they can be deployed separately:
|-------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------|
| [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.20 |
| [Scanner](scanner/) | Deploys the Aqua Scanner deployment | 2022.4.6 |
| [Scanner](scanner/) | Deploys the Aqua Scanner deployment | 2022.4.7 |
| [KubeEnforcer](kube-enforcer/) | Deploys Aqua KubeEnforcer | 2022.4.42 |
| [Gateway](gateway) | Deploys the Aqua Standalone Gateway | 2022.4.12 |
| [Gateway](gateway) | Deploys the Aqua Standalone Gateway | 2022.4.14 |
| [Tenant-Manager](tenant-manager/) | Deploys the Aqua Tenant Manager | 2022.4.0 |
| [Cyber Center](cyber-center/) | Deploys Aqua CyberCenter offline for air-gap environment | 2022.4.4 |
| [Cloud Connector](cloud-connector/) | Deploys the Aqua Cloud Connector | 2022.4.5 |
Expand Down
2 changes: 1 addition & 1 deletion gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "2022.4"
description: A Helm chart for the Aqua Gateway
name: gateway
version: "2022.4.13"
version: "2022.4.14"
icon: https://avatars3.githubusercontent.com/u/12783832?s=200&v=4
home: https://www.aquasec.com/
maintainers:
Expand Down
2 changes: 2 additions & 0 deletions gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,3 +182,5 @@ Follow the steps in this section for production grade deployments. You can eithe
| `TLS.aqua_verify_enforcer` | Change it to "1" or "0" for enabling/disabling mTLS between enforcer and gateway/envoy | `0` | `YES` <br /> `if gate.TLS.enabled is set to true` |
| `extraEnvironmentVars` | Is a list of extra environment variables to set in the gateway deployments. | `{}` | `NO` |
| `extraSecretEnvironmentVars` | Is a list of extra environment variables to set in the gateway deployments, these variables take value from existing Secret objects. | `[]` | `NO` |
| `extraVolumes` | extraVolumes is a list of volumes that can be mounted inside the KubeEnforcer deployment | `[]` | `NO` |
| `extraVolumeMounts` | extraVolumeMounts is a list of extra volumes to mount into the container's filesystem of the KubeEnforcer deployment | `[]` | `NO` |
6 changes: 6 additions & 0 deletions gateway/templates/gate-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ spec:
{{ toYaml . | indent 10 }}
{{- end }}
volumeMounts:
{{- with .Values.extraVolumeMounts }}
{{- toYaml . | nindent 10 }}
{{- end }}
{{- if .Values.TLS.enabled }}
- name: certs
mountPath: /opt/aquasec/ssl/
Expand All @@ -148,6 +151,9 @@ spec:
{{ toYaml .Values.tolerations | indent 6 }}
{{- end }}
volumes:
{{- with .Values.extraVolumes }}
{{- toYaml . | nindent 6 }}
{{- end }}
{{- if .Values.TLS.enabled }}
- name: certs
secret:
Expand Down
7 changes: 6 additions & 1 deletion gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,15 @@ extraSecretEnvironmentVars: []
# secretName: name
# secretKey: key

# extraVolumeMounts is a list of extra volumes to mount into the container's filesystem of the KubeEnforcer deployment
extraVolumeMounts: []

# extraVolumes is a list of volumes that can be mounted inside the KubeEnforcer deployment
extraVolumes: []

#enable or disable creation of headless service for envoy
headlessService: true


global:
# Specify the Kubernetes (k8s) platform acronym.
# Allowed values are:
Expand Down
2 changes: 1 addition & 1 deletion scanner/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "2022.4"
description: A Helm chart for the Aqua Scanner CLI component
name: scanner
version: "2022.4.6"
version: "2022.4.7"
icon: https://avatars3.githubusercontent.com/u/12783832?s=200&v=4
home: https://www.aquasec.com/
maintainers:
Expand Down
Loading

0 comments on commit bdda574

Please sign in to comment.