WE HAVE MOVED: Please join us at Azure/aks-engine!
Перейти к файлу
Matt Boersma 36d434b2a7 fix: rename stale config to have ".yml" extension 2019-03-08 11:15:15 -07:00
.circleci Add copyright headers to source files (#4324) 2018-12-03 11:19:18 -08:00
.codecov change codecov yaml (#3316) 2018-06-20 13:57:52 -07:00
.github fix: rename stale config to have ".yml" extension 2019-03-08 11:15:15 -07:00
.prowci Updates from aks-engine spike (#4302) 2018-11-29 11:46:29 -08:00
cmd Add copyright headers to source files (#4324) 2018-12-03 11:19:18 -08:00
docs clarified docs (#4362) 2018-12-17 16:36:33 -08:00
examples Support Windows Server 2019 and make it default (#4299) 2018-11-29 13:07:51 -08:00
extensions feat(perf): Invoke-WebRequest much slower then browser download (#4294) 2018-11-27 17:57:16 -08:00
jenkins retire Azure CDN for container image repository proxying (#3535) 2018-07-24 13:19:31 -07:00
loc LEGO: check in for master to temporary branch. (#2983) 2018-05-16 08:55:09 -07:00
packer Bump cluster-autoscaler to recommended version for 1.11.5 (#4314) 2018-11-30 18:25:38 -07:00
parts we need newline (#4341) 2018-12-04 11:24:50 -08:00
pkg Enable Azure CNI 1.0.15 (#4361) 2018-12-17 10:16:53 -08:00
releases Add TLS Certificates to Docker Image (#3457) 2018-07-12 13:49:17 -07:00
scripts Add copyright headers to source files (#4324) 2018-12-03 11:19:18 -08:00
test Add copyright headers to source files (#4324) 2018-12-03 11:19:18 -08:00
translations Update localization for strings (#2902) 2018-05-10 16:08:34 -07:00
vendor Prune non-go files from vendoring (#4320) 2018-11-30 14:45:30 -07:00
windows update images to 1803 (#2958) 2018-05-15 10:11:17 -07:00
.dockerignore Fix make generate slowness on Docker for Mac (#1226) 2017-08-09 19:19:04 -07:00
.gitattributes Add devenv for building/testing/validating under Docker 2016-10-27 12:10:36 -07:00
.gitignore Using dep 0.5.0 and adding dep check to the CI/CD cycle (#3709) 2018-08-30 14:20:22 -07:00
.vsts-ci.yaml Updates from aks-engine spike (#4302) 2018-11-29 11:46:29 -08:00
Dockerfile Layer `ADD source-code` prior to `make bootstrap` layer in Dockerfile (#3767) 2018-08-30 12:23:08 -07:00
Dockerfile.k8swin Updating the go-bindata go get paths (#3119) 2018-05-31 15:50:32 -07:00
Gopkg.lock Prune non-go files from vendoring (#4320) 2018-11-30 14:45:30 -07:00
Gopkg.toml Prune non-go files from vendoring (#4320) 2018-11-30 14:45:30 -07:00
LICENSE Add License 2016-10-06 07:18:42 -07:00
Makefile Add copyright headers to source files (#4324) 2018-12-03 11:19:18 -08:00
OWNERS adding Tariq to the owners text file (#3842) 2018-09-13 12:49:28 -07:00
README.md clarified docs (#4362) 2018-12-17 16:36:33 -08:00
README_zh-CN.md remove one extra english paragraph in zh-cn readme. (#4281) 2018-11-22 11:37:56 -08:00
labels.yaml docs(github): use labeler to manage project labels (#955) 2017-07-10 17:25:02 -07:00
main.go Add copyright headers to source files (#4324) 2018-12-03 11:19:18 -08:00
makedev.ps1 Updates from aks-engine spike (#4302) 2018-11-29 11:46:29 -08:00
packer.mk Improve VHD VSTS pipeline output URL (#3682) 2018-08-16 10:10:55 -07:00
test.mk Add openshift e2e test (#2675) 2018-05-04 16:20:42 -07:00
versioning.mk version output improvements (#1325) 2017-08-25 14:57:33 -07:00

README.md

Pardon our Dust!

This codebase has been deprecated in favor of aks-engine, the natural evolution from acs-engine:

https://github.com/Azure/aks-engine

All future development and maintenance will occur there as an outcome of this deprecation. We're sorry for any inconvenience!

We've moved the Kubernetes code over 100% as-is (with the exception of the boilerplate renaming overhead that accompanies such a move); we're confident this housekeeping manouver will more effectively track the close affinity between the AKS managed service and the "build and manage your own configurable Kubernetes" stories that folks use this tool for.

See you at https://github.com/Azure/aks-engine!

The historical documentation remains below.

Microsoft Azure Container Service Engine - Builds Docker Enabled Clusters

Coverage Status CircleCI GoDoc

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, OpenShift, Swarm Mode, or Swarm orchestrators. The input to the tool is a cluster definition. The cluster definition (or apimodel) 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 you to customize your Docker enabled cluster in many ways including:

  • Choice of DC/OS, Kubernetes, OpenShift, Swarm Mode, or Swarm orchestrators
  • Multiple agent pools where each agent pool can specify:
    • Standard or premium VM Sizes, including GPU optimized VM sizes
    • Node count
    • Virtual Machine ScaleSets or Availability Sets
    • Storage Account Disks or Managed Disks
    • OS and distro
  • Custom VNET
  • Extensions

More info, including a thorough walkthrough is here.

User guides

These guides show how to create your first deployment for each orchestrator:

These guides cover more advanced features to try out after you have built your first cluster:

Usage

Generate Templates

Usage is best demonstrated with an example:

$ vim examples/kubernetes.json

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

$ ./acs-engine generate examples/kubernetes.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.)

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.