File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,8 @@ type SelfManagement struct {
113113 DisableFeatures []string `json:"disableFeatures"`
114114 // +optional
115115 UseGateway bool `json:"useGateway"`
116+ // +optional
117+ EnableCredLess bool `json:"enableCredLess"`
116118}
117119
118120type SelfManagementOptions struct {
@@ -128,6 +130,8 @@ type SelfManagementOptions struct {
128130 KubeAPIServer string `json:"kubeAPIServer,omitempty"`
129131 // +optional
130132 UseGateway bool `json:"useGateway"`
133+ // +optional
134+ EnableCredLess bool `json:"enableCredLess"`
131135}
132136
133137type EnableFeaturesOptions map [string ]FeatureSetOptions
@@ -169,6 +173,7 @@ func (opt SelfManagementOptions) ToConfig() SelfManagement {
169173 DisableFeatures : sets .List (sets .New [string ](opt .DisableFeatures ... )),
170174 KubeAPIServer : opt .KubeAPIServer ,
171175 UseGateway : opt .UseGateway ,
176+ EnableCredLess : opt .EnableCredLess ,
172177 }
173178}
174179
You can’t perform that action at this time.
0 commit comments