Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
fix malformed clusterautoscaler yaml bug (#4322)
Browse files Browse the repository at this point in the history
  • Loading branch information
tariq1890 authored Nov 30, 2018
1 parent 51c9c95 commit 1bb76e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ spec:
key: VMType
name: cluster-autoscaler-azure
- name: ARM_USE_MANAGED_IDENTITY_EXTENSION
value: <useManagedIdentity>
value: "<useManagedIdentity>"
volumeMounts:
- mountPath: /etc/ssl/certs/ca-certificates.crt
name: ssl-certs
Expand Down
4 changes: 2 additions & 2 deletions pkg/api/addons.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ func (cs *ContainerService) setAddonsConfig(isUpdate bool) {
Name: DefaultClusterAutoscalerAddonName,
Enabled: helpers.PointerToBool(DefaultClusterAutoscalerAddonEnabled),
Config: map[string]string{
"minNodes": "1",
"maxNodes": "5",
"min-nodes": "1",
"max-nodes": "5",
},
Containers: []KubernetesContainerSpec{
{
Expand Down

0 comments on commit 1bb76e4

Please sign in to comment.