You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: install/installer/README.md
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -163,6 +163,24 @@ yq eval-all --inplace \
163
163
gitpod.yaml
164
164
```
165
165
166
+
## Error validating `StatefulSet.status`
167
+
168
+
```shell
169
+
error: error validating "gitpod.yaml": error validating data: ValidationError(StatefulSet.status): missing required field "availableReplicas"in io.k8s.api.apps.v1.StatefulSetStatus;if you choose to ignore these errors, turn validation off with --validate=false
170
+
```
171
+
172
+
Depending upon your Kubernetes implementation, you may receive this error. This is
173
+
due to a bug in the underlying StatefulSet dependency, which is used to generate the
174
+
OpenVSX proxy (see [#8529](https://github.com/gitpod-io/gitpod/issues/8529)).
175
+
176
+
To fix this, you will need to post-process the rendered YAML to remove the `status` field.
177
+
178
+
```shell
179
+
yq eval-all --inplace \
180
+
'del(select(.kind == "StatefulSet" and .metadata.name == "openvsx-proxy").status)' \
0 commit comments