Skip to content

Commit bfac8cc

Browse files
Carlos Rodríguez HernándezBitnami Containers
Carlos Rodríguez Hernández
and
Bitnami Containers
authored
[bitnami/argo-cd] Detect non-standard images (#30862)
* [bitnami/argo-cd] Detect non-standard images Signed-off-by: Carlos Rodríguez Hernández <[email protected]> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <[email protected]> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <[email protected]> * Update NOTES.txt Signed-off-by: Carlos Rodríguez Hernández <[email protected]> --------- Signed-off-by: Carlos Rodríguez Hernández <[email protected]> Signed-off-by: Bitnami Containers <[email protected]> Co-authored-by: Bitnami Containers <[email protected]>
1 parent f47e86a commit bfac8cc

File tree

6 files changed

+33
-15
lines changed

6 files changed

+33
-15
lines changed

bitnami/argo-cd/CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Changelog
22

3-
## 7.0.26 (2024-12-03)
3+
## 7.1.0 (2024-12-10)
44

5-
* [bitnami/argo-cd] Release 7.0.26 ([#30743](https://github.com/bitnami/charts/pull/30743))
5+
* [bitnami/argo-cd] Detect non-standard images ([#30862](https://github.com/bitnami/charts/pull/30862))
6+
7+
## <small>7.0.26 (2024-12-03)</small>
8+
9+
* [bitnami/*] docs: :memo: Add "Backup & Restore" section (#30711) ([35ab536](https://github.com/bitnami/charts/commit/35ab5363741e7548f4076f04da6e62d10153c60c)), closes [#30711](https://github.com/bitnami/charts/issues/30711)
10+
* [bitnami/*] docs: :memo: Add "Prometheus metrics" (batch 1) (#30660) ([7409ca4](https://github.com/bitnami/charts/commit/7409ca4c21869fabe1532dd4f3ff24895df71c6d)), closes [#30660](https://github.com/bitnami/charts/issues/30660)
11+
* [bitnami/*] docs: :memo: Unify "Securing Traffic using TLS" section (#30707) ([b572333](https://github.com/bitnami/charts/commit/b57233336e4fe9af928ecb4f2a5f334011efb1bc)), closes [#30707](https://github.com/bitnami/charts/issues/30707)
12+
* [bitnami/argo-cd] Release 7.0.26 (#30743) ([70bd184](https://github.com/bitnami/charts/commit/70bd184d88136b8a2e87c9eab5c11371c14d922d)), closes [#30743](https://github.com/bitnami/charts/issues/30743)
613

714
## <small>7.0.25 (2024-11-20)</small>
815

bitnami/argo-cd/Chart.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
dependencies:
22
- name: redis
33
repository: oci://registry-1.docker.io/bitnamicharts
4-
version: 20.4.0
4+
version: 20.4.1
55
- name: common
66
repository: oci://registry-1.docker.io/bitnamicharts
7-
version: 2.27.2
8-
digest: sha256:8c8f6705351c5859f0423d3aa32f6511979d47b427c7d6293c721f7a47fe4d0e
9-
generated: "2024-12-03T21:56:00.770043147Z"
7+
version: 2.28.0
8+
digest: sha256:54adf3da2dd64ec54b202df1939acea4c3b8d6adc2c715f52f7c76b729646d68
9+
generated: "2024-12-10T16:48:58.323293+01:00"

bitnami/argo-cd/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ maintainers:
3939
name: argo-cd
4040
sources:
4141
- https://github.com/bitnami/charts/tree/main/bitnami/argo-cd
42-
version: 7.0.26
42+
version: 7.1.0

bitnami/argo-cd/README.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -318,13 +318,14 @@ As an alternative, use one of the preset configurations for pod affinity, pod an
318318

319319
### Global parameters
320320

321-
| Name | Description | Value |
322-
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
323-
| `global.imageRegistry` | Global Docker image registry | `""` |
324-
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
325-
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
326-
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
327-
| `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `auto` |
321+
| Name | Description | Value |
322+
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
323+
| `global.imageRegistry` | Global Docker image registry | `""` |
324+
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
325+
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
326+
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
327+
| `global.security.allowInsecureImages` | Allows skipping image verification | `false` |
328+
| `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `auto` |
328329

329330
### Common parameters
330331

@@ -1345,6 +1346,10 @@ Find more information about how to deal with common errors related to Bitnami's
13451346

13461347
## Upgrading
13471348

1349+
### To 7.1.0
1350+
1351+
This version introduces image verification for security purposes. To disable it, set `global.security.allowInsecureImages` to `true`. More details at [GitHub issue](https://github.com/bitnami/charts/issues/30850).
1352+
13481353
### To 7.0.0
13491354

13501355
This major updates the Redis&reg; subchart to its newest major, 20.0.0. [Here](https://github.com/bitnami/charts/tree/main/bitnami/redis#to-2000) you can find more information about the changes introduced in that version.

bitnami/argo-cd/templates/NOTES.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,5 @@ WARNING: config.createExtraKnownHosts is disabled, a secret called "argocd-ssh-k
6161

6262
{{- include "argocd.validateValues" . }}
6363
{{- include "common.warnings.resources" (dict "sections" (list "applicationSet" "controller" "dex" "notifications.bots.slack" "notifications" "repoServer" "server" "volumePermissions") "context" $) }}
64-
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.dex.image .Values.volumePermissions.image .Values.redis.image) "context" $) }}
64+
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.dex.image .Values.volumePermissions.image .Values.redis.image) "context" $) }}
65+
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.dex.image .Values.volumePermissions.image .Values.redis.image) "context" $) }}

bitnami/argo-cd/values.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ global:
2020
imagePullSecrets: []
2121
defaultStorageClass: ""
2222
storageClass: ""
23+
## Security parameters
24+
##
25+
security:
26+
## @param global.security.allowInsecureImages Allows skipping image verification
27+
allowInsecureImages: false
2328
## Compatibility adaptations for Kubernetes platforms
2429
##
2530
compatibility:

0 commit comments

Comments
 (0)