Skip to content

Commit f0f950d

Browse files
authored
Merge pull request #160 from nebius/feature/storage-attachment
add: arrange storage attachment scheduling by storage type
2 parents 3ec7040 + 52eaa35 commit f0f950d

23 files changed

+45
-45
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.16
1+
1.14.17

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ resources:
33
images:
44
- name: controller
55
newName: cr.eu-north1.nebius.cloud/soperator/slurm-operator
6-
newTag: 1.14.16
6+
newTag: 1.14.17

config/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ spec:
8282
value: "false"
8383
- name: SLURM_OPERATOR_WATCH_NAMESPACES
8484
value: "*"
85-
image: controller:1.14.16
85+
image: controller:1.14.17
8686
imagePullPolicy: Always
8787
name: manager
8888
securityContext:

helm/slurm-cluster-storage/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: helm-slurm-cluster-storage
33
description: A Helm chart for Kubernetes
44
type: application
5-
version: "1.14.16"
6-
appVersion: "1.14.16"
5+
version: "1.14.17"
6+
appVersion: "1.14.17"

helm/slurm-cluster-storage/templates/accounting-mount-daemonset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ spec:
4141
requiredDuringSchedulingIgnoredDuringExecution:
4242
nodeSelectorTerms:
4343
- matchExpressions:
44-
{{ .Values.scheduling.accounting.matchExpressions | toYaml | indent 18 }}
44+
{{ .Values.storage.accounting.matchExpressions | toYaml | indent 18 }}
4545
tolerations:
46-
{{ .Values.scheduling.accounting.tolerations | toYaml | indent 8 }}
46+
{{ .Values.storage.accounting.tolerations | toYaml | indent 8 }}
4747
{{- end }}

helm/slurm-cluster-storage/templates/accounting-pv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ spec:
2020
required:
2121
nodeSelectorTerms:
2222
- matchExpressions:
23-
{{ .Values.scheduling.accounting.matchExpressions | toYaml | indent 12 }}
23+
{{ .Values.storage.accounting.matchExpressions | toYaml | indent 12 }}
2424
{{- end }}

helm/slurm-cluster-storage/templates/controller-spool-mount-daemonset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ spec:
4040
requiredDuringSchedulingIgnoredDuringExecution:
4141
nodeSelectorTerms:
4242
- matchExpressions:
43-
{{ .Values.scheduling.controller.matchExpressions | toYaml | indent 18 }}
43+
{{ .Values.storage.controllerSpool.matchExpressions | toYaml | indent 18 }}
4444
tolerations:
45-
{{ .Values.scheduling.controller.tolerations | toYaml | indent 8 }}
45+
{{ .Values.storage.controllerSpool.tolerations | toYaml | indent 8 }}

helm/slurm-cluster-storage/templates/controller-spool-pv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ spec:
2222
required:
2323
nodeSelectorTerms:
2424
- matchExpressions:
25-
{{ .Values.scheduling.controller.matchExpressions | toYaml | indent 12 }}
25+
{{ .Values.storage.controllerSpool.matchExpressions | toYaml | indent 12 }}

helm/slurm-cluster-storage/templates/jail-mount-daemonset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ spec:
5353
requiredDuringSchedulingIgnoredDuringExecution:
5454
nodeSelectorTerms:
5555
- matchExpressions:
56-
{{ .Values.scheduling.worker.matchExpressions | toYaml | indent 18 }}
56+
{{ .Values.storage.jail.matchExpressions | toYaml | indent 18 }}
5757
tolerations:
58-
{{ .Values.scheduling.worker.tolerations | toYaml | indent 8 }}
58+
{{ .Values.storage.jail.tolerations | toYaml | indent 8 }}

helm/slurm-cluster-storage/templates/jail-pv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ spec:
2424
required:
2525
nodeSelectorTerms:
2626
- matchExpressions:
27-
{{ .Values.scheduling.worker.matchExpressions | toYaml | indent 12 }}
27+
{{ .Values.storage.jail.matchExpressions | toYaml | indent 12 }}

0 commit comments

Comments
 (0)