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
// ClusterExtensionConfig is a discriminated union which selects the source configuration values to be merged into
156
+
// the ClusterExtension's rendered manifests.
157
+
//
158
+
// +kubebuilder:validation:XValidation:rule="has(self.configType) && self.configType == 'Inline' ?has(self.inline) : !has(self.inline)",message="inline is required when configType is Inline, and forbidden otherwise"
159
+
// +union
160
+
typeClusterExtensionConfigstruct {
161
+
// configType is a required reference to the type of configuration source.
162
+
//
163
+
// Allowed values are "Inline"
164
+
//
165
+
// When this field is set to "Inline", the cluster extension configuration is defined inline within the
0 commit comments