File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ undeploy: ## Undeploy the PostgreSQL Operator
119119
120120.PHONY : deploy-dev
121121deploy-dev : # # Deploy the PostgreSQL Operator locally
122- deploy-dev : PGO_FEATURE_GATES ?= "TablespaceVolumes=true,VolumeSnapshots =true"
122+ deploy-dev : PGO_FEATURE_GATES ?= "AllAlpha =true"
123123deploy-dev : get-pgmonitor
124124deploy-dev : build-postgres-operator
125125deploy-dev : createnamespaces
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ const (
7575 // Support automatically growing volumes
7676 AutoGrowVolumes = "AutoGrowVolumes"
7777
78+ // Deprecated
7879 BridgeIdentifiers = "BridgeIdentifiers"
7980
8081 // Support custom sidecars for PostgreSQL instance Pods
@@ -101,7 +102,7 @@ func NewGate() MutableGate {
101102 AppendCustomQueries : {Default : false , PreRelease : featuregate .Alpha },
102103 AutoCreateUserSchema : {Default : true , PreRelease : featuregate .Beta },
103104 AutoGrowVolumes : {Default : false , PreRelease : featuregate .Alpha },
104- BridgeIdentifiers : {Default : false , PreRelease : featuregate .Alpha },
105+ BridgeIdentifiers : {Default : false , PreRelease : featuregate .Deprecated },
105106 InstanceSidecars : {Default : false , PreRelease : featuregate .Alpha },
106107 PGBouncerSidecars : {Default : false , PreRelease : featuregate .Alpha },
107108 PGUpgradeCPUConcurrency : {Default : false , PreRelease : featuregate .Alpha },
You can’t perform that action at this time.
0 commit comments