We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How would you reference a proto definition for a CRD?
The text was updated successfully, but these errors were encountered:
If I recall correctly, Kubernetes API does not support Protobuf representation for custom resources at the moment, which is the primary motivation for Isopod to support kube.put_yaml() in addition to kube.put() https://github.com/cruise-automation/isopod#kubeput_yaml.
kube.put_yaml()
kube.put()
If you are asking for validation of custom resource objects in a way similar to standard types, then you need to register it here https://github.com/cruise-automation/isopod/blob/master/pkg/kube/scheme.go. And yes, we are thinking about replacing this hard dependency with runtime plugin. Feel free to reach out to @dilyevsky if you are interested.
Sorry, something went wrong.
Yes, I was mainly interested in how to get type validation for CRDs. The work to make the existing schema loading more dynamic may tie into #3.
No branches or pull requests
How would you reference a proto definition for a CRD?
The text was updated successfully, but these errors were encountered: