Skip to content

Commit

Permalink
quote env values to ensure they are strings
Browse files Browse the repository at this point in the history
  • Loading branch information
AnchorArray committed Feb 16, 2024
1 parent 8daaaa4 commit 235d431
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions charts/langkit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ containers:
# containers.env -- (list) Environment variables for the containers
env:
- name: TRANSFORMERS_OFFLINE
value: 1
value: "1"
- name: HF_DATASETS_OFFLINE
value: 1
value: "1"
- name: HOME
value: /home
value: "/home"
- name: HF_HOME
value: /home/.cache/hf_home
value: "/home/.cache/hf_home"
# containers.volumeMounts -- (list) Volume mounts for containers
volumeMounts:
- name: temp-dir
Expand Down

0 comments on commit 235d431

Please sign in to comment.