我試圖RAW從運(yùn)營(yíng)商 CR 獲取數(shù)據(jù),但我得到一個(gè)空對(duì)象。(所有其他值都按預(yù)期工作)我已經(jīng)為這個(gè)問(wèn)題創(chuàng)建了一個(gè)最小的例子,在我試圖讀取infrastructureConfig對(duì)象的例子中這里棘手的部分是我的結(jié)構(gòu)引用了另一個(gè)具有屬性類型 rawdata 的結(jié)構(gòu)https://github.com/JennyMet/gardner_test這里是簡(jiǎn)單的 CRhttps://github.com/JennyMet/gardner_test/blob/main/config/samples/mygroup_v1alpha1_rawtest.yaml#L11在這里我想讀取數(shù)據(jù)并得到一個(gè)空對(duì)象,知道嗎?https://github.com/JennyMet/gardner_test/blob/main/controllers/rawtest_controller.go#L70這是我使用的類型的參考 https://github.com/gardener/gardener/blob/5522be0e17ccf38aae36efb9fdb6463c66d6e4f1/pkg/apis/core/v1beta1/types_shoot.go#L1184我認(rèn)為它與領(lǐng)域有關(guān)x-kubernetes-preserve-unknown-fields: true https://book.kubebuilder.io/reference/markers/crd-processing.html 不存在我如何將它添加到此處的架構(gòu)中?https://github.com/JennyMet/gardner_test/blob/main/api/v1alpha1/rawtest_types.go#L32在它使用的引擎蓋下https://github.com/gardener/gardener/blob/5522be0e17ccf38aae36efb9fdb6463c66d6e4f1/pkg/apis/core/v1beta1/types_shoot.go#L1184我的意思是我試過(guò)了,但它不起作用,因?yàn)镮nfrastructureConfigRAW 在type System struct { Type system `json:"type,omitempty"` // +kubebuilder:pruning:PreserveUnknownFields Provider v1beta1.Provider `json:"provider,omitempty"`}但是 rawDataProvider不是我的結(jié)構(gòu),我只是在使用它。是這樣的,看 InfrastructureConfig類型...type Provider struct { Type string `json:"type" protobuf:"bytes,1,opt,name=type"` ControlPlaneConfig *runtime.RawExtension `json:"controlPlaneConfig,omitempty" protobuf:"bytes,2,opt,name=controlPlaneConfig"` InfrastructureConfig *runtime.RawExtension `json:"infrastructureConfig,omitempty" protobuf:"bytes,3,opt,name=infrastructureConfig"`}
K8s算子讀取原始數(shù)據(jù)
叮當(dāng)貓咪
2022-12-19 21:02:30