英文:
Use url.URL with controller-gen
问题
我正在尝试使用kubebuilder在Kubernetes上开发自定义资源。
在这个自定义资源中,我有一个类型为url.URL
的字段。
我遇到了这个错误:
(*in).DeepCopyInto undefined (type *url.URL has no field or method DeepCopyInto)
在开发自定义资源时,有没有一种方法可以使用url.URL
类型?
谢谢。
英文:
I'm trying to develop a custom resource on kubernetes with kubebuilder.
In this CR, I have a field of type url.URL
I get this error :
(*in).DeepCopyInto undefined (type *url.URL has no field or method DeepCopyInto)
Is there a way to work with type url.URL
when developing a CR ?
Thanks
答案1
得分: 1
我找到了一个解决方案。
我不知道它是否是最好的,但我创建了一个自定义类型的URL,其中包含了使用net/url
和controller-gen
所需的缺失部分。
它运行得很好。
https://gist.github.com/quentinalbertone/ec00085b57992d836c08d4586295ace7
英文:
So I found a solution
I don't know if it's the best but I've created a custom type URL with the part which is missing to use net/url
with controller-gen
.
It works fine
https://gist.github.com/quentinalbertone/ec00085b57992d836c08d4586295ace7
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论