* Adding note on acs-engine

* Updating the DNS prefix
This commit is contained in:
Aaron Schlesinger 2017-10-04 10:35:02 -07:00 коммит произвёл GitHub
Родитель 92d2bb647f
Коммит c10e8f78dc
2 изменённых файлов: 56 добавлений и 3 удалений

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

@ -9,6 +9,18 @@ storage, message-oriented middleware, and more.
For more information,
[visit the project on github](https://github.com/kubernetes-incubator/service-catalog).
To install, we recommend that you have a Kubernetes 1.7 cluster. When you have
one available, see the
[installation documentation](https://github.com/kubernetes-incubator/service-catalog/blob/master/docs/install-1.7.md).
To install, you must have a Kubernetes 1.7 cluster. If you are using
[acs-engine](https://github.com/Azure/acs-engine) to install a cluster, run
the following command from this directory:
```console
acs-engine deploy \
--subscription-id $SUB_ID \
--dns-prefix svc-cat-test \
--location westus2 \
--auto-suffix \
--api-model acs-engine-kubernetes-config.json
```
When your cluster becomes available, see the
[service-catalog installation documentation](https://github.com/kubernetes-incubator/service-catalog/blob/master/docs/install-1.7.md).

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

@ -0,0 +1,41 @@
{
"apiVersion": "vlabs",
"properties": {
"orchestratorProfile": {
"orchestratorType": "Kubernetes",
"kubernetesConfig": {
"gcHighThreshold": 70,
"gcLowThreshold": 60,
"enableAggregatedAPIs": true,
"enableRbac": true
}
},
"masterProfile": {
"count": 1,
"dnsPrefix": "",
"vmSize": "Standard_D2_v2"
},
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 3,
"vmSize": "Standard_D2_v2",
"availabilityProfile": "AvailabilitySet"
}
],
"linuxProfile": {
"adminUsername": "azureUser",
"ssh": {
"publicKeys": [
{
"keyData": ""
}
]
}
},
"servicePrincipalProfile": {
"clientId": "",
"secret": ""
}
}
}