WE HAVE MOVED: Please join us at Azure/aks-engine!
Перейти к файлу
Jiangtian Li 03208b30b1 Update localization for strings (#2902) 2018-05-10 16:08:34 -07:00
.circleci Require unit tests before openshift e2e (#2914) 2018-05-10 11:27:15 -07:00
.github Update PULL_REQUEST_TEMPLATE.md (#2515) 2018-03-22 15:44:45 -07:00
cmd Fix broken upgrade nil pointer dereference (#2879) 2018-05-08 11:00:15 -07:00
docs Fixed some typos in the text (#2907) 2018-05-10 09:51:01 -07:00
examples Kubernetes Cluster Autoscaler (VMSS) addon (#2637) 2018-05-09 16:28:39 -07:00
extensions Update references to gcr.io to point to Azure CDN endpoint (#2721) 2018-04-18 18:54:18 -07:00
jenkins Update references to gcr.io to point to Azure CDN endpoint (#2721) 2018-04-18 18:54:18 -07:00
loc LEGO: check in for master to temporary branch. (#1969) 2017-12-27 09:46:49 -08:00
parts Remove default vnet and route table creation when using Azure CNI. (#2809) 2018-05-09 16:28:59 -07:00
pkg Remove default vnet and route table creation when using Azure CNI. (#2809) 2018-05-09 16:28:59 -07:00
releases acs-engine Docker Image Rework (#2784) 2018-05-02 16:03:06 -07:00
scripts Update localization for strings (#2902) 2018-05-10 16:08:34 -07:00
test Kubernetes Cluster Autoscaler (VMSS) addon (#2637) 2018-05-09 16:28:39 -07:00
translations Update localization for strings (#2902) 2018-05-10 16:08:34 -07:00
vendor OpenShift AAD automatic service principal and authentication integration (#2795) 2018-05-04 15:23:21 -07:00
windows refactor build script and download wincni from github (#2875) 2018-05-08 11:42:51 -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 Add openshift e2e test (#2675) 2018-05-04 16:20:42 -07:00
CONTRIBUTING.md remove duplicate sentence (#1559) 2017-10-09 13:03:41 -07:00
Dockerfile Add the new signing key for the azure cli package (#2786) 2018-05-02 15:46:33 -07:00
Dockerfile.k8swin Dev environment setup for k8s on Windows machine (#1703) 2017-11-03 10:24:42 -07:00
LICENSE Add License 2016-10-06 07:18:42 -07:00
Makefile Add openshift e2e test (#2675) 2018-05-04 16:20:42 -07:00
OWNERS Setup OWNERS files (#2791) 2018-04-30 11:52:56 -07:00
README.md First version of OpenShift docs (#2839) 2018-05-10 09:43:56 -07:00
README_zh-CN.md ref(docs): reorganize documentation 2017-08-02 21:25:15 -07:00
glide.lock OpenShift AAD automatic service principal and authentication integration (#2795) 2018-05-04 15:23:21 -07:00
glide.yaml OpenShift AAD automatic service principal and authentication integration (#2795) 2018-05-04 15:23:21 -07:00
labels.yaml docs(github): use labeler to manage project labels (#955) 2017-07-10 17:25:02 -07:00
main.go Resubmit PR# 2332: Enable colorized logging on Windows (#2482) 2018-03-20 16:44:08 -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

Microsoft Azure Container Service Engine - Builds Docker Enabled Clusters

Coverage Status CircleCI

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

User guides

Contributing

Follow the developers guide to set up your environment.

To build acs-engine, run make build. If you are developing with a working Docker environment, you can also run make dev first to start a Docker container and run make build inside the container.

Please follow these instructions before submitting a PR:

  1. Execute make test to run unit 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 that you are not introducing any regressions.

  3. Make sure that your changes are properly documented and include relevant unit tests.

Usage

Generate Templates

Usage is best demonstrated with an example:

$ vim examples/classic/kubernetes.classic.json

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

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

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.