Compare commits
9 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
25401592e1 | ||
![]() |
8d1ad692e5 | ||
![]() |
16c6c0ee13 | ||
![]() |
227e1cf2dd | ||
![]() |
40086c1ffa | ||
![]() |
6cfd3ebbb6 | ||
![]() |
195829887a | ||
![]() |
f7e3c21a87 | ||
![]() |
06d059bfd1 |
15 changed files with 87 additions and 29 deletions
48
.github/workflows/pages.yml
vendored
Normal file
48
.github/workflows/pages.yml
vendored
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
name: Publish Helm chart
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||||||
|
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||||||
|
concurrency:
|
||||||
|
group: "pages"
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
|
||||||
|
environment:
|
||||||
|
name: github-pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Setup Pages
|
||||||
|
uses: actions/configure-pages@v3
|
||||||
|
|
||||||
|
- name: Publish Helm chart
|
||||||
|
uses: stefanprodan/helm-gh-pages@0ad2bb377311d61ac04ad9eb6f252fb68e207260 # v1.7.0
|
||||||
|
with:
|
||||||
|
# GitHub automatically creates a GITHUB_TOKEN secret to use in your workflow. You can use the GITHUB_TOKEN to authenticate in a workflow run.
|
||||||
|
# See https://docs.github.com/en/actions/reference/authentication-in-a-workflow#about-the-github_token-secret
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
branch: github-pages
|
||||||
|
charts_dir: deploy/helm
|
||||||
|
target_dir: charts
|
||||||
|
linting: off
|
|
@ -11,8 +11,8 @@ FROM alpine:3.17
|
||||||
LABEL maintainers="Vitaliy Filippov <vitalif@yourcmc.ru>"
|
LABEL maintainers="Vitaliy Filippov <vitalif@yourcmc.ru>"
|
||||||
LABEL description="csi-s3 slim image"
|
LABEL description="csi-s3 slim image"
|
||||||
|
|
||||||
RUN apk add --no-cache fuse
|
RUN apk add --no-cache fuse mailcap rclone
|
||||||
#RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community rclone s3fs-fuse
|
RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community s3fs-fuse
|
||||||
|
|
||||||
ADD https://github.com/yandex-cloud/geesefs/releases/latest/download/geesefs-linux-amd64 /usr/bin/geesefs
|
ADD https://github.com/yandex-cloud/geesefs/releases/latest/download/geesefs-linux-amd64 /usr/bin/geesefs
|
||||||
RUN chmod 755 /usr/bin/geesefs
|
RUN chmod 755 /usr/bin/geesefs
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -17,7 +17,7 @@ REGISTRY_NAME=cr.yandex/crp9ftr22d26age3hulg
|
||||||
REGISTRY_NAME2=cr.il.nebius.cloud/crll7us9n6i5j3v4n92m
|
REGISTRY_NAME2=cr.il.nebius.cloud/crll7us9n6i5j3v4n92m
|
||||||
IMAGE_NAME=csi-s3
|
IMAGE_NAME=csi-s3
|
||||||
IMAGE_NAME2=yandex-cloud/csi-s3/csi-s3-driver
|
IMAGE_NAME2=yandex-cloud/csi-s3/csi-s3-driver
|
||||||
VERSION ?= 0.36.2
|
VERSION ?= 0.38.3
|
||||||
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(VERSION)
|
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(VERSION)
|
||||||
TEST_IMAGE_TAG=$(IMAGE_NAME):test
|
TEST_IMAGE_TAG=$(IMAGE_NAME):test
|
||||||
|
|
||||||
|
|
24
README.md
24
README.md
|
@ -10,7 +10,19 @@ This is a Container Storage Interface ([CSI](https://github.com/container-storag
|
||||||
* Kubernetes has to allow privileged containers
|
* Kubernetes has to allow privileged containers
|
||||||
* Docker daemon must allow shared mounts (systemd flag `MountFlags=shared`)
|
* Docker daemon must allow shared mounts (systemd flag `MountFlags=shared`)
|
||||||
|
|
||||||
### 1. Create a secret with your S3 credentials
|
### Helm chart
|
||||||
|
|
||||||
|
Helm chart is published at `https://yandex-cloud.github.io/k8s-csi-s3`:
|
||||||
|
|
||||||
|
```
|
||||||
|
helm repo add yandex-s3 https://yandex-cloud.github.io/k8s-csi-s3/charts
|
||||||
|
|
||||||
|
helm install csi-s3 yandex-s3/csi-s3
|
||||||
|
```
|
||||||
|
|
||||||
|
### Manual installation
|
||||||
|
|
||||||
|
#### 1. Create a secret with your S3 credentials
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
|
@ -30,7 +42,7 @@ stringData:
|
||||||
|
|
||||||
The region can be empty if you are using some other S3 compatible storage.
|
The region can be empty if you are using some other S3 compatible storage.
|
||||||
|
|
||||||
### 2. Deploy the driver
|
#### 2. Deploy the driver
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd deploy/kubernetes
|
cd deploy/kubernetes
|
||||||
|
@ -47,13 +59,13 @@ wget https://raw.githubusercontent.com/yandex-cloud/k8s-csi-s3/v0.35.5/deploy/ku
|
||||||
kubectl delete -f attacher.yaml
|
kubectl delete -f attacher.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
### 3. Create the storage class
|
#### 3. Create the storage class
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
kubectl create -f examples/storageclass.yaml
|
kubectl create -f examples/storageclass.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
### 4. Test the S3 driver
|
#### 4. Test the S3 driver
|
||||||
|
|
||||||
1. Create a pvc using the new storage class:
|
1. Create a pvc using the new storage class:
|
||||||
|
|
||||||
|
@ -82,8 +94,8 @@ kubectl create -f examples/storageclass.yaml
|
||||||
```bash
|
```bash
|
||||||
$ kubectl exec -ti csi-s3-test-nginx bash
|
$ kubectl exec -ti csi-s3-test-nginx bash
|
||||||
$ mount | grep fuse
|
$ mount | grep fuse
|
||||||
s3fs on /var/lib/www/html type fuse.s3fs (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)
|
pvc-035763df-0488-4941-9a34-f637292eb95c: on /usr/share/nginx/html/s3 type fuse.geesefs (rw,nosuid,nodev,relatime,user_id=65534,group_id=0,default_permissions,allow_other)
|
||||||
$ touch /var/lib/www/html/hello_world
|
$ touch /usr/share/nginx/html/s3/hello_world
|
||||||
```
|
```
|
||||||
|
|
||||||
If something does not work as expected, check the troubleshooting section below.
|
If something does not work as expected, check the troubleshooting section below.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: 0.36.2
|
appVersion: 0.38.3
|
||||||
description: "Container Storage Interface (CSI) driver for S3 volumes"
|
description: "Container Storage Interface (CSI) driver for S3 volumes"
|
||||||
name: csi-s3
|
name: csi-s3
|
||||||
version: 0.36.2
|
version: 0.38.3
|
||||||
keywords:
|
keywords:
|
||||||
- s3
|
- s3
|
||||||
home: https://github.com/yandex-cloud/k8s-csi-s3
|
home: https://github.com/yandex-cloud/k8s-csi-s3
|
|
@ -1,6 +1,6 @@
|
||||||
helm_chart:
|
helm_chart:
|
||||||
name: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3
|
name: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3
|
||||||
tag: 0.36.2
|
tag: 0.38.3
|
||||||
requirements:
|
requirements:
|
||||||
k8s_version: ">=1.13"
|
k8s_version: ">=1.13"
|
||||||
images:
|
images:
|
||||||
|
@ -14,7 +14,7 @@ user_values:
|
||||||
ru: Создать класс хранения
|
ru: Создать класс хранения
|
||||||
description:
|
description:
|
||||||
en: Specifies whether the storage class should be created
|
en: Specifies whether the storage class should be created
|
||||||
ru: 'Если "да", при установке будет создан класс хранения S3'
|
ru: Выберите, чтобы создать новый S3-класс хранения при развёртывании приложения.
|
||||||
boolean_value:
|
boolean_value:
|
||||||
default_value: true
|
default_value: true
|
||||||
- name: secret.create
|
- name: secret.create
|
||||||
|
@ -23,7 +23,7 @@ user_values:
|
||||||
ru: Создать секрет
|
ru: Создать секрет
|
||||||
description:
|
description:
|
||||||
en: Specifies whether the secret should be created
|
en: Specifies whether the secret should be created
|
||||||
ru: 'Если "да", при установке будет создан секрет, иначе для класса хранения будет использован существующий'
|
ru: Выберите, чтобы создать новый секрет для класса хранения при установке приложения, а не использовать существующий.
|
||||||
boolean_value:
|
boolean_value:
|
||||||
default_value: true
|
default_value: true
|
||||||
- name: secret.accessKey
|
- name: secret.accessKey
|
||||||
|
@ -32,7 +32,7 @@ user_values:
|
||||||
ru: Идентификатор ключа S3
|
ru: Идентификатор ключа S3
|
||||||
description:
|
description:
|
||||||
en: S3 Access Key ID
|
en: S3 Access Key ID
|
||||||
ru: Идентификатор ключа S3
|
ru: Идентификатор ключа S3.
|
||||||
string_value:
|
string_value:
|
||||||
default_value: ""
|
default_value: ""
|
||||||
- name: secret.secretKey
|
- name: secret.secretKey
|
||||||
|
@ -41,7 +41,7 @@ user_values:
|
||||||
ru: Секретный ключ S3
|
ru: Секретный ключ S3
|
||||||
description:
|
description:
|
||||||
en: S3 Secret Key
|
en: S3 Secret Key
|
||||||
ru: Секретный ключ S3
|
ru: Секретный ключ S3.
|
||||||
string_value:
|
string_value:
|
||||||
default_value: ""
|
default_value: ""
|
||||||
- name: storageClass.singleBucket
|
- name: storageClass.singleBucket
|
||||||
|
@ -50,7 +50,7 @@ user_values:
|
||||||
ru: Общий бакет S3 для томов
|
ru: Общий бакет S3 для томов
|
||||||
description:
|
description:
|
||||||
en: Single S3 bucket to use for all dynamically provisioned persistent volumes
|
en: Single S3 bucket to use for all dynamically provisioned persistent volumes
|
||||||
ru: Общий бакет S3, в котором будут создаваться все динамически распределяемые тома. Если пусто, под каждый том будет создаваться новый бакет
|
ru: Общий бакет S3, в котором будут создаваться все динамически распределяемые тома. Если пусто, под каждый том будет создаваться новый бакет.
|
||||||
string_value:
|
string_value:
|
||||||
default_value: ""
|
default_value: ""
|
||||||
- name: secret.endpoint
|
- name: secret.endpoint
|
||||||
|
@ -59,7 +59,7 @@ user_values:
|
||||||
ru: Адрес S3-сервиса
|
ru: Адрес S3-сервиса
|
||||||
description:
|
description:
|
||||||
en: S3 service endpoint to use
|
en: S3 service endpoint to use
|
||||||
ru: Адрес S3-сервиса, который будет использоваться
|
ru: Адрес S3-сервиса, который будет использоваться.
|
||||||
string_value:
|
string_value:
|
||||||
default_value: "https://storage.yandexcloud.net"
|
default_value: "https://storage.yandexcloud.net"
|
||||||
- name: storageClass.mountOptions
|
- name: storageClass.mountOptions
|
||||||
|
@ -67,8 +67,8 @@ user_values:
|
||||||
en: GeeseFS mount options
|
en: GeeseFS mount options
|
||||||
ru: Опции монтирования GeeseFS
|
ru: Опции монтирования GeeseFS
|
||||||
description:
|
description:
|
||||||
en: GeeseFS mount options to use. Consult GeeseFS (https://github.com/yandex-cloud/geesefs) help for the full option list
|
en: GeeseFS mount options to use. Refer to `geesefs --help` command output for the whole list of options (https://github.com/yandex-cloud/geesefs).
|
||||||
ru: Опции монтирования GeeseFS. Смотрите справку GeeseFS (https://github.com/yandex-cloud/geesefs) для полного перечня опций
|
ru: Опции монтирования GeeseFS. Полный перечень и описание опций смотрите в выводе команды `geesefs --help` (https://github.com/yandex-cloud/geesefs).
|
||||||
string_value:
|
string_value:
|
||||||
default_value: "--memory-limit 1000 --dir-mode 0777 --file-mode 0666"
|
default_value: "--memory-limit 1000 --dir-mode 0777 --file-mode 0666"
|
||||||
- name: storageClass.reclaimPolicy
|
- name: storageClass.reclaimPolicy
|
||||||
|
@ -77,7 +77,7 @@ user_values:
|
||||||
ru: Политика очистки томов
|
ru: Политика очистки томов
|
||||||
description:
|
description:
|
||||||
en: Volume reclaim policy for the storage class (Retain or Delete)
|
en: Volume reclaim policy for the storage class (Retain or Delete)
|
||||||
ru: Политика очистки PV, связанных с PVC (Retain - сохранять при удалении PVC, Delete - удалять при удалении PVC)
|
ru: Выберите политику очистки томов PersistentVolume при удалении PersistentVolumeClaim. Retain — сохранять том, Delete — удалять том.
|
||||||
string_selector_value:
|
string_selector_value:
|
||||||
default_value: Delete
|
default_value: Delete
|
||||||
values:
|
values:
|
||||||
|
@ -89,7 +89,7 @@ user_values:
|
||||||
ru: Название класса хранения
|
ru: Название класса хранения
|
||||||
description:
|
description:
|
||||||
en: Name of the storage class that will be created
|
en: Name of the storage class that will be created
|
||||||
ru: Название класса хранения, который будет создан при установке
|
ru: Название класса хранения, который будет создан при установке.
|
||||||
string_value:
|
string_value:
|
||||||
default_value: csi-s3
|
default_value: csi-s3
|
||||||
- name: secret.name
|
- name: secret.name
|
||||||
|
@ -98,7 +98,7 @@ user_values:
|
||||||
ru: Название секрета
|
ru: Название секрета
|
||||||
description:
|
description:
|
||||||
en: Name of the secret to create or use for the storage class
|
en: Name of the secret to create or use for the storage class
|
||||||
ru: Название секрета, который будет создан или использован для класса хранения
|
ru: Название секрета, который будет создан или использован для класса хранения.
|
||||||
string_value:
|
string_value:
|
||||||
default_value: csi-s3-secret
|
default_value: csi-s3-secret
|
||||||
- name: tolerations.all
|
- name: tolerations.all
|
||||||
|
@ -107,6 +107,6 @@ user_values:
|
||||||
ru: Игнорировать все политики taint
|
ru: Игнорировать все политики taint
|
||||||
description:
|
description:
|
||||||
en: Tolerate all taints by the CSI-S3 node driver (mounter)
|
en: Tolerate all taints by the CSI-S3 node driver (mounter)
|
||||||
ru: Игнорировать все политики taint узлов кластера драйвером CSI-S3, монтирующим ФС на узлах
|
ru: Выберите, чтобы драйвер CSI, который монтирует файловую систему на узлах, игнорировал все политики taint для узлов кластера.
|
||||||
boolean_value:
|
boolean_value:
|
||||||
default_value: false
|
default_value: false
|
|
@ -50,7 +50,6 @@ spec:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
serviceAccount: csi-s3
|
serviceAccount: csi-s3
|
||||||
hostNetwork: true
|
|
||||||
containers:
|
containers:
|
||||||
- name: driver-registrar
|
- name: driver-registrar
|
||||||
image: {{ .Values.images.registrar }}
|
image: {{ .Values.images.registrar }}
|
|
@ -5,7 +5,7 @@ images:
|
||||||
# Source: quay.io/k8scsi/csi-provisioner:v2.1.0
|
# Source: quay.io/k8scsi/csi-provisioner:v2.1.0
|
||||||
provisioner: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-provisioner:v2.1.0
|
provisioner: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-provisioner:v2.1.0
|
||||||
# Main image
|
# Main image
|
||||||
csi: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3-driver:0.36.2
|
csi: cr.yandex/crp9ftr22d26age3hulg/yandex-cloud/csi-s3/csi-s3-driver:0.38.3
|
||||||
|
|
||||||
storageClass:
|
storageClass:
|
||||||
# Specifies whether the storage class should be created
|
# Specifies whether the storage class should be created
|
|
@ -43,7 +43,6 @@ spec:
|
||||||
effect: NoExecute
|
effect: NoExecute
|
||||||
tolerationSeconds: 300
|
tolerationSeconds: 300
|
||||||
serviceAccount: csi-s3
|
serviceAccount: csi-s3
|
||||||
hostNetwork: true
|
|
||||||
containers:
|
containers:
|
||||||
- name: driver-registrar
|
- name: driver-registrar
|
||||||
image: quay.io/k8scsi/csi-node-driver-registrar:v1.2.0
|
image: quay.io/k8scsi/csi-node-driver-registrar:v1.2.0
|
||||||
|
@ -71,7 +70,7 @@ spec:
|
||||||
capabilities:
|
capabilities:
|
||||||
add: ["SYS_ADMIN"]
|
add: ["SYS_ADMIN"]
|
||||||
allowPrivilegeEscalation: true
|
allowPrivilegeEscalation: true
|
||||||
image: cr.yandex/crp9ftr22d26age3hulg/csi-s3:0.36.2
|
image: cr.yandex/crp9ftr22d26age3hulg/csi-s3:0.38.3
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- "--endpoint=$(CSI_ENDPOINT)"
|
- "--endpoint=$(CSI_ENDPOINT)"
|
||||||
|
|
|
@ -88,7 +88,7 @@ spec:
|
||||||
- name: socket-dir
|
- name: socket-dir
|
||||||
mountPath: /var/lib/kubelet/plugins/ru.yandex.s3.csi
|
mountPath: /var/lib/kubelet/plugins/ru.yandex.s3.csi
|
||||||
- name: csi-s3
|
- name: csi-s3
|
||||||
image: cr.yandex/crp9ftr22d26age3hulg/csi-s3:0.36.2
|
image: cr.yandex/crp9ftr22d26age3hulg/csi-s3:0.38.3
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- "--endpoint=$(CSI_ENDPOINT)"
|
- "--endpoint=$(CSI_ENDPOINT)"
|
||||||
|
|
Loading…
Add table
Reference in a new issue