Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
chore: feat disabled by default
Browse files Browse the repository at this point in the history
Signed-off-by: Hector Fernandez <[email protected]>
  • Loading branch information
Hector Fernandez committed Nov 27, 2020
1 parent 774a0f7 commit 02f40ac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- name: PushReconciler
configuration: {{ .Values.featureGates.PushReconciler | default "Enabled" | quote }}
- name: RawResourceStatusCollection
configuration: {{ .Values.featureGates.RawResourceStatusCollection | default "Enabled" | quote }}
configuration: {{ .Values.featureGates.RawResourceStatusCollection | default "Disabled" | quote }}
- name: SchedulerPreferences
configuration: {{ .Values.featureGates.SchedulerPreferences | default "Enabled" | quote }}
- name: CrossClusterServiceDiscovery
Expand Down
1 change: 1 addition & 0 deletions charts/kubefed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ controllermanager:
SchedulerPreferences:
CrossClusterServiceDiscovery:
FederatedIngress:
RawResourceStatusCollection:

## common node selector
commonNodeSelector: {}
Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy-kubefed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function helm-deploy-cmd {
--set controllermanager.webhook.repository=${repo} \
--set controllermanager.webhook.image=${image} \
--set controllermanager.webhook.tag=${tag} \
--set controllermanager.featureGates.CrossClusterServiceDiscovery=Enabled,controllermanager.featureGates.FederatedIngress=Enabled \
--set controllermanager.featureGates.CrossClusterServiceDiscovery=Enabled,controllermanager.featureGates.FederatedIngress=Enabled,controllermanager.featureGates.RawResourceStatusCollection=Enabled \
${force_redeploy_values:-} \
--create-namespace \
--wait"
Expand Down
1 change: 1 addition & 0 deletions test/e2e/framework/unmanaged.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ func SetUpFeatureGates() {
string(features.PushReconciler): true,
string(features.CrossClusterServiceDiscovery): true,
string(features.FederatedIngress): true,
string(features.RawResourceStatusCollection): true,
}
err := utilfeature.DefaultMutableFeatureGate.SetFromMap(resetDefaultFeatureGates)
Expect(err).NotTo(HaveOccurred())
Expand Down

0 comments on commit 02f40ac

Please sign in to comment.