Skip to content

Commit

Permalink
[bitnami/fluentd] Detect non-standard images (#30877)
Browse files Browse the repository at this point in the history
* [bitnami/fluentd] 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]>

---------

Signed-off-by: Carlos Rodríguez Hernández <[email protected]>
Signed-off-by: Bitnami Containers <[email protected]>
Co-authored-by: Bitnami Containers <[email protected]>
  • Loading branch information
carrodher and bitnami-bot authored Dec 10, 2024
1 parent e9c279f commit 7975300
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 13 deletions.
9 changes: 7 additions & 2 deletions bitnami/fluentd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Changelog

## 7.0.3 (2024-11-29)
## 7.1.0 (2024-12-10)

* [bitnami/fluentd] Release 7.0.3 ([#30679](https://github.com/bitnami/charts/pull/30679))
* [bitnami/fluentd] Detect non-standard images ([#30877](https://github.com/bitnami/charts/pull/30877))

## <small>7.0.3 (2024-11-29)</small>

* [bitnami/*] docs: :memo: Add "Prometheus metrics" (batch 2) (#30662) ([50e0570](https://github.com/bitnami/charts/commit/50e0570f98ab15308af7910b405baa4480e5fe3f)), closes [#30662](https://github.com/bitnami/charts/issues/30662)
* [bitnami/fluentd] Release 7.0.3 (#30679) ([a427241](https://github.com/bitnami/charts/commit/a4272412d4d43d8921beda27403b38990b0dd95a)), closes [#30679](https://github.com/bitnami/charts/issues/30679)

## <small>7.0.2 (2024-11-09)</small>

Expand Down
6 changes: 3 additions & 3 deletions bitnami/fluentd/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.27.2
digest: sha256:6fd86cc5a4b5094abca1f23c8ec064e75e51eceaded94a5e20977274b2abb576
generated: "2024-11-29T07:48:53.698024027Z"
version: 2.28.0
digest: sha256:5b30f0fa07bb89b01c55fd6258c8ce22a611b13623d4ad83e8fdd1d4490adc74
generated: "2024-12-10T16:59:12.663224+01:00"
2 changes: 1 addition & 1 deletion bitnami/fluentd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ maintainers:
name: fluentd
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/fluentd
version: 7.0.3
version: 7.1.0
19 changes: 12 additions & 7 deletions bitnami/fluentd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,13 +229,14 @@ TLS for the Fluentd can be enabled by setting `tls.enabled=true`. The chart allo

### Global parameters

| Name | Description | Value |
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
| `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
| `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` |
| Name | Description | Value |
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
| `global.security.allowInsecureImages` | Allows skipping image verification | `false` |
| `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` |

### Common parameters

Expand Down Expand Up @@ -558,6 +559,10 @@ Find more information about how to deal with common errors related to Bitnami's

## Upgrading

### To 7.1.0

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).

### To 7.0.0

Starting version 7.0.0, using different images for aggregator and forwarder is no longer supported.
Expand Down
1 change: 1 addition & 0 deletions bitnami/fluentd/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ In order to replicate the container startup scripts execute this command:
{{- include "fluentd.checkRollingTags" . -}}
{{- include "common.warnings.resources" (dict "sections" (list "aggregator" "forwarder") "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image) "context" $) }}
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image) "context" $) }}
5 changes: 5 additions & 0 deletions bitnami/fluentd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ global:
imagePullSecrets: []
defaultStorageClass: ""
storageClass: ""
## Security parameters
##
security:
## @param global.security.allowInsecureImages Allows skipping image verification
allowInsecureImages: false
## Compatibility adaptations for Kubernetes platforms
##
compatibility:
Expand Down

0 comments on commit 7975300

Please sign in to comment.