Skip to content

Commit

Permalink
chore(settings): alphabetize features in settings.js
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed Feb 24, 2018
1 parent 4849bdf commit 69f078d
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions settings.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use strict';

// Add any env variables used here to the webpack config variable: HAPPY_PACK_ENV_INVALIDATE
var feedbackUrl = process.env.FEEDBACK_URL;
var gateHost = process.env.API_HOST || 'http://localhost:8084';
var bakeryDetailUrl = process.env.BAKERY_DETAIL_URL || (gateHost + '/bakery/logs/{{context.region}}/{{context.status.resourceId}}');
Expand Down Expand Up @@ -133,25 +132,25 @@ window.spinnakerSettings = {
triggerTypes: ['git', 'pipeline', 'docker', 'cron', 'jenkins', 'travis', 'pubsub'],
searchVersion: 1,
feature: {
artifacts: false,
canary: canaryEnabled,
chaosMonkey: chaosEnabled,
clusterDiff: false,
dryRunEnabled: dryRunEnabled,
entityTags: entityTagsEnabled,
fiatEnabled: fiatEnabled,
pipelines: true,
notifications: false,
fastProperty: true,
vpcMigrator: true,
clusterDiff: false,
roscoMode: false,
netflixMode: netflixMode,
chaosMonkey: chaosEnabled,
fiatEnabled: fiatEnabled,
// whether stages affecting infrastructure (like "Create Load Balancer") should be enabled or not
infrastructureStages: infrastructureEnabled,
jobs: false,
netflixMode: netflixMode,
notifications: false,
pipelineTemplates: false,
pipelines: true,
roscoMode: false,
snapshots: false,
travis: false,
pipelineTemplates: false,
artifacts: false,
versionedProviders: true,
dryRunEnabled: dryRunEnabled,
vpcMigrator: true,
},
};

0 comments on commit 69f078d

Please sign in to comment.