diff --git a/app/scripts/modules/google/src/autoscalingPolicy/components/basicSettings/basicSettings.component.js b/app/scripts/modules/google/src/autoscalingPolicy/components/basicSettings/basicSettings.component.js index 81172889a10..859c2b4b96b 100644 --- a/app/scripts/modules/google/src/autoscalingPolicy/components/basicSettings/basicSettings.component.js +++ b/app/scripts/modules/google/src/autoscalingPolicy/components/basicSettings/basicSettings.component.js @@ -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']; }, }); diff --git a/app/scripts/modules/google/src/help/gce.help.ts b/app/scripts/modules/google/src/help/gce.help.ts index 0859b281c54..8e43453522a 100644 --- a/app/scripts/modules/google/src/help/gce.help.ts +++ b/app/scripts/modules/google/src/help/gce.help.ts @@ -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':