Skip to content

Commit 9eff8c5

Browse files
authored
Merge pull request #111 from stackhpc/fix/ui-schema-vllm-version
Fix UI schema queries in vLLM update workflow
2 parents 770e39d + 36a2d1e commit 9eff8c5

File tree

3 files changed

+4
-26
lines changed

3 files changed

+4
-26
lines changed

.github/workflows/update-dependencies.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151
mv $FILENAME{.new,}
5252
5353
FILENAME=charts/azimuth-chat/values.schema.json
54-
jq --indent 4 --arg tag $NEW_VLLM_TAG '.properties.api.properties.image.properties.version.default = $tag' $FILENAME > $FILENAME.new
54+
jq --indent 4 --arg tag $NEW_VLLM_TAG '.properties."azimuth-llm".properties.api.properties.image.properties.version.default = $tag' $FILENAME > $FILENAME.new
5555
mv $FILENAME{.new,}
5656
5757
FILENAME=charts/azimuth-image-analysis/values.schema.json
58-
jq --indent 4 --arg tag $NEW_VLLM_TAG '.properties.api.properties.image.properties.version.default = $tag' $FILENAME > $FILENAME.new
58+
jq --indent 4 --arg tag $NEW_VLLM_TAG '.properties."azimuth-llm".properties.api.properties.image.properties.version.default = $tag' $FILENAME > $FILENAME.new
5959
mv $FILENAME{.new,}
6060
fi
6161

charts/azimuth-chat/values.schema.json

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"type": "string",
4141
"title": "Backend vLLM version",
4242
"description": "The vLLM version to use as a backend. Must be a version tag from [this list](https://github.com/vllm-project/vllm/tags)",
43-
"default": "v0.7.2"
43+
"default": "v0.9.0.1"
4444
}
4545
}
4646
}
@@ -128,17 +128,6 @@
128128
}
129129
}
130130
}
131-
},
132-
"api": {
133-
"properties": {
134-
"image": {
135-
"properties": {
136-
"version": {
137-
"default": "v0.9.0.1"
138-
}
139-
}
140-
}
141-
}
142131
}
143132
}
144133
}

charts/azimuth-image-analysis/values.schema.json

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"type": "string",
3737
"title": "Backend vLLM version",
3838
"description": "The vLLM version to use as a backend. Must be a version tag from [this list](https://github.com/vllm-project/vllm/tags)",
39-
"default": "v0.7.2"
39+
"default": "v0.9.0.1"
4040
}
4141
}
4242
},
@@ -115,17 +115,6 @@
115115
}
116116
}
117117
}
118-
},
119-
"api": {
120-
"properties": {
121-
"image": {
122-
"properties": {
123-
"version": {
124-
"default": "v0.9.0.1"
125-
}
126-
}
127-
}
128-
}
129118
}
130119
}
131120
}

0 commit comments

Comments
 (0)