diff --git a/bitnami/fluentd/Chart.yaml b/bitnami/fluentd/Chart.yaml index 5440df5ab8..a17bbbd758 100644 --- a/bitnami/fluentd/Chart.yaml +++ b/bitnami/fluentd/Chart.yaml @@ -30,4 +30,4 @@ maintainers: name: fluentd sources: - https://github.com/bitnami/charts/tree/main/bitnami/fluentd -version: 5.11.1 +version: 5.12.0 diff --git a/bitnami/fluentd/README.md b/bitnami/fluentd/README.md index 7159164d09..087d12374b 100644 --- a/bitnami/fluentd/README.md +++ b/bitnami/fluentd/README.md @@ -103,6 +103,7 @@ The command removes all the Kubernetes components associated with the chart and | `forwarder.containerSecurityContext.allowPrivilegeEscalation` | Allow Privilege Escalation | `false` | | `forwarder.containerSecurityContext.readOnlyRootFilesystem` | Require the use of a read only root file system | `false` | | `forwarder.containerSecurityContext.capabilities.drop` | Drop capabilities for the securityContext | `[]` | +| `forwarder.containerSecurityContext.seccompProfile.type` | Set container's Security Context seccomp profile | `RuntimeDefault` | | `forwarder.hostNetwork` | Enable use of host network | `false` | | `forwarder.dnsPolicy` | Pod-specific DNS policy | `""` | | `forwarder.terminationGracePeriodSeconds` | Duration in seconds the pod needs to terminate gracefully | `30` | @@ -199,6 +200,7 @@ The command removes all the Kubernetes components associated with the chart and | `aggregator.containerSecurityContext.allowPrivilegeEscalation` | Allow Privilege Escalation | `false` | | `aggregator.containerSecurityContext.readOnlyRootFilesystem` | Require the use of a read only root file system | `false` | | `aggregator.containerSecurityContext.capabilities.drop` | Drop capabilities for the securityContext | `[]` | +| `aggregator.containerSecurityContext.seccompProfile.type` | Set container's Security Context seccomp profile | `RuntimeDefault` | | `aggregator.terminationGracePeriodSeconds` | Duration in seconds the pod needs to terminate gracefully | `30` | | `aggregator.extraGems` | List of extra gems to be installed. Can be used to install additional fluentd plugins. | `[]` | | `aggregator.configFile` | Name of the config file that will be used by Fluentd at launch under the `/opt/bitnami/fluentd/conf` directory | `fluentd.conf` | diff --git a/bitnami/fluentd/values.yaml b/bitnami/fluentd/values.yaml index cdfc569ae3..3e3453127b 100644 --- a/bitnami/fluentd/values.yaml +++ b/bitnami/fluentd/values.yaml @@ -130,6 +130,7 @@ forwarder: ## @param forwarder.containerSecurityContext.allowPrivilegeEscalation Allow Privilege Escalation ## @param forwarder.containerSecurityContext.readOnlyRootFilesystem Require the use of a read only root file system ## @param forwarder.containerSecurityContext.capabilities.drop [array] Drop capabilities for the securityContext + ## @param forwarder.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile ## containerSecurityContext: enabled: true @@ -141,6 +142,8 @@ forwarder: capabilities: drop: - ALL + seccompProfile: + type: "RuntimeDefault" ## @param forwarder.hostNetwork Enable use of host network ## hostNetwork: false @@ -677,6 +680,7 @@ aggregator: ## @param aggregator.containerSecurityContext.allowPrivilegeEscalation Allow Privilege Escalation ## @param aggregator.containerSecurityContext.readOnlyRootFilesystem Require the use of a read only root file system ## @param aggregator.containerSecurityContext.capabilities.drop [array] Drop capabilities for the securityContext + ## @param aggregator.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile ## containerSecurityContext: enabled: true @@ -688,6 +692,8 @@ aggregator: capabilities: drop: - ALL + seccompProfile: + type: "RuntimeDefault" ## @param aggregator.terminationGracePeriodSeconds Duration in seconds the pod needs to terminate gracefully ## https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/ ##