Skip to content

Commit

Permalink
[Helm][ray-cluster] Fix parsing envFrom field in additionalWorkerGrou…
Browse files Browse the repository at this point in the history
…ps (ray-project#1039)

Fix parsing envFrom field in additionalWorkerGroups
  • Loading branch information
anovv authored Apr 24, 2023
1 parent 0793a0f commit 0212be9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm-chart/ray-cluster/templates/raycluster-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ spec:
{{- toYaml $values.securityContext | nindent 14 }}
env:
{{- toYaml $values.containerEnv | nindent 14}}
{{- with $values.envFrom }}
envFrom: {{- toYaml $ | nindent 14}}
{{- if $values.envFrom }}
envFrom: {{- toYaml $values.envFrom | nindent 14 }}
{{- end }}
ports: {{- toYaml $values.ports | nindent 14}}
{{- if $values.lifecycle }}
Expand Down

0 comments on commit 0212be9

Please sign in to comment.