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
{{ message }}
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
Hello, it looks like the CRD status subresource is not recognised by meta-controller if we struct it. For example, we created following CRD for "websites"
apiVersion: apiextensions.k8s.io/v1beta1kind: CustomResourceDefinitionmetadata:
# name must match the spec fields below, and be in the form: <plural>.<group>name: websites.example.comspec:
scope: Namespacedgroup: example.comversions:
- name: v1served: truestorage: truenames:
kind: Websitesingular: websiteplural: websitesshortNames:
- wssubresources:
status:
current: 0updated: 0available: 0generation: 0route:
scale:
specReplicasPath: .spec.replicasstatusReplicasPath: .status.replicas
...
Metacontroller doesn't yet support the CRD subresource feature, since it was only alpha and disabled by default as of k8s 1.10. We do plan to support it though. You can follow issue #26 to track it.
Hello, it looks like the CRD status subresource is not recognised by meta-controller if we struct it. For example, we created following CRD for "websites"
and this composite controller
From the meta-controller log, we cannot see the status of parent in the webhook request.
On the other end, it works if we simply leave the status as following in the CRD
Could you please have a look in the code?
Thanks,
Adriano
The text was updated successfully, but these errors were encountered: