Skip to content

Commit

Permalink
release: update manifest and helm charts for 0.0.10 (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
aramase authored Nov 11, 2020
1 parent a89eeb4 commit 6c8a7ca
Show file tree
Hide file tree
Showing 18 changed files with 117 additions and 66 deletions.
Binary file not shown.
4 changes: 2 additions & 2 deletions charts/csi-secrets-store-provider-azure/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: csi-secrets-store-provider-azure
version: 0.0.13
appVersion: 0.0.9
version: 0.0.14
appVersion: 0.0.10
kubeVersion: ">=1.16.0-0"
description: A Helm chart to install the Secrets Store CSI Driver and the Azure Keyvault Provider inside a Kubernetes cluster.
sources:
Expand Down
22 changes: 14 additions & 8 deletions charts/csi-secrets-store-provider-azure/README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions charts/csi-secrets-store-provider-azure/requirements.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: secrets-store-csi-driver
repository: https://raw.githubusercontent.com/kubernetes-sigs/secrets-store-csi-driver/master/charts
version: 0.0.16
digest: sha256:0ed230804eb712e9574ecfcfb94b014fd73884c57e7334e8ae1c485a089e1367
generated: "2020-10-09T17:07:14.051548-07:00"
version: 0.0.17
digest: sha256:211bb2762dee39addea841008c5c021b2279440524e509f61de383cb483b3506
generated: "2020-11-10T14:16:58.14538-08:00"
2 changes: 1 addition & 1 deletion charts/csi-secrets-store-provider-azure/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies:
- name: secrets-store-csi-driver
repository: https://raw.githubusercontent.com/kubernetes-sigs/secrets-store-csi-driver/master/charts
version: 0.0.16
version: 0.0.17
condition: secrets-store-csi-driver.install
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
{{ include "sscdpa.labels" . | indent 2 }}
spec:
updateStrategy:
type: RollingUpdate
{{ toYaml .Values.windows.updateStrategy | indent 4 }}
selector:
matchLabels:
app: {{ template "sscdpa.name" . }}
Expand All @@ -26,6 +26,12 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
- --endpoint=unix://C:\\provider\\azure.sock
{{- if .Values.logFormatJSON }}
- --log-format-json={{ .Values.logFormatJSON }}
{{- end }}
{{- if .Values.logVerbosity }}
- -v={{ .Values.logVerbosity }}
{{- end }}
lifecycle:
preStop:
exec:
Expand All @@ -42,9 +48,10 @@ spec:
mountPath: "C:\\provider"
- name: mountpoint-dir
mountPath: "C:\\var\\lib\\kubelet\\pods"
mountPropagation: Bidirectional
securityContext:
privileged: true
mountPropagation: HostToContainer
{{- if .Values.windows.priorityClassName }}
priorityClassName: {{ .Values.windows.priorityClassName | quote }}
{{- end }}
volumes:
- name: provider-vol
hostPath:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
{{ include "sscdpa.labels" . | indent 2 }}
spec:
updateStrategy:
type: RollingUpdate
{{ toYaml .Values.linux.updateStrategy | indent 4 }}
selector:
matchLabels:
app: {{ template "sscdpa.name" . }}
Expand All @@ -27,6 +27,12 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
- --endpoint=unix:///provider/azure.sock
{{- if .Values.logFormatJSON }}
- --log-format-json={{ .Values.logFormatJSON }}
{{- end }}
{{- if .Values.logVerbosity }}
- -v={{ .Values.logVerbosity }}
{{- end }}
lifecycle:
preStop:
exec:
Expand All @@ -39,9 +45,10 @@ spec:
mountPath: /provider
- name: mountpoint-dir
mountPath: /var/lib/kubelet/pods
mountPropagation: Bidirectional
securityContext:
privileged: true
mountPropagation: HostToContainer
{{- if .Values.linux.priorityClassName }}
priorityClassName: {{ .Values.linux.priorityClassName | quote }}
{{- end }}
volumes:
- name: provider-vol
hostPath:
Expand Down
33 changes: 24 additions & 9 deletions charts/csi-secrets-store-provider-azure/values.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
image:
repository: mcr.microsoft.com/oss/azure/secrets-store/provider-azure
tag: 0.0.9
tag: 0.0.10
pullPolicy: IfNotPresent

# One or more secrets to be used when pulling images
imagePullSecrets: []
# - name: myRegistryKeySecretName

# logging format json
# Default is text.
logFormatJSON: false

# log level. Uses V logs (klog)
logVerbosity: 0

linux:
nodeSelector: {}
tolerations: []
Expand All @@ -18,6 +25,11 @@ linux:
limits:
cpu: 50m
memory: 100Mi
priorityClassName: ""
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1

windows:
nodeSelector: {}
Expand All @@ -30,6 +42,11 @@ windows:
limits:
cpu: 100m
memory: 200Mi
priorityClassName: ""
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1

## Configuration values for the secrets-store-csi-driver dependency.
## ref: https://github.com/kubernetes-sigs/secrets-store-csi-driver/tree/master/charts/secrets-store-csi-driver/README.md
Expand All @@ -42,15 +59,15 @@ secrets-store-csi-driver:
metricsAddr: ":8080"
image:
repository: mcr.microsoft.com/oss/kubernetes-csi/secrets-store/driver
tag: v0.0.16
tag: v0.0.17
pullPolicy: IfNotPresent
registrarImage:
repository: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar
tag: v1.2.0
tag: v2.0.1
pullPolicy: IfNotPresent
livenessProbeImage:
repository: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe
tag: v2.0.0
tag: v2.1.0
pullPolicy: IfNotPresent

windows:
Expand All @@ -59,19 +76,17 @@ secrets-store-csi-driver:
metricsAddr: ":8080"
image:
repository: mcr.microsoft.com/oss/kubernetes-csi/secrets-store/driver
tag: v0.0.16
tag: v0.0.17
pullPolicy: IfNotPresent
registrarImage:
repository: mcr.microsoft.com/oss/kubernetes-csi/csi-node-driver-registrar
tag: v1.2.1-alpha.1-windows-1809-amd64
tag: v2.0.1
pullPolicy: IfNotPresent
livenessProbeImage:
repository: mcr.microsoft.com/oss/kubernetes-csi/livenessprobe
tag: v2.0.1-alpha.1-windows-1809-amd64
tag: v2.1.0
pullPolicy: IfNotPresent

logLevel:
debug: true
grpcSupportedProviders: azure
enableSecretRotation: false
rotationPollInterval: 2m
Expand Down
42 changes: 32 additions & 10 deletions charts/index.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,31 @@
apiVersion: v1
entries:
csi-secrets-store-provider-azure:
- apiVersion: v1
appVersion: 0.0.10
created: "2020-11-10T15:30:07.136468-08:00"
dependencies:
- condition: secrets-store-csi-driver.install
name: secrets-store-csi-driver
repository: https://raw.githubusercontent.com/kubernetes-sigs/secrets-store-csi-driver/master/charts
version: 0.0.17
description: A Helm chart to install the Secrets Store CSI Driver and the Azure
Keyvault Provider inside a Kubernetes cluster.
digest: fbcfc384cd4465eedc39373af2179d64f63c2b1fa815e28eacf019ef6052ccf0
home: https://github.com/Azure/secrets-store-csi-driver-provider-azure
kubeVersion: '>=1.16.0-0'
maintainers:
- email: [email protected]
name: Anish Ramasekar
name: csi-secrets-store-provider-azure
sources:
- https://github.com/Azure/secrets-store-csi-driver-provider-azure
urls:
- https://raw.githubusercontent.com/Azure/secrets-store-csi-driver-provider-azure/master/charts/csi-secrets-store-provider-azure-0.0.14.tgz
version: 0.0.14
- apiVersion: v1
appVersion: 0.0.9
created: "2020-10-09T17:11:32.453626-07:00"
created: "2020-11-10T15:30:07.134485-08:00"
dependencies:
- condition: secrets-store-csi-driver.install
name: secrets-store-csi-driver
Expand All @@ -25,7 +47,7 @@ entries:
version: 0.0.13
- apiVersion: v1
appVersion: 0.0.9
created: "2020-10-09T17:11:32.452175-07:00"
created: "2020-11-10T15:30:07.131455-08:00"
dependencies:
- condition: secrets-store-csi-driver.install
name: secrets-store-csi-driver
Expand All @@ -47,7 +69,7 @@ entries:
version: 0.0.12
- apiVersion: v1
appVersion: 0.0.9
created: "2020-10-09T17:11:32.450361-07:00"
created: "2020-11-10T15:30:07.129185-08:00"
dependencies:
- condition: secrets-store-csi-driver.install
name: secrets-store-csi-driver
Expand All @@ -69,7 +91,7 @@ entries:
version: 0.0.11
- apiVersion: v1
appVersion: 0.0.8
created: "2020-10-09T17:11:32.442807-07:00"
created: "2020-11-10T15:30:07.127832-08:00"
dependencies:
- condition: secrets-store-csi-driver.install
name: secrets-store-csi-driver
Expand All @@ -91,7 +113,7 @@ entries:
version: 0.0.10
- apiVersion: v1
appVersion: 0.0.7
created: "2020-10-09T17:11:32.474593-07:00"
created: "2020-11-10T15:30:07.156482-08:00"
dependencies:
- condition: secrets-store-csi-driver.install
name: secrets-store-csi-driver
Expand All @@ -113,7 +135,7 @@ entries:
version: 0.0.9
- apiVersion: v1
appVersion: 0.0.7
created: "2020-10-09T17:11:32.468252-07:00"
created: "2020-11-10T15:30:07.150403-08:00"
dependencies:
- condition: secrets-store-csi-driver.install
name: secrets-store-csi-driver
Expand All @@ -135,7 +157,7 @@ entries:
version: 0.0.8
- apiVersion: v1
appVersion: 0.0.6
created: "2020-10-09T17:11:32.466558-07:00"
created: "2020-11-10T15:30:07.144842-08:00"
dependencies:
- condition: secrets-store-csi-driver.install
name: secrets-store-csi-driver
Expand All @@ -157,7 +179,7 @@ entries:
version: 0.0.7
- apiVersion: v1
appVersion: 0.0.5
created: "2020-10-09T17:11:32.460767-07:00"
created: "2020-11-10T15:30:07.143418-08:00"
dependencies:
- condition: driver.install
name: secrets-store-csi-driver
Expand All @@ -179,7 +201,7 @@ entries:
version: 0.0.6
- apiVersion: v1
appVersion: 0.0.5
created: "2020-10-09T17:11:32.454839-07:00"
created: "2020-11-10T15:30:07.142247-08:00"
dependencies:
- condition: driver.install
name: secrets-store-csi-driver
Expand All @@ -199,4 +221,4 @@ entries:
urls:
- https://raw.githubusercontent.com/Azure/secrets-store-csi-driver-provider-azure/master/charts/csi-secrets-store-provider-azure-0.0.5.tgz
version: 0.0.5
generated: "2020-10-09T17:11:32.440466-07:00"
generated: "2020-11-10T15:30:07.125549-08:00"
6 changes: 2 additions & 4 deletions deployment/provider-azure-installer-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
serviceAccountName: csi-secrets-store-provider-azure
containers:
- name: provider-azure-installer
image: mcr.microsoft.com/oss/azure/secrets-store/provider-azure:0.0.9
image: mcr.microsoft.com/oss/azure/secrets-store/provider-azure:0.0.10
imagePullPolicy: IfNotPresent
args:
- --endpoint=unix://C:\\provider\\azure.sock
Expand All @@ -48,9 +48,7 @@ spec:
name: providervol
- name: mountpoint-dir
mountPath: "C:\\var\\lib\\kubelet\\pods"
mountPropagation: Bidirectional
securityContext:
privileged: true
mountPropagation: HostToContainer
volumes:
- name: providervol
hostPath:
Expand Down
6 changes: 2 additions & 4 deletions deployment/provider-azure-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
hostNetwork: true
containers:
- name: provider-azure-installer
image: mcr.microsoft.com/oss/azure/secrets-store/provider-azure:0.0.9
image: mcr.microsoft.com/oss/azure/secrets-store/provider-azure:0.0.10
imagePullPolicy: IfNotPresent
args:
- --endpoint=unix:///provider/azure.sock
Expand All @@ -45,9 +45,7 @@ spec:
name: providervol
- name: mountpoint-dir
mountPath: /var/lib/kubelet/pods
mountPropagation: Bidirectional
securityContext:
privileged: true
mountPropagation: HostToContainer
volumes:
- name: providervol
hostPath:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: csi-secrets-store-provider-azure
version: 0.0.13
appVersion: 0.0.9
version: 0.0.14
appVersion: 0.0.10
kubeVersion: ">=1.16.0-0"
description: A Helm chart to install the Secrets Store CSI Driver and the Azure Keyvault Provider inside a Kubernetes cluster.
sources:
Expand Down
Loading

0 comments on commit 6c8a7ca

Please sign in to comment.