Skip to content

Commit

Permalink
fix indent of tolerations
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralf Grubenmann committed Jan 10, 2024
1 parent 3b0e87e commit 449bbc0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion deploy/chartpress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ charts:
- name: csi-rclone
imagePrefix: renku/
resetTag: ""
resetVersion: 0.1.1
resetVersion: 0.1.2
repo:
git: SwissDataScienceCenter/helm-charts
published: https://swissdatasciencecenter.github.io/helm-charts
Expand Down
4 changes: 2 additions & 2 deletions deploy/csi-rclone/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: csi-rclone
description: A Helm chart for the Rclone CSI
type: application
version: 0.1.1
appVersion: "0.1.1"
version: 0.1.2
appVersion: "0.1.2"
24 changes: 12 additions & 12 deletions deploy/csi-rclone/templates/csi-nodeplugin-rclone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,18 @@ spec:
- mountPath: /var/lib/kubelet/pods
mountPropagation: Bidirectional
name: pods-mount-dir
{{- with .Values.csiNodepluginRclone.nodeSelector }}
nodeSelector:
{{ toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.csiNodepluginRclone.affinity }}
affinity:
{{ toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.csiNodepluginRclone.tolerations }}
tolerations:
{{ toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.csiNodepluginRclone.nodeSelector }}
nodeSelector:
{{ toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.csiNodepluginRclone.affinity }}
affinity:
{{ toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.csiNodepluginRclone.tolerations }}
tolerations:
{{ toYaml . | nindent 8 }}
{{- end }}
volumes:
- hostPath:
path: /var/lib/kubelet/plugins/{{ .Values.storageClassName }}
Expand Down
2 changes: 1 addition & 1 deletion devenv/nix/goModule.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
let
csiDriver = pkgs.buildGoModule {
pname = "csi-rclone-pvc-1";
version = "0.1.1";
version = "0.1.2";
src = ../../.;
vendorHash = "sha256-XY0XgDky2g7DQ210VsT+KKjyYL1EJPCNGP0F5GhY2gM=";
# CGO = 0;
Expand Down

0 comments on commit 449bbc0

Please sign in to comment.