-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #295 from aramase/release-v0.0.13
release: update manifest and helm charts for v0.0.13
- Loading branch information
Showing
25 changed files
with
295 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,26 @@ | ||
apiVersion: v1 | ||
entries: | ||
secrets-store-csi-driver: | ||
- apiVersion: v1 | ||
appVersion: 0.0.13 | ||
created: "2020-08-17T18:08:01.599946-07:00" | ||
description: A Helm chart to install the SecretsStore CSI Driver inside a Kubernetes | ||
cluster. | ||
digest: 426ea403ad1083cae569a13d8ecf686e4797b7816f6254709070afc4f4b858ab | ||
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png | ||
kubeVersion: '>=1.15.0-0' | ||
maintainers: | ||
- email: [email protected] | ||
name: Rita Zhang | ||
name: secrets-store-csi-driver | ||
sources: | ||
- https://github.com/kubernetes-sigs/secrets-store-csi-driver | ||
urls: | ||
- https://raw.githubusercontent.com/kubernetes-sigs/secrets-store-csi-driver/master/charts/secrets-store-csi-driver-0.0.13.tgz | ||
version: 0.0.13 | ||
- apiVersion: v1 | ||
appVersion: 0.0.12 | ||
created: "2020-07-21T17:21:06.530228-07:00" | ||
created: "2020-08-17T18:08:01.599247-07:00" | ||
description: A Helm chart to install the SecretsStore CSI Driver inside a Kubernetes | ||
cluster. | ||
digest: 0c132d4be8c4eb48109a4fe8cc0ce29e6fc9f68647bb522c4040d033861a0e78 | ||
|
@@ -20,7 +37,7 @@ entries: | |
version: 0.0.12 | ||
- apiVersion: v1 | ||
appVersion: 0.0.11 | ||
created: "2020-07-21T17:21:06.529597-07:00" | ||
created: "2020-08-17T18:08:01.597723-07:00" | ||
description: A Helm chart to install the SecretsStore CSI Driver inside a Kubernetes | ||
cluster. | ||
digest: 2751ae7aed8ea2fc7dcdcbbf26240fccb2eefd83d3943cef45bb58bb1d297692 | ||
|
@@ -37,7 +54,7 @@ entries: | |
version: 0.0.11 | ||
- apiVersion: v1 | ||
appVersion: 0.0.10 | ||
created: "2020-07-21T17:21:06.528357-07:00" | ||
created: "2020-08-17T18:08:01.595105-07:00" | ||
description: A Helm chart to install the SecretsStore CSI Driver inside a Kubernetes | ||
cluster. | ||
digest: 9fae95e4611c9c120ed12505e735680b70ed133ea987fd32db05046cb45eda9e | ||
|
@@ -54,7 +71,7 @@ entries: | |
version: 0.0.10 | ||
- apiVersion: v1 | ||
appVersion: 0.0.9 | ||
created: "2020-07-21T17:21:06.530963-07:00" | ||
created: "2020-08-17T18:08:01.601014-07:00" | ||
description: A Helm chart to install the SecretsStore CSI Driver inside a Kubernetes | ||
cluster. | ||
digest: 0f74454ca36c979a352d8a7b6d847521897ebf78195527ed8946201a841887a7 | ||
|
@@ -69,4 +86,4 @@ entries: | |
urls: | ||
- https://raw.githubusercontent.com/kubernetes-sigs/secrets-store-csi-driver/master/charts/secrets-store-csi-driver-0.0.9.tgz | ||
version: 0.0.9 | ||
generated: "2020-07-21T17:21:06.526827-07:00" | ||
generated: "2020-08-17T18:08:01.591471-07:00" |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
charts/secrets-store-csi-driver/templates/role-syncsecret.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{{ if .Values.syncSecret.enabled }} | ||
|
||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
name: secretprovidersyncing-role | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- secrets | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
{{ end }} |
14 changes: 14 additions & 0 deletions
14
charts/secrets-store-csi-driver/templates/role-syncsecret_binding.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{{ if .Values.syncSecret.enabled }} | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: secretprovidersyncing-rolebinding | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: secretprovidersyncing-role | ||
subjects: | ||
- kind: ServiceAccount | ||
name: secrets-store-csi-driver | ||
namespace: {{ .Release.Namespace }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.