github.com/docker/compose-on-kubernetes@v0.5.0/docs/install-on-aks.md (about)

     1  # Install on Azure AKS
     2  
     3  ## Pre-requisites
     4  - To install Compose on Kubernetes on Azure AKS, you must create an AKS cluster with RBAC enabled.
     5  - To install etcd using these instructions, you must have [Helm](https://helm.sh) in your client environment.
     6  - [Download the Compose on Kubernetes installer](https://github.com/docker/compose-on-kubernetes/releases).
     7  
     8  ## Create compose namespace
     9  
    10  Just run `kubectl create namespace compose`.
    11  
    12  ## Deploy etcd
    13  
    14  Compose on Kubernetes requires an etcd instance (in addition to the kube-system etcd instance). Please follow [How to deploy etcd](./deploy-etcd.md).
    15  
    16  ## Deploy Compose on Kubernetes
    17  
    18  Run `installer-[darwin|linux|windows.exe] -namespace=compose -etcd-servers=http://compose-etcd-client:2379`.
    19  
    20  **Note: To setup Mutual TLS with the etcd instance, you can use `etcd-ca-file`, `etcd-key-file` and `etcd-cert-file` flags.**