File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ var Processors = []Processor{
21
21
Type : TypeMetaNetworkPolicy ,
22
22
Expression : "del(.status)" ,
23
23
},
24
+ // Remove "status" from root of all stateful sets
25
+ {
26
+ Type : TypeMetaStatefulSet ,
27
+ Expression : "del(.status)" ,
28
+ },
24
29
}
25
30
26
31
type Processor struct {
Original file line number Diff line number Diff line change @@ -311,12 +311,6 @@ spec:
311
311
echo "Gitpod: render Kubernetes manifests"
312
312
/app/installer render -c "${CONFIG_FILE}" --namespace {{repl Namespace }} --use-experimental-config > "${GITPOD_OBJECTS}/templates/gitpod.yaml"
313
313
314
- # Workaround for #8532 and #8529
315
- echo "Gitpod: Remove the StatefulSet status object for OpenVSX Proxy"
316
- yq eval-all --inplace \
317
- 'del(select(.kind == "StatefulSet" and .metadata.name == "openvsx-proxy").status)' \
318
- "${GITPOD_OBJECTS}/templates/gitpod.yaml"
319
-
320
314
if [ '{{repl ConfigOptionEquals "reg_incluster" "1" }}' = "true" ];
321
315
then
322
316
echo "Gitpod: Add the local registry secret to the in-cluster registry secret"
You can’t perform that action at this time.
0 commit comments