AKS Engine: legacy tool for Kubernetes on Azure (see status)
Перейти к файлу
Jeff Silberman db8267e9d7 ignore templates.go (#915) 2017-07-07 11:54:03 -07:00
.github docs(github): clarify issue template language 2017-05-31 19:52:38 -07:00
cmd delay wrapping of parameters (#861) 2017-06-23 17:20:57 -07:00
docs update kubernetes doc (#860) 2017-07-05 16:48:46 -07:00
examples added regression test categories (#919) 2017-07-06 14:15:57 -07:00
parts Enable cloudprovider rate limit / backoff features (#892) 2017-07-06 14:04:50 -07:00
pkg Enable cloudprovider rate limit / backoff features (#892) 2017-07-06 14:04:50 -07:00
scripts ref(*): remove dead code 2017-06-23 09:11:15 -06:00
test added regression test categories (#919) 2017-07-06 14:15:57 -07:00
vendor fix(glide): Pin the pflag, go-homedir, and cobra deps to a specific sha 2017-06-08 15:34:28 -04:00
.dockerignore fix(dockerfile): pin version more correctly 2017-06-21 11:26:55 -07:00
.gitattributes Add devenv for building/testing/validating under Docker 2016-10-27 12:10:36 -07:00
.gitignore ignore templates.go (#915) 2017-07-07 11:54:03 -07:00
CONTRIBUTING.md PROPOSAL: version numbering scheme using SemVer 2.0 (#642) 2017-05-18 18:47:09 -07:00
Dockerfile updated azure cli bundle to 0.2.10-1 (#907) 2017-07-05 08:44:27 -07:00
LICENSE Add License 2016-10-06 07:18:42 -07:00
Makefile ref(*): install prereqs before "make ci" 2017-06-23 09:11:16 -06:00
OWNERS PROPOSAL: version numbering scheme using SemVer 2.0 (#642) 2017-05-18 18:47:09 -07:00
README.md Update README.md (#802) 2017-06-19 16:20:53 -07:00
README_zh-CN.md Restructure commands. Introduce cobra/logrus 2017-05-10 10:26:58 -07:00
glide.lock fix(glide): Pin the pflag, go-homedir, and cobra deps to a specific sha 2017-06-08 15:34:28 -04:00
glide.yaml fix(glide): Pin the pflag, go-homedir, and cobra deps to a specific sha 2017-06-08 15:34:28 -04:00
main.go Iterate on changes 2017-05-15 09:56:34 -07:00

README.md

Microsoft Azure Container Service Engine - Builds Docker Enabled Clusters

Overview

The Azure Container Service Engine (acs-engine) generates ARM (Azure Resource Manager) templates for Docker enabled clusters on Microsoft Azure with your choice of DC/OS, Kubernetes, Swarm Mode, or Swarm orchestrators. The input to the tool is a cluster definition. The cluster definition is very similar to (in many cases the same as) the ARM template syntax used to deploy a Microsoft Azure Container Service cluster.

The cluster definition file enables the following customizations to your Docker enabled cluster:

  • choice of DC/OS, Kubernetes, Swarm Mode, or Swarm orchestrators
  • multiple agent pools where each agent pool can specify:
  • standard or premium VM Sizes,
  • node count,
  • Virtual Machine ScaleSets or Availability Sets,
  • Storage Account Disks or Managed Disks (under private preview),
  • Docker cluster sizes of 1200
  • Custom VNET

User guides

Contributing

Please follow these instructions before submitting a PR:

  1. Execute make ci to run the checkin validation tests.

  2. Manually test deployments if you are making modifications to the templates. For example, if you have to change the expected resulting templates then you should deploy the relevant example cluster definitions to ensure you're not introducing any sort of regression.

Usage (Template Generation)

Usage is best demonstrated with an example:

$ vim examples/kubernetes.classic.json

# insert your preferred, unique DNS prefix
# insert your SSH public key

$ ./acs-engine generate examples/kubernetes.classic.json

This produces a new directory inside _output/ that contains an ARM template for deploying Kubernetes into Azure. (In the case of Kubernetes, some additional needed assets are generated and placed in the output directory.)

Deployment Usage

Generated templates can be deployed using the Azure XPlat CLI (v0.10**.0** only), the Azure CLI 2.0 or Powershell.

Deploying with Azure XPlat CLI

NOTE: Some deployments will fail if certain versions of the Azure XPlat CLI are used. It's recommended that you use Azure XPlat CLI 0.10**.0** until a new point release of 0.10.x is available with the fix.

$ azure login

$ azure account set "<SUBSCRIPTION NAME OR ID>"

$ azure config mode arm

$ azure group create \
    --name="<RESOURCE_GROUP_NAME>" \
    --location="<LOCATION>"

$ azure group deployment create \
    --name="<DEPLOYMENT NAME>" \
    --resource-group="<RESOURCE_GROUP_NAME>" \
    --template-file="./_output/<INSTANCE>/azuredeploy.json" \
    --parameters-file="./_output/<INSTANCE>/azuredeploy.parameters.json"

Deploying with Azure CLI 2.0

NOTE: Azure CLI 2.0 is still in preview, so changes may occur. Please reference the Azure CLI 2.0 GitHub Repo for updated commands and please ensure that your installation is up to date with the latest release. (Releases occur weekly!)

$ az login

$ az account set --subscription "<SUBSCRIPTION NAME OR ID>"

$ az group create \
    --name "<RESOURCE_GROUP_NAME>" \
    --location "<LOCATION>"

$ az group deployment create \
    --name "<DEPLOYMENT NAME>" \
    --resource-group "<RESOURCE_GROUP_NAME>" \
    --template-file "./_output/<INSTANCE>/azuredeploy.json" \
    --parameters "./_output/<INSTANCE>/azuredeploy.parameters.json"

Deploying with Powershell

Add-AzureRmAccount

Select-AzureRmSubscription -SubscriptionID <SUBSCRIPTION_ID>

New-AzureRmResourceGroup `
    -Name <RESOURCE_GROUP_NAME> `
    -Location <LOCATION>

New-AzureRmResourceGroupDeployment `
    -Name <DEPLOYMENT_NAME> `
    -ResourceGroupName <RESOURCE_GROUP_NAME> `
    -TemplateFile _output\<INSTANCE>\azuredeploy.json `
    -TemplateParameterFile _output\<INSTANCE>\azuredeploy.parameters.json

Code of conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.