docs: update some docs with the right information (#217)

This commit is contained in:
Tariq Ibrahim 2019-01-03 09:59:26 -08:00 коммит произвёл GitHub
Родитель bc250139f3
Коммит fe4333c150
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 17 добавлений и 8 удалений

Просмотреть файл

@ -161,8 +161,9 @@ More usefully, let's add some custom configuration to the above addons:
}
],
"config": {
"maxNodes": "5",
"minNodes": "1"
"max-nodes": "5",
"min-nodes": "1",
"scan-interval": "10s"
}
}
]

Просмотреть файл

@ -170,6 +170,8 @@ Depending on the number of agent you have asked for the deployment can take a wh
## Post-Deployment: Attach Cluster Route Table to VNET
*NOTE: This section is applicable only to Kubernetes clusters that use Kubenet. If AzureCNI is enabled in your cluster, you may disregard.*
For Kubernetes clusters, we need to update the VNET to attach to the route table created by the above `az group deployment create` command. An example in bash form if the VNET is in the same ResourceGroup as the Kubernetes Cluster:
```

Просмотреть файл

@ -11,8 +11,9 @@
"name": "cluster-autoscaler",
"enabled": true,
"config": {
"minNodes": "1",
"maxNodes": "5"
"min-nodes": "1",
"max-nodes": "5",
"scan-interval": "10s"
}
}
]

13
pkg/engine/testdata/addons/kubernetes.json поставляемый
Просмотреть файл

@ -48,8 +48,9 @@
}
],
"config": {
"maxNodes": "5",
"minNodes": "1"
"max-nodes": "5",
"min-nodes": "1",
"scan-interval": "10s"
}
},
{
@ -129,8 +130,12 @@
"etcdClientPrivateKey": "etcdClientPrivateKey",
"etcdServerCertificate": "etcdServerCertificate",
"etcdServerPrivateKey": "etcdServerPrivateKey",
"etcdPeerCertificates": ["etcdPeerCertificate0"],
"etcdPeerPrivateKeys": ["etcdPeerPrivateKey0"]
"etcdPeerCertificates": [
"etcdPeerCertificate0"
],
"etcdPeerPrivateKeys": [
"etcdPeerPrivateKey0"
]
}
}
}

0
repro.json Normal file
Просмотреть файл