首页 > 其他 > 详细

Azure Mooncake 搭建 AKS-Engine (一) - 创建K8S集群

时间:2019-03-27 19:32:41      阅读:418      评论:0      收藏:0      [点我收藏+]

AKS-Engine 是Azure 提供的开源K8S 部署包,通过自定义template 文件在Azure 上创建K8S集群。

Step1:安装 AKS-Engine

$ aks_version=v0.28.1
$ wget https://mirror.azure.cn/kubernetes/aks-engine/$aks_version/aks-engine-$aks_version-linux-amd64.tar.gz
$ tar -xvzf aks-engine-$aks_version-linux-amd64.tar.gz
$ alias aks-engine=‘`pwd`/aks-engine-$aks_version-linux-amd64/aks-engine’

Step2:创建 Service Principals

Service Principals 是Azure 上一种安全认证,用来认证服务是否能被调用。

$ az login
$ az account set --subscription="${SUBSCRIPTION_ID}"
$ az ad sp create-for-rbac --role="Contributor" --scopes="/subscriptions/${SUBSCRIPTION_ID}
技术分享图片

Step3 :生成 Azure Kubernetes Template

Template 用来定义kubernetes 的功能开启,比如网络插件,创建位置,权限等

具体可以参考: https://github.com/Azure/aks-engine/blob/master/docs/aksengine.md

$ k8s_version=1.11.5
$ mkdir kubernetes1115 && cd kubernetes1115
$ wget -O kubernetes-$k8s_version.json https://raw.githubusercontent.com/andyzhangx/Demo/master/acs-engine/mooncake/kubernetes-1.10.7.json
$ vi kubernetes-$k8s_version.json
"location": "chinaeast2",
 "dnsPrefix": "yute-k8s1115",
"vmSize": "Standard_NC6s_v3",
“keyData”:”rsa …”
"servicePrincipalProfile": {
            "clientId": "appID which get from step2",
            "secret": "password which get from step2"
        }
$ aks-engine generate kubernetes-$k8s_version.json

Step3.1(Optional) : 如果需要通过固定IP出入站,需要设置AKS-Engine 的load balance 为Stand Load Balance ,默认为Basic。

$ vi kubernetes-$k8s_version.json
    "properties": {
        "orchestratorProfile": {
            "orchestratorType": "Kubernetes",
            "orchestratorVersion": "1.11.5",
            "kubernetesConfig": {
                "loadBalancerSku": "standard"
            }
        },

 

Step4:创建 Azure Kubernetes

$ dnsPrefix=yute-k8s1115
$ vi _output/$dnsPrefix/azuredeploy.parameters.json
    "dockerEngineDownloadRepo": {
      "value": "https://mirror.azure.cn/docker-engine/apt/repo/"
    }
$ RESOURCE_GROUP_NAME=yute-k8s1115
$ az group create -l chinaeast2 -n $RESOURCE_GROUP_NAME
$ az group deployment create     --name="$dnsPrefix"     --resource-group=$RESOURCE_GROUP_NAME     --template-file="./_output/$dnsPrefix/azuredeploy.json" --parameters "@./_output/$dnsPrefix/azuredeploy.parameters.json"

Complete

技术分享图片

Step5 :安装命令行Kubectl

$ scp azureuser@MASTERFQDN:.kube/config .
$ export KUBECONFIG=`pwd`/config
$ kubectl get nodes

Step6 : 启动Dashboard

$ kubectl proxy

通过浏览器访问 http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/

Azure Mooncake 搭建 AKS-Engine (一) - 创建K8S集群

原文:https://www.cnblogs.com/mumusansmile/p/10595569.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!