Skip to content

Commit 62a2bd4

Browse files
Carlos Rodríguez HernándezBitnami Containers
Carlos Rodríguez Hernández
and
Bitnami Containers
authored
[bitnami/concourse] Detect non-standard images (#30872)
* [bitnami/concourse] Detect non-standard images Signed-off-by: Carlos Rodríguez Hernández <[email protected]> * Update NOTES.txt 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]> --------- 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 bfac8cc commit 62a2bd4

File tree

6 files changed

+22
-7
lines changed

6 files changed

+22
-7
lines changed

bitnami/concourse/CHANGELOG.md

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

3-
## 5.0.15 (2024-12-05)
3+
## 5.1.0 (2024-12-10)
44

5-
* [bitnami/concourse] Release 5.0.15 ([#30792](https://github.com/bitnami/charts/pull/30792))
5+
* [bitnami/concourse] Detect non-standard images ([#30872](https://github.com/bitnami/charts/pull/30872))
6+
7+
## <small>5.0.15 (2024-12-05)</small>
8+
9+
* [bitnami/concourse] Release 5.0.15 (#30792) ([51f0d05](https://github.com/bitnami/charts/commit/51f0d051baad14130026737253d1184cbddf43c7)), closes [#30792](https://github.com/bitnami/charts/issues/30792)
610

711
## <small>5.0.14 (2024-12-03)</small>
812

bitnami/concourse/Chart.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies:
44
version: 16.2.5
55
- name: common
66
repository: oci://registry-1.docker.io/bitnamicharts
7-
version: 2.27.2
8-
digest: sha256:d9a9e1ad4499a6bfbc96b15508ce23759fd628c33632f4a37265402f2e37ec2d
9-
generated: "2024-12-04T23:55:57.882734742Z"
7+
version: 2.28.0
8+
digest: sha256:215fbb60b9d4fb862194073350dda488a2124f7f803ef5859a7ce9d75b7bee02
9+
generated: "2024-12-10T16:52:48.982858+01:00"

bitnami/concourse/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ maintainers:
3737
name: concourse
3838
sources:
3939
- https://github.com/bitnami/charts/tree/main/bitnami/concourse
40-
version: 5.0.15
40+
version: 5.1.0

bitnami/concourse/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ The [Bitnami Concourse](https://github.com/bitnami/containers/tree/main/bitnami/
205205
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
206206
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
207207
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
208+
| `global.security.allowInsecureImages` | Allows skipping image verification | `false` |
208209
| `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) | `disabled` |
209210

210211
### Common parameters
@@ -612,6 +613,10 @@ Find more information about how to deal with common errors related to Bitnami's
612613

613614
## Upgrading
614615

616+
### To 5.1.0
617+
618+
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).
619+
615620
### To 5.0.0
616621

617622
This major updates the PostgreSQL subchart to its newest major, 16.0.0, which uses PostgreSQL 17.x. Follow the [official instructions](https://www.postgresql.org/docs/17/upgrading.html) to upgrade to 17.x.

bitnami/concourse/templates/NOTES.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,5 @@ To connect to Concourse from outside the cluster, perform the following steps:
170170
{{- end }}
171171
{{- include "common.errors.upgrade.passwords.empty" (dict "validationErrors" $passwordValidationErrors "context" $) -}}
172172
{{- include "common.warnings.resources" (dict "sections" (list "volumePermissions" "web" "worker") "context" $) }}
173-
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.volumePermissions.image) "context" $) }}
173+
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.volumePermissions.image) "context" $) }}
174+
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.volumePermissions.image) "context" $) }}

bitnami/concourse/values.yaml

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

0 commit comments

Comments
 (0)