Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helm/slurm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: slurm
description: Slurm Cluster
type: application
appVersion: "25.05"
version: 0.4.0
version: 0.5.0

annotations:
license: Apache-2.0
Expand Down
28 changes: 22 additions & 6 deletions helm/slurm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -223,12 +223,13 @@ controller:
# effect: NoSchedule
# -- The service configuration.
# Ref: https://kubernetes.io/docs/concepts/services-networking/service/
service: {}
# spec:
# type: LoadBalancer
# loadBalancerIP: ""
# externalIPs: []
# externalName: ""
# NOTE: Headless services are strictly defined by clusterIP: None.
# Using publishNotReadyAddresses: true is typical but not required for headless services.
# Headless services are required for StatefulSet pod DNS resolution.
service:
spec:
clusterIP: None # Required for headless service and StatefulSet pod DNS
publishNotReadyAddresses: true # Optional: allows DNS resolution before pods are ready
# port: 6817
# nodePort: 30817

Expand Down Expand Up @@ -285,9 +286,14 @@ restapi:
# effect: NoSchedule
# -- The service configuration.
# Ref: https://kubernetes.io/docs/concepts/services-networking/service/
# NOTE: Headless services are strictly defined by clusterIP: None.
# Using publishNotReadyAddresses: true is typical but not required for headless services.
# Headless services are required for StatefulSet pod DNS resolution.
service: {}
# spec:
# type: ClusterIP
# clusterIP: None # Optional: for headless service and StatefulSet pod DNS
# publishNotReadyAddresses: true # Optional: allows DNS resolution before pods are ready
# loadBalancerIP: ""
# externalIPs: []
# externalName: ""
Expand Down Expand Up @@ -404,9 +410,14 @@ accounting:
# effect: NoSchedule
# -- The service configuration.
# Ref: https://kubernetes.io/docs/concepts/services-networking/service/
# NOTE: Headless services are strictly defined by clusterIP: None.
# Using publishNotReadyAddresses: true is typical but not required for headless services.
# Headless services are required for StatefulSet pod DNS resolution.
service: {}
# spec:
# type: LoadBalancer
# clusterIP: None # Optional: for headless service and StatefulSet pod DNS
# publishNotReadyAddresses: true # Optional: allows DNS resolution before pods are ready
# loadBalancerIP: ""
# externalIPs: []
# externalName: ""
Expand Down Expand Up @@ -509,9 +520,14 @@ loginsets:
# path: /exports/home
# -- The service configuration.
# Ref: https://kubernetes.io/docs/concepts/services-networking/service/
# NOTE: Headless services are strictly defined by clusterIP: None.
# Using publishNotReadyAddresses: true is typical but not required for headless services.
# Headless services are required for StatefulSet pod DNS resolution.
service:
spec:
type: LoadBalancer
# clusterIP: None # Optional: for headless service and StatefulSet pod DNS
# publishNotReadyAddresses: true # Optional: allows DNS resolution before pods are ready
# loadBalancerIP: ""
# externalIPs: []
# externalName: ""
Expand Down