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 @@ -1283,6 +1283,11 @@ EOF
1283
1283
if [ -n " ${FEATURE_GATES:- } " ]; then
1284
1284
cat >> $file << EOF
1285
1285
FEATURE_GATES: $( yaml-quote ${FEATURE_GATES} )
1286
+ EOF
1287
+ fi
1288
+ if [ -n " ${RUN_CONTROLLERS:- } " ]; then
1289
+ cat >> $file << EOF
1290
+ RUN_CONTROLLERS: $( yaml-quote ${RUN_CONTROLLERS} )
1286
1291
EOF
1287
1292
fi
1288
1293
if [ -n " ${PROVIDER_VARS:- } " ]; then
You can’t perform that action at this time.
0 commit comments