Skip to content

Commit

Permalink
fix(gce): remove use of ONLY_DOWN deprecated autoscaler policy (#7310) (
Browse files Browse the repository at this point in the history
  • Loading branch information
spinnakerbot authored and maggieneterval committed Aug 12, 2019
1 parent 5127e72 commit 09e4382
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ module.exports = angular
},
templateUrl: require('./basicSettings.component.html'),
controller: function controller() {
this.modes = ['ON', 'OFF', 'ONLY_UP', 'ONLY_DOWN'];
this.modes = ['ON', 'OFF', 'ONLY_UP'];
},
});
2 changes: 1 addition & 1 deletion app/scripts/modules/google/src/help/gce.help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const helpContents: { [key: string]: string } = {
'gce.serverGroup.autoscaling.cooldown':
'How long to wait before collecting information from a new instance. This should be at least the time it takes to initialize the instance. To find the minimum, create an instance from the same image and note how long it takes to start.',
'gce.serverGroup.autoscaling.mode':
'Mode of operation of the autoscaling policy. This guides the autoscaler by defining the types of scaling operations it can perform. Options are ON, ONLY_UP, ONLY_DOWN, OFF.',
'Mode of operation of the autoscaling policy. This guides the autoscaler by defining the types of scaling operations it can perform. Options are ON, ONLY_UP, and OFF.',
'gce.serverGroup.autoHealing':
'VMs in the group are recreated as needed. You can use a health check to recreate a VM if the health check finds the VM unresponsive. If you do not select a health check, VMs are recreated only when stopped.',
'gce.serverGroup.initialDelaySec':
Expand Down

0 comments on commit 09e4382

Please sign in to comment.