Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deploy/helm/csi-s3/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
apiVersion: v1
appVersion: 0.43.2
appVersion: 0.43.3
description: "Container Storage Interface (CSI) driver for S3 volumes"
name: csi-s3
version: 0.43.2
version: 0.43.3
keywords:
- s3
home: https://github.com/yandex-cloud/k8s-csi-s3
Expand Down
1 change: 1 addition & 0 deletions deploy/helm/csi-s3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The following table lists all configuration parameters and their default values.

| Parameter | Description | Default |
| ---------------------------- | ---------------------------------------------------------------------- | ------------------------------------------------------ |
| `provisioner.extraArgs` | Extra arguments for the provisioner | [] |
| `storageClass.create` | Specifies whether the storage class should be created | true |
| `storageClass.name` | Storage class name | csi-s3 |
| `storageClass.singleBucket` | Use a single bucket for all dynamically provisioned persistent volumes | |
Expand Down
11 changes: 10 additions & 1 deletion deploy/helm/csi-s3/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
helm_chart:
name: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3
tag: 0.43.2
tag: 0.43.3
requirements:
k8s_version: ">=1.13"
images:
- full: images.registrar
- full: images.provisioner
- full: images.csi
user_values:
- name: provisioner.extraArgs
title:
en: Extra arguments for the provisioner
ru: Дополнительные аргументы для провиженера
description:
en: Extra arguments to pass to the provisioner container
ru: Дополнительные аргументы, которые будут переданы в контейнер провиженера.
string_value:
default_value: ""
- name: storageClass.create
title:
en: Create storage class
Expand Down
3 changes: 3 additions & 0 deletions deploy/helm/csi-s3/templates/provisioner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ spec:
args:
- "--csi-address=$(ADDRESS)"
- "--v=4"
{{- range .Values.provisioner.extraArgs }}
- {{ . | quote }}
{{- end }}
env:
- name: ADDRESS
value: {{ .Values.kubeletPath }}/plugins/ru.yandex.s3.csi/csi.sock
Expand Down
9 changes: 8 additions & 1 deletion deploy/helm/csi-s3/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ images:
# Source: quay.io/k8scsi/csi-provisioner:v2.1.0
provisioner: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-provisioner:v2.1.0
# Main image
csi: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3-driver:0.43.2
csi: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3-driver:0.43.3

provisioner:
# Extra arguments for the provisioner
# Example - change the bucket name prefix from "pvc" to "pvc-s3":
# extraArgs:
# - "--volume-name-prefix=pvc-s3"
extraArgs: []

storageClass:
# Specifies whether the storage class should be created
Expand Down