diff --git a/stable/sealed-secrets/Chart.yaml b/stable/sealed-secrets/Chart.yaml index eb8ca987ec..ec22255b8f 100644 --- a/stable/sealed-secrets/Chart.yaml +++ b/stable/sealed-secrets/Chart.yaml @@ -1,7 +1,7 @@ name: sealed-secrets description: A Helm chart for Sealed Secrets -version: 1.3.1 -appVersion: 0.8.0 +version: 1.3.2 +appVersion: 0.8.1 kubeVersion: ">=1.9.0-0" home: https://github.com/bitnami-labs/sealed-secrets apiVersion: v1 diff --git a/stable/sealed-secrets/README.md b/stable/sealed-secrets/README.md index 458915bcdb..47b8cd97a7 100644 --- a/stable/sealed-secrets/README.md +++ b/stable/sealed-secrets/README.md @@ -36,7 +36,7 @@ The command removes all the Kubernetes components associated with the chart and | **serviceAccount.create** | Whether to create a service account or not | `true` | | **serviceAccount.name** | The name of the service account to create or use | `"sealed-secrets-controller"` | | **secretName** | The name of the TLS secret containing the key used to encrypt secrets | `"sealed-secrets-key"` | -| **image.tag** | The `Sealed Secrets` image tag | `v0.7.0` | +| **image.tag** | The `Sealed Secrets` image tag | `v0.8.1` | | **image.pullPolicy** | The image pull policy for the deployment | `IfNotPresent` | | **image.repository** | The repository to get the controller image from | `quay.io/bitnami/sealed-secrets-controller` | | **resources** | CPU/Memory resource requests/limits | `{}` | diff --git a/stable/sealed-secrets/templates/cluster-role.yaml b/stable/sealed-secrets/templates/cluster-role.yaml index e0128d4642..b5d148d089 100644 --- a/stable/sealed-secrets/templates/cluster-role.yaml +++ b/stable/sealed-secrets/templates/cluster-role.yaml @@ -18,12 +18,21 @@ rules: - get - list - watch + - update - apiGroups: - "" resources: - secrets verbs: + - get - create - update - delete + - apiGroups: + - "" + resources: + - events + verbs: + - create + - patch {{ end }} diff --git a/stable/sealed-secrets/values.yaml b/stable/sealed-secrets/values.yaml index 0d7854f2f2..7afdec64b7 100644 --- a/stable/sealed-secrets/values.yaml +++ b/stable/sealed-secrets/values.yaml @@ -1,6 +1,6 @@ image: repository: quay.io/bitnami/sealed-secrets-controller - tag: v0.8.0 + tag: v0.8.1 pullPolicy: IfNotPresent resources: {}