Skip to content

Commit 890f77e

Browse files
committed
Plugin mostly working, pending update to the CSI itself
1 parent b0328ad commit 890f77e

7 files changed

+120
-15
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
debug.yml
2+
debug-vals.yml

Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ name: zed-csi
33
description: A Helm chart for Kubernetes
44

55
type: application
6-
version: 0.1.0
7-
appVersion: "v0.0.1alpha5"
6+
version: "0.0.1-alpha5"
7+
appVersion: "v0.0.1-alpha5"

debug.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env bash
2+
3+
CMD=$1
4+
5+
if [[ $CMD == 'install' ]]; then
6+
helm install -f debug-vals.yml -n csi zed-csi-debug .
7+
elif [[ $CMD == 'uninstall' ]]; then
8+
helm uninstall -n csi zed-csi-debug
9+
fi

templates/clusterrole.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{{- if .Values.clusterRole.create -}}
2+
23
---
34
kind: ClusterRole
45
apiVersion: rbac.authorization.k8s.io/v1
@@ -60,6 +61,7 @@ metadata:
6061
subjects:
6162
- kind: ServiceAccount
6263
name: {{ include "zed-csi.serviceAccountName" . }}
64+
namespace: '{{ .Release.Namespace }}'
6365
roleRef:
6466
kind: ClusterRole
6567
name: {{ include "zed-csi.clusterRoleName" . }}

templates/configmap.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
apiVersion: v1
2+
kind: ConfigMap
3+
metadata:
4+
name: {{ include "zed-csi.fullname" . }}
5+
labels:
6+
{{- include "zed-csi.labels" . | nindent 4 }}
7+
data:
8+
{{- with .Values.config }}
9+
zed-csi.yml: |
10+
{{- toYaml . | nindent 4 }}
11+
{{- end }}

templates/daemonset.yaml

+46-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,27 @@ spec:
2626
securityContext:
2727
{{- toYaml .Values.podSecurityContext | nindent 8 }}
2828
containers:
29-
- name: {{ .Chart.Name }}
29+
- name: csi-node-driver-registrar
30+
image: ghcr.io/homelab-library/csi-node-driver-registrar:2.0.1
31+
args:
32+
- '--v=5'
33+
- '--csi-address=$(ADDRESS)'
34+
- '--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)'
35+
env:
36+
- name: ADDRESS
37+
value: /plugin/csi.sock
38+
- name: DRIVER_REG_SOCK_PATH
39+
value: /var/lib/kubelet/plugins_registry/zed-csi/csi.sock
40+
- name: KUBE_NODE_NAME
41+
valueFrom:
42+
fieldRef:
43+
fieldPath: spec.nodeName
44+
volumeMounts:
45+
- name: plugin-dir
46+
mountPath: /plugin
47+
- name: registration-dir
48+
mountPath: /registration
49+
- name: zed-csi-driver
3050
securityContext:
3151
{{- toYaml .Values.securityContext | nindent 12 }}
3252
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
@@ -37,6 +57,31 @@ spec:
3757
protocol: TCP
3858
resources:
3959
{{- toYaml .Values.resources | nindent 12 }}
60+
volumeMounts:
61+
- name: plugin-dir
62+
mountPath: /plugin
63+
- name: pods-mount-dir
64+
mountPath: /var/lib/kubelet/pods
65+
mountPropagation: 'Bidirectional'
66+
- name: zed-csi-yml
67+
mountPath: /etc/zed-csi.yml
68+
subPath: zed-csi.yml
69+
volumes:
70+
- name: plugin-dir
71+
hostPath:
72+
path: /var/lib/kubelet/plugins_registry/zed-csi
73+
type: DirectoryOrCreate
74+
- name: registration-dir
75+
hostPath:
76+
path: /var/lib/kubelet/plugins_registry/
77+
type: Directory
78+
- name: pods-mount-dir
79+
hostPath:
80+
path: /var/lib/kubelet/pods
81+
type: Directory
82+
- name: zed-csi-yml
83+
configMap:
84+
name: {{ include "zed-csi.fullname" . }}
4085
{{- with .Values.nodeSelector }}
4186
nodeSelector:
4287
{{- toYaml . | nindent 8 }}

values.yaml

+49-12
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ image:
55
repository: ghcr.io/zed-csi/zed-csi
66
pullPolicy: IfNotPresent
77
# Overrides the image tag whose default is the chart appVersion.
8-
tag: ""
8+
tag: ''
99

1010
imagePullSecrets: []
11-
nameOverride: ""
12-
fullnameOverride: ""
11+
nameOverride: ''
12+
fullnameOverride: ''
1313

1414
serviceAccount:
1515
# Specifies whether a service account should be created
@@ -18,7 +18,7 @@ serviceAccount:
1818
annotations: {}
1919
# The name of the service account to use.
2020
# If not set and create is true, a name is generated using the fullname template
21-
name: ""
21+
name: ''
2222

2323
clusterRole:
2424
# Specifies whether a service account should be created
@@ -27,26 +27,26 @@ clusterRole:
2727
annotations: {}
2828
# The name of the service account to use.
2929
# If not set and create is true, a name is generated using the fullname template
30-
name: ""
30+
name: ''
3131

3232
podAnnotations: {}
3333

34-
podSecurityContext: {}
34+
podSecurityContext:
35+
{}
3536
# fsGroup: 2000
3637

37-
securityContext: {}
38+
securityContext:
39+
privileged: true
40+
allowPrivilegeEscalation: true
3841
# capabilities:
3942
# drop:
4043
# - ALL
4144
# readOnlyRootFilesystem: true
4245
# runAsNonRoot: true
4346
# runAsUser: 1000
4447

45-
service:
46-
type: ClusterIP
47-
port: 80
48-
49-
resources: {}
48+
resources:
49+
{}
5050
# limits:
5151
# cpu: 100m
5252
# memory: 128Mi
@@ -59,3 +59,40 @@ nodeSelector: {}
5959
tolerations: []
6060

6161
affinity: {}
62+
63+
config:
64+
node:
65+
initiator_iqn_mode:
66+
type: detect
67+
control_mode:
68+
type: local
69+
sudo: true
70+
71+
controller:
72+
control_mode:
73+
type: ssh
74+
sudo: true
75+
user: 'user'
76+
host: 'host'
77+
port: 22
78+
# private_key: ''
79+
80+
driver:
81+
name: zfs-csi
82+
reclaim_policy: retain
83+
storage_class: 'iscsi'
84+
default_class: false
85+
86+
iscsi:
87+
# base_iqn: ''
88+
target_portal: '127.0.0.1'
89+
attributes:
90+
authentication: '0'
91+
demo_mode_write_protect: '0'
92+
generate_node_acls: '1'
93+
cache_dynamic_acls: '1'
94+
95+
zfs:
96+
parent_dataset: 'tank/csi/'
97+
attributes:
98+
compression: lz4

0 commit comments

Comments
 (0)