@@ -58,8 +58,6 @@ type Features struct {
58
58
InfluxCredentials bool `json:"influx-credentials"`
59
59
Jwker bool `json:"jwker"`
60
60
Kafkarator bool `json:"kafkarator"`
61
- LegacyGCP bool `json:"legacy-gcp"`
62
- Linkerd bool `json:"linkerd"`
63
61
Maskinporten bool `json:"maskinporten"`
64
62
NAVCABundle bool `json:"nav-ca-bundle"`
65
63
NetworkPolicy bool `json:"network-policy"`
@@ -206,15 +204,13 @@ const (
206
204
FeaturesJwker = "features.jwker"
207
205
FeaturesCNRM = "features.cnrm"
208
206
FeaturesKafkarator = "features.kafkarator"
209
- FeaturesLinkerd = "features.linkerd"
210
207
FeaturesMaskinporten = "features.maskinporten"
211
208
FeaturesNetworkPolicy = "features.network-policy"
212
209
FeaturesPrometheusOperator = "features.prometheus-operator"
213
210
FeaturesTexas = "features.texas"
214
211
FeaturesVault = "features.vault"
215
212
FeaturesWebhook = "features.webhook"
216
213
FeaturesWonderwall = "features.wonderwall"
217
- FeaturesLegacyGCP = "features.legacy-gcp"
218
214
FQDNPolicyEnabled = "fqdn-policy.enabled"
219
215
GoogleCloudSQLProxyContainerImage = "google-cloud-sql-proxy-container-image"
220
216
GoogleProjectId = "google-project-id"
@@ -295,7 +291,6 @@ func init() {
295
291
flag .String (GoogleCloudSQLProxyContainerImage , "" , "Docker image of Cloud SQL Proxy container" )
296
292
flag .String (ApiServerIp , "" , "IP to master in GCP, e.g. 172.16.0.2/32 for GCP" )
297
293
flag .String (NaisNamespace , "nais-system" , "namespace where nais resources are deployed" )
298
- flag .Bool (FeaturesLinkerd , false , "enable creation of Linkerd-specific resources" )
299
294
flag .StringSlice (
300
295
FeaturesAccessPolicyNotAllowedCIDRs , []string {"" },
301
296
"CIDRs that should not be included within the allowed IP Block rule for network policy" ,
@@ -311,7 +306,6 @@ func init() {
311
306
flag .Bool (FeaturesMaskinporten , false , "enable creation of Maskinporten client resources and secret injection" )
312
307
flag .Bool (FeaturesWebhook , false , "enable admission webhook server" )
313
308
flag .Bool (FeaturesPrometheusOperator , false , "enable Prometheus Operator" )
314
- flag .Bool (FeaturesLegacyGCP , false , "enable legacy GCP resources" )
315
309
flag .Bool (FeaturesWonderwall , false , "enable Wonderwall sidecar" )
316
310
flag .Bool (FeaturesTexas , false , "enable token exchange as a sidecar/service" )
317
311
flag .Bool (FQDNPolicyEnabled , false , "enable FQDN policies" )
0 commit comments