We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64695d0 commit 9fe72d0Copy full SHA for 9fe72d0
.github/workflows/k8s-seed-data.yml
@@ -27,15 +27,12 @@ jobs:
27
run: |
28
helm get values opencrvs -n ${namespace} -ojson | \
29
jq '
30
- # Quote image tags
31
if has("image") and (.image | has("tag")) and (.image.tag | type == "number") then
32
.image.tag = (.image.tag | tostring)
33
else . end |
34
- # Quote version numbers
35
if has("version") and (.version | type == "number") then
36
.version = (.version | tostring)
37
38
- # Quote port numbers if needed (optional)
39
if has("service") and (.service | has("port")) and (.service.port | type == "number") then
40
.service.port = (.service.port | tostring)
41
else . end
0 commit comments