Skip to content

Commit b68088f

Browse files
Make generate changes
Signed-off-by: Danil Grigorev <[email protected]>
1 parent ad3a7b7 commit b68088f

16 files changed

+677
-667
lines changed

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ func setupChecks(mgr ctrl.Manager) {
225225

226226
func setupReconcilers(ctx context.Context, mgr ctrl.Manager, watchConfigSecretChanges bool) {
227227
if err := providercontroller.NewProviderControllerWrapper(
228-
providers.NewCoreProviderReconcier(mgr),
228+
providers.NewCoreProviderReconciler(mgr),
229229
phases.NewPhase,
230230
watchConfigSecretChanges,
231231
).SetupWithManager(ctx, mgr, concurrency(concurrencyNumber)); err != nil {

config/crd/bases/operator.cluster.x-k8s.io_addonproviders.yaml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1804,13 +1804,13 @@ spec:
18041804
description: |-
18051805
MatchLabelKeys is a set of pod label keys to select which pods will
18061806
be taken into consideration. The keys are used to lookup values from the
1807-
incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
1807+
incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`
18081808
to select the group of existing pods which pods will be taken into consideration
18091809
for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
18101810
pod labels will be ignored. The default value is empty.
1811-
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
1812-
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1813-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1811+
The same key is forbidden to exist in both MatchLabelKeys and LabelSelector.
1812+
Also, MatchLabelKeys cannot be set when LabelSelector isn't set.
1813+
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
18141814
items:
18151815
type: string
18161816
type: array
@@ -1819,13 +1819,13 @@ spec:
18191819
description: |-
18201820
MismatchLabelKeys is a set of pod label keys to select which pods will
18211821
be taken into consideration. The keys are used to lookup values from the
1822-
incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
1822+
incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`
18231823
to select the group of existing pods which pods will be taken into consideration
18241824
for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
18251825
pod labels will be ignored. The default value is empty.
1826-
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
1827-
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1828-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1826+
The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.
1827+
Also, MismatchLabelKeys cannot be set when LabelSelector isn't set.
1828+
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
18291829
items:
18301830
type: string
18311831
type: array
@@ -1986,13 +1986,13 @@ spec:
19861986
description: |-
19871987
MatchLabelKeys is a set of pod label keys to select which pods will
19881988
be taken into consideration. The keys are used to lookup values from the
1989-
incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
1989+
incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`
19901990
to select the group of existing pods which pods will be taken into consideration
19911991
for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
19921992
pod labels will be ignored. The default value is empty.
1993-
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
1994-
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1995-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
1993+
The same key is forbidden to exist in both MatchLabelKeys and LabelSelector.
1994+
Also, MatchLabelKeys cannot be set when LabelSelector isn't set.
1995+
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
19961996
items:
19971997
type: string
19981998
type: array
@@ -2001,13 +2001,13 @@ spec:
20012001
description: |-
20022002
MismatchLabelKeys is a set of pod label keys to select which pods will
20032003
be taken into consideration. The keys are used to lookup values from the
2004-
incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
2004+
incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`
20052005
to select the group of existing pods which pods will be taken into consideration
20062006
for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
20072007
pod labels will be ignored. The default value is empty.
2008-
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
2009-
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
2010-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
2008+
The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.
2009+
Also, MismatchLabelKeys cannot be set when LabelSelector isn't set.
2010+
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
20112011
items:
20122012
type: string
20132013
type: array
@@ -2166,13 +2166,13 @@ spec:
21662166
description: |-
21672167
MatchLabelKeys is a set of pod label keys to select which pods will
21682168
be taken into consideration. The keys are used to lookup values from the
2169-
incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
2169+
incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`
21702170
to select the group of existing pods which pods will be taken into consideration
21712171
for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
21722172
pod labels will be ignored. The default value is empty.
2173-
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
2174-
Also, matchLabelKeys cannot be set when labelSelector isn't set.
2175-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
2173+
The same key is forbidden to exist in both MatchLabelKeys and LabelSelector.
2174+
Also, MatchLabelKeys cannot be set when LabelSelector isn't set.
2175+
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
21762176
items:
21772177
type: string
21782178
type: array
@@ -2181,13 +2181,13 @@ spec:
21812181
description: |-
21822182
MismatchLabelKeys is a set of pod label keys to select which pods will
21832183
be taken into consideration. The keys are used to lookup values from the
2184-
incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
2184+
incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`
21852185
to select the group of existing pods which pods will be taken into consideration
21862186
for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
21872187
pod labels will be ignored. The default value is empty.
2188-
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
2189-
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
2190-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
2188+
The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.
2189+
Also, MismatchLabelKeys cannot be set when LabelSelector isn't set.
2190+
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
21912191
items:
21922192
type: string
21932193
type: array
@@ -2348,13 +2348,13 @@ spec:
23482348
description: |-
23492349
MatchLabelKeys is a set of pod label keys to select which pods will
23502350
be taken into consideration. The keys are used to lookup values from the
2351-
incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)`
2351+
incoming pod labels, those key-value labels are merged with `LabelSelector` as `key in (value)`
23522352
to select the group of existing pods which pods will be taken into consideration
23532353
for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
23542354
pod labels will be ignored. The default value is empty.
2355-
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
2356-
Also, matchLabelKeys cannot be set when labelSelector isn't set.
2357-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
2355+
The same key is forbidden to exist in both MatchLabelKeys and LabelSelector.
2356+
Also, MatchLabelKeys cannot be set when LabelSelector isn't set.
2357+
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
23582358
items:
23592359
type: string
23602360
type: array
@@ -2363,13 +2363,13 @@ spec:
23632363
description: |-
23642364
MismatchLabelKeys is a set of pod label keys to select which pods will
23652365
be taken into consideration. The keys are used to lookup values from the
2366-
incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)`
2366+
incoming pod labels, those key-value labels are merged with `LabelSelector` as `key notin (value)`
23672367
to select the group of existing pods which pods will be taken into consideration
23682368
for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming
23692369
pod labels will be ignored. The default value is empty.
2370-
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
2371-
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
2372-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
2370+
The same key is forbidden to exist in both MismatchLabelKeys and LabelSelector.
2371+
Also, MismatchLabelKeys cannot be set when LabelSelector isn't set.
2372+
This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate.
23732373
items:
23742374
type: string
23752375
type: array

0 commit comments

Comments
 (0)