Skip to content

Commit

Permalink
feat(kubernetes): remove rollout strategies feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
maggieneterval committed Apr 19, 2019
1 parent 0ec6a7e commit bd94593
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion app/scripts/modules/core/src/config/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export interface IFeatures {
// whether stages affecting infrastructure (like "Create Load Balancer") should be enabled or not
infrastructureStages?: boolean;
jobs?: boolean;
kubernetesRolloutStrategies?: boolean;
managedPipelineTemplatesV2UI?: boolean;
managedServiceAccounts?: boolean;
notifications?: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ <h4>Manifest Configuration</h4>
</expected-artifact-multi-selector>
</div>
<manifest-deployment-options
ng-if="ctrl.checkFeatureFlag('kubernetesRolloutStrategies')"
accounts="ctrl.metadata.backingData.accounts"
config="ctrl.$scope.stage.trafficManagement"
on-config-change="ctrl.handleTrafficManagementConfigChange"
Expand Down
2 changes: 0 additions & 2 deletions settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ var fiatEnabled = process.env.FIAT_ENABLED === 'true' ? true : false;
var gremlinEnabled = process.env.GREMLIN_ENABLED === 'false' ? false : true;
var iapRefresherEnabled = process.env.IAP_REFRESHER_ENABLED === 'true' ? true : false;
var infrastructureEnabled = process.env.INFRA_ENABLED === 'true' ? true : false;
var kubernetesRolloutStrategiesEnabled = process.env.KUBERNETES_ROLLOUT_STRATEGIES === 'true';
var managedPipelineTemplatesV2UIEnabled = process.env.MANAGED_PIPELINE_TEMPLATES_V2_UI_ENABLED === 'true';
var managedServiceAccountsEnabled = process.env.MANAGED_SERVICE_ACCOUNTS_ENABLED === 'true';
var onDemandClusterThreshold = process.env.ON_DEMAND_CLUSTER_THRESHOLD || '350';
Expand Down Expand Up @@ -78,7 +77,6 @@ window.spinnakerSettings = {
// whether stages affecting infrastructure (like "Create Load Balancer") should be enabled or not
infrastructureStages: infrastructureEnabled,
jobs: false,
kubernetesRolloutStrategies: kubernetesRolloutStrategiesEnabled,
managedPipelineTemplatesV2UI: managedPipelineTemplatesV2UIEnabled,
managedServiceAccounts: managedServiceAccountsEnabled,
notifications: false,
Expand Down

0 comments on commit bd94593

Please sign in to comment.