kube-cascade/budibase/helm-jq/set-http-mb-limit.jq

11 lines
330 B
Plaintext
Raw Permalink Normal View History

2023-12-20 22:40:16 +00:00
if (
.kind? == "Deployment"
and .apiVersion? == "apps/v1"
and (.metadata.name? == "app-service" or .metadata.name? == "proxy-service")
) then
.spec.template.spec.containers[0].env //= []
| .spec.template.spec.containers[0].env += [{"name":"HTTP_MB_LIMIT","value":"250"}] # ,{"name":"","value":"10000"}]
else
.
end