File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -247,6 +247,7 @@ RUNTIME_CONFIG="${KUBE_RUNTIME_CONFIG:-}"
247
247
248
248
if [[ " ${KUBE_FEATURE_GATES:- } " == " AllAlpha=true" ]]; then
249
249
RUNTIME_CONFIG=" ${KUBE_RUNTIME_CONFIG:- api/ all=true} "
250
+ RUN_CONTROLLERS=" ${RUN_CONTROLLERS:-* ,endpointslice} "
250
251
fi
251
252
252
253
# Optional: set feature gates
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ RUNTIME_CONFIG="${KUBE_RUNTIME_CONFIG:-}"
136
136
137
137
if [[ " ${KUBE_FEATURE_GATES:- } " == " AllAlpha=true" ]]; then
138
138
RUNTIME_CONFIG=" ${KUBE_RUNTIME_CONFIG:- api/ all=true} "
139
+ RUN_CONTROLLERS=" ${RUN_CONTROLLERS:-* ,endpointslice} "
139
140
fi
140
141
141
142
# Optional: set feature gates
Original file line number Diff line number Diff line change @@ -1284,6 +1284,11 @@ EOF
1284
1284
if [ -n " ${FEATURE_GATES:- } " ]; then
1285
1285
cat >> $file << EOF
1286
1286
FEATURE_GATES: $( yaml-quote ${FEATURE_GATES} )
1287
+ EOF
1288
+ fi
1289
+ if [ -n " ${RUN_CONTROLLERS:- } " ]; then
1290
+ cat >> $file << EOF
1291
+ RUN_CONTROLLERS: $( yaml-quote ${RUN_CONTROLLERS} )
1287
1292
EOF
1288
1293
fi
1289
1294
if [ -n " ${PROVIDER_VARS:- } " ]; then
You can’t perform that action at this time.
0 commit comments