-
Notifications
You must be signed in to change notification settings - Fork 1
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 #33 from Xelon-AG/chore/helm-integration
chore: add helm integration
- Loading branch information
Showing
18 changed files
with
546 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
################################# | ||
# Git & GitHub files # | ||
################################# | ||
.git/ | ||
.github/ | ||
.gitignore | ||
|
||
################################# | ||
# IDE generated files # | ||
################################# | ||
.idea/ | ||
.vscode/ | ||
.project | ||
*.iml | ||
|
||
################################# | ||
# Logs and temp files # | ||
################################# | ||
*.bak | ||
*.log | ||
*.orig | ||
*.swp | ||
*~ | ||
|
||
################################# | ||
# OS generated files # | ||
################################# | ||
Thumbs.db | ||
.directory | ||
.DS_Store |
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,7 @@ | ||
apiVersion: v2 | ||
name: xelon-csi | ||
version: 0.1.0 | ||
description: A Helm Chart for the CSI Driver on Xelon HQ | ||
type: application | ||
|
||
appVersion: "1.0.0" |
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,5 @@ | ||
Xelon CSI Driver {{ .Chart.AppVersion }} was deployed in namespace {{ .Release.Namespace }}. | ||
|
||
To verify that xelon-csi has successfully started, run: | ||
kubectl -n kube-system logs --selector app=xelon-csi-controller | ||
kubectl -n kube-system logs --selector app=xelon-csi-node |
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,52 @@ | ||
{{/* | ||
Expand the name of the chart. | ||
*/}} | ||
{{- define "xelon-csi.name" -}} | ||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} | ||
{{- end }} | ||
|
||
{{/* | ||
Create a default fully qualified app name. | ||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
If release name contains chart name it will be used as a full name. | ||
*/}} | ||
{{- define "xelon-csi.fullname" -}} | ||
{{- if .Values.fullnameOverride }} | ||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} | ||
{{- else }} | ||
{{- $name := default .Chart.Name .Values.nameOverride }} | ||
{{- if contains $name .Release.Name }} | ||
{{- .Release.Name | trunc 63 | trimSuffix "-" }} | ||
{{- else }} | ||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{/* | ||
Create chart name and version as used by the chart label. | ||
*/}} | ||
{{- define "xelon-csi.chart" -}} | ||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} | ||
{{- end }} | ||
|
||
{{/* | ||
Common labels | ||
*/}} | ||
{{- define "xelon-csi.labels" -}} | ||
helm.sh/chart: {{ include "xelon-csi.chart" . }} | ||
{{ include "xelon-csi.selectorLabels" . }} | ||
{{- if .Chart.AppVersion }} | ||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} | ||
{{- end }} | ||
app.kubernetes.io/managed-by: {{ .Release.Service }} | ||
{{- end }} | ||
|
||
{{/* | ||
Selector labels | ||
*/}} | ||
{{- define "xelon-csi.selectorLabels" -}} | ||
app.kubernetes.io/name: {{ include "xelon-csi.name" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
{{- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
apiVersion: apps/v1 | ||
kind: StatefulSet | ||
metadata: | ||
name: xelon-csi-controller | ||
namespace: {{ .Release.Namespace }} | ||
spec: | ||
revisionHistoryLimit: 5 | ||
selector: | ||
matchLabels: | ||
app: xelon-csi-controller | ||
serviceName: "xelon-csi" | ||
replicas: {{ .Values.controller.replicaCount }} | ||
template: | ||
metadata: | ||
labels: | ||
app: xelon-csi-controller | ||
role: xelon-csi | ||
spec: | ||
priorityClassName: system-cluster-critical | ||
serviceAccountName: {{ .Values.controller.serviceAccount.name }} | ||
containers: | ||
- name: xelon-csi-plugin | ||
image: {{ .Values.controller.image.repository }}:{{ .Values.controller.image.tag }} | ||
imagePullPolicy: {{ .Values.controller.image.pullPolicy }} | ||
args: | ||
- "--endpoint=$(CSI_ENDPOINT)" | ||
- "--xelon-base-url=$(XELON_BASE_URL)" | ||
- "--xelon-client-id=$(XELON_CLIENT_ID)" | ||
- "--xelon-cloud-id=$(XELON_CLOUD_ID)" | ||
- "--xelon-token=$(XELON_TOKEN)" | ||
- "--logging-format={{ .Values.controller.loggingFormat }}" | ||
- "--mode=controller" | ||
- "--v={{ .Values.controller.logLevel }}" | ||
env: | ||
- name: CSI_ENDPOINT | ||
value: unix:///csi/csi.sock | ||
- name: XELON_BASE_URL | ||
valueFrom: | ||
secretKeyRef: | ||
name: xelon-api-credentials | ||
key: baseUrl | ||
- name: XELON_CLIENT_ID | ||
valueFrom: | ||
secretKeyRef: | ||
name: xelon-api-credentials | ||
key: clientId | ||
- name: XELON_CLOUD_ID | ||
valueFrom: | ||
secretKeyRef: | ||
name: xelon-api-credentials | ||
key: cloudId | ||
- name: XELON_TOKEN | ||
valueFrom: | ||
secretKeyRef: | ||
name: xelon-api-credentials | ||
key: token | ||
volumeMounts: | ||
- name: socket-dir | ||
mountPath: /csi | ||
- name: csi-provisioner | ||
image: {{ .Values.sidecars.provisioner.image.repository }}:{{ .Values.sidecars.provisioner.image.tag }} | ||
imagePullPolicy: {{ .Values.sidecars.provisioner.image.pullPolicy }} | ||
args: | ||
- "--csi-address=$(CSI_ADDRESS)" | ||
- "--default-fstype=ext4" | ||
- "--extra-create-metadata" | ||
- "--retry-interval-start=5s" | ||
- "--timeout=120s" | ||
- "--v={{ .Values.sidecars.provisioner.logLevel }}" | ||
- "--worker-threads=1" | ||
env: | ||
- name: CSI_ADDRESS | ||
value: /csi/csi.sock | ||
volumeMounts: | ||
- name: socket-dir | ||
mountPath: /csi | ||
- name: csi-attacher | ||
image: {{ .Values.sidecars.attacher.image.repository }}:{{ .Values.sidecars.attacher.image.tag }} | ||
imagePullPolicy: {{ .Values.sidecars.attacher.image.pullPolicy }} | ||
args: | ||
- "--csi-address=$(CSI_ADDRESS)" | ||
- "--timeout=60s" | ||
- "--v={{ .Values.sidecars.attacher.logLevel }}" | ||
- "--worker-threads=1" | ||
env: | ||
- name: CSI_ADDRESS | ||
value: /csi/csi.sock | ||
volumeMounts: | ||
- name: socket-dir | ||
mountPath: /csi | ||
- name: csi-resizer | ||
image: {{ .Values.sidecars.resizer.image.repository }}:{{ .Values.sidecars.resizer.image.tag }} | ||
imagePullPolicy: {{ .Values.sidecars.resizer.image.pullPolicy }} | ||
args: | ||
- "--csi-address=$(CSI_ADDRESS)" | ||
- "--handle-volume-inuse-error=false" | ||
- "--timeout=60s" | ||
- "--v={{ .Values.sidecars.resizer.logLevel }}" | ||
env: | ||
- name: CSI_ADDRESS | ||
value: /csi/csi.sock | ||
volumeMounts: | ||
- name: socket-dir | ||
mountPath: /csi | ||
volumes: | ||
- name: socket-dir | ||
emptyDir: {} |
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,7 @@ | ||
apiVersion: storage.k8s.io/v1 | ||
kind: CSIDriver | ||
metadata: | ||
name: csi.xelon.ch | ||
spec: | ||
attachRequired: true | ||
podInfoOnMount: false |
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,80 @@ | ||
--- | ||
apiVersion: apps/v1 | ||
kind: DaemonSet | ||
metadata: | ||
name: xelon-csi-node | ||
namespace: {{ .Release.Namespace }} | ||
spec: | ||
revisionHistoryLimit: 5 | ||
selector: | ||
matchLabels: | ||
app: xelon-csi-node | ||
template: | ||
metadata: | ||
labels: | ||
app: xelon-csi-node | ||
role: xelon-csi-node | ||
spec: | ||
hostNetwork: true | ||
priorityClassName: system-node-critical | ||
serviceAccountName: {{ .Values.node.serviceAccount.name }} | ||
containers: | ||
- name: xelon-csi-plugin | ||
image: {{ .Values.node.image.repository }}:{{ .Values.node.image.tag }} | ||
imagePullPolicy: {{ .Values.node.image.pullPolicy }} | ||
args: | ||
- "--endpoint=$(CSI_ENDPOINT)" | ||
- "--logging-format={{ .Values.node.loggingFormat }}" | ||
- "--mode=node" | ||
- "--rescan-on-resize=true" | ||
- "--v={{ .Values.node.logLevel }}" | ||
env: | ||
- name: CSI_ENDPOINT | ||
value: unix:///csi/csi.sock | ||
- name: CSI_NODE_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: spec.nodeName | ||
securityContext: | ||
privileged: true | ||
volumeMounts: | ||
- name: plugin-dir | ||
mountPath: /csi | ||
- name: pods-mount-dir | ||
mountPath: /var/lib/kubelet | ||
mountPropagation: "Bidirectional" | ||
- name: device-dir | ||
mountPath: /dev | ||
- name: csi-node-driver-registrar | ||
image: {{ .Values.sidecars.nodeDriverRegistrar.image.repository }}:{{ .Values.sidecars.nodeDriverRegistrar.image.tag }} | ||
imagePullPolicy: {{ .Values.sidecars.nodeDriverRegistrar.image.pullPolicy }} | ||
args: | ||
- "--csi-address=$(ADDRESS)" | ||
- "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)" | ||
- "--v={{ .Values.sidecars.nodeDriverRegistrar.logLevel }}" | ||
env: | ||
- name: ADDRESS | ||
value: /csi/csi.sock | ||
- name: DRIVER_REG_SOCK_PATH | ||
value: /var/lib/kubelet/plugins/csi.xelon.ch/csi.sock | ||
volumeMounts: | ||
- name: plugin-dir | ||
mountPath: /csi | ||
- name: registration-dir | ||
mountPath: /registration | ||
volumes: | ||
- name: registration-dir | ||
hostPath: | ||
path: /var/lib/kubelet/plugins_registry/ | ||
type: Directory | ||
- name: plugin-dir | ||
hostPath: | ||
path: /var/lib/kubelet/plugins/csi.xelon.ch/ | ||
type: DirectoryOrCreate | ||
- name: pods-mount-dir | ||
hostPath: | ||
path: /var/lib/kubelet | ||
type: Directory | ||
- name: device-dir | ||
hostPath: | ||
path: /dev |
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,39 @@ | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: xelon-csi-attacher-role | ||
namespace: {{ .Release.Namespace }} | ||
rules: | ||
- apiGroups: [""] | ||
resources: ["nodes"] | ||
verbs: ["get", "list", "watch"] | ||
- apiGroups: [""] | ||
resources: ["persistentvolumes"] | ||
verbs: ["get", "list", "watch", "update", "patch"] | ||
- apiGroups: ["coordination.k8s.io"] | ||
resources: ["leases"] | ||
verbs: ["get", "watch", "list", "delete", "update", "create", "patch"] | ||
- apiGroups: ["csi.storage.k8s.io"] | ||
resources: ["csinodeinfos"] | ||
verbs: ["get", "list", "watch"] | ||
- apiGroups: ["storage.k8s.io"] | ||
resources: ["volumeattachments"] | ||
verbs: ["get", "list", "watch", "update", "patch"] | ||
- apiGroups: ["storage.k8s.io"] | ||
resources: ["volumeattachments/status"] | ||
verbs: ["get", "list", "watch", "update", "patch"] | ||
|
||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: xelon-csi-attacher-role-binding | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{ .Values.controller.serviceAccount.name }} | ||
namespace: {{ .Release.Namespace }} | ||
roleRef: | ||
kind: ClusterRole | ||
name: xelon-csi-attacher-role | ||
apiGroup: rbac.authorization.k8s.io |
42 changes: 42 additions & 0 deletions
42
charts/xelon-csi/templates/rbac-controller-provisioner.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,42 @@ | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: xelon-csi-provisioner-role | ||
namespace: {{ .Release.Namespace }} | ||
rules: | ||
- apiGroups: [""] | ||
resources: ["events"] | ||
verbs: ["list", "watch", "create", "update", "patch"] | ||
- apiGroups: [""] | ||
resources: ["nodes"] | ||
verbs: ["get", "list", "watch"] | ||
- apiGroups: [""] | ||
resources: ["persistentvolumes"] | ||
verbs: ["get", "list", "watch", "create", "delete"] | ||
- apiGroups: [""] | ||
resources: ["persistentvolumeclaims"] | ||
verbs: ["get", "list", "watch", "update"] | ||
- apiGroups: ["storage.k8s.io"] | ||
resources: ["csinodes"] | ||
verbs: ["get", "list", "watch"] | ||
- apiGroups: ["storage.k8s.io"] | ||
resources: ["storageclasses"] | ||
verbs: ["get", "list", "watch"] | ||
- apiGroups: ["storage.k8s.io"] | ||
resources: ["volumeattachments"] | ||
verbs: ["get", "list", "watch"] | ||
|
||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: xelon-csi-provisioner-role-binding | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{ .Values.controller.serviceAccount.name }} | ||
namespace: {{ .Release.Namespace }} | ||
roleRef: | ||
kind: ClusterRole | ||
name: xelon-csi-provisioner-role | ||
apiGroup: rbac.authorization.k8s.io |
Oops, something went wrong.