溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用 Ansible 管理 Kubernetes 資源

發(fā)布時(shí)間:2020-07-19 11:39:04 來(lái)源:網(wǎng)絡(luò) 閱讀:620 作者:OpenInfra 欄目:云計(jì)算

前兩天,一篇「Think twice before using Helm[1]」(譯文:「恕我直言,對(duì)Helm大家還是要三思而后用」) 引起了大家的關(guān)注。作者從認(rèn)證,生命周期管理,錯(cuò)誤處理等多個(gè)角度說(shuō)明了 Helm 自身的問(wèn)題。我基本贊同作者的觀點(diǎn)。多數(shù)情況下我們只是把 helm 當(dāng)做一個(gè)模板引擎在使用,把 charts 生成 Kubernetes 可以處理的格式。但是從使用角度來(lái)說(shuō),這個(gè)模板實(shí)現(xiàn)的太重了。有興趣的可以去讀讀原文。

那如果 Helm 不輕量好用的話,我們有啥其他選擇?

Ansible 做為部署管理的工具,正在受到越來(lái)越多的運(yùn)維人員的追捧。他支持 Jinja2 的模板引擎,而且是無(wú)代理節(jié)點(diǎn)的架構(gòu),很方便來(lái)做一些模板工作。所以本文來(lái)介紹使用 Ansible 如何管理 Kubernetes 上面的資源。

首先使用 Ansible 避免不了使用其模塊。與 Kubernetes 相關(guān)的模塊可以從[2]找到?,F(xiàn)在主要有k8s, k8s_facts, k8s_scale, kubernetes和oc 5個(gè)模塊。其中 kubernetes 和 oc 模塊因?yàn)閷?shí)現(xiàn)邏輯不好用,在 ansible 2.6 版本中已經(jīng)廢棄掉, 推薦使用前三個(gè)。其中,k8s_scale 來(lái)自 ansible 2.5, k8s 來(lái)自 ansible 2.6, k8s_facts 來(lái)自 ansible 2.7。使用這三個(gè)模塊的話,還需要安裝 openshift 的 Python 包。以下代碼全部基于 ansible 2.7 版本。

一、k8s 模塊

管理 kubernetes 各種資源的話,使用 k8s 模塊就可以了,如下是創(chuàng)建 namespace 的寫(xiě)法

  • name: Create a k8s namespace
    k8s:
    name: testing
    api_version: v1
    kind: Namespace
    state: present
    如果要?jiǎng)?chuàng)建一個(gè) Service, 也可以使用如下面的寫(xiě)法。

  • name: Create a Service object from an inline definition
    k8s:
    state: present
    definition:
    apiVersion: v1
    kind: Service
    metadata:
    name: web
    namespace: testing
    labels:
    app: galaxy
    service: web
    spec:
    selector:
    app: galaxy
    service: web
    ports:
    • protocol: TCP
      targetPort: 8000
      name: port-8000-tcp
      port: 8000
      可以看到 definition 里面就是原生的 Kubernetes 里面的寫(xiě)法,而 k8s 模塊的參數(shù)也寫(xiě)少,所以上手會(huì)很快。

如果 k8s 模塊和 ansible lookup 插件合用的話,可以寫(xiě)出更加簡(jiǎn)潔的代碼,如下

#tasks.yml

  • name: Create a Service object from an external file
    var:
    name: "web"
    k8s:
    state: present
    definition:
    {{ lookup('template', '/path/to/service.yml') | to_yaml(indent=6) }}
    #/path/to/service.yml

    apiVersion: v1
    kind: Service
    metadata:
    name: {{ name }} # <-- 這里可以使用變量
    namespace: testing
    labels:
    app: galaxy
    service: web
    spec:
    selector:
    app: galaxy
    service: web
    ports:

    • protocol: TCP
      targetPort: 8000
      name: port-8000-tcp
      port: 8000
      可以看到 Kubernetes service 文件可以完全從 task 里面獨(dú)立出來(lái),獨(dú)立后的寫(xiě)法就是原生的 kubernetes 的格式,基本就和 Charts 的結(jié)構(gòu)差不多了。

基于此,完全可以使用這種方式替換掉 helm 的模板功能,而且沒(méi)有引入任何額外的依賴,就是直接的 ansible 生成相關(guān)文件,丟給 kubernetes api 來(lái)處理。等部署完成后,我們也可以脫離 Ansible 繼續(xù)通過(guò) kubelet 命令維護(hù)這些資源。也正是由于這么簡(jiǎn)潔的實(shí)現(xiàn),k8s 模塊可以管理 Kubernetes 和 OpenShift, 也可以管理各種 CRD 資源。

相比于 helm , 這種方法的缺點(diǎn)在于 YAML 文件都要自己寫(xiě),沒(méi)有社區(qū)在維護(hù)的 Charts。不像 helm 那樣,一個(gè)命令就可以把服務(wù)都安裝上。前期的工作還是挺多的。但是從另外一個(gè)角度來(lái)說(shuō),社區(qū)維護(hù)的 Charts 做一些 Demo 還可以,真要生產(chǎn)上面使用,還是要做大量工作的。所以從這個(gè)角度上講,使用 Ansible 也沒(méi)有帶來(lái)太大的工作量。

我更期待社區(qū)可以使用 Ansible 直接管理 Charts 資源,或可以有一個(gè)工具把 Charts 的 Go 模板轉(zhuǎn)成 Ansible 可以接受的 Jinja2 格式。

二、k8s_scale 和 k8s_facts 模塊

這兩個(gè)模塊算輔助的功能,我覺(jué)得使用的機(jī)會(huì)可能并不會(huì)太多。k8s_scale 的例子如下:

  • name: Scale deployment up, and extend timeout
    k8s_scale:
    api_version: v1
    kind: Deployment
    name: elastic
    namespace: myproject
    replicas: 3
    wait_timeout: 60

  • name: Scale deployment down when current replicas match
    k8s_scale:
    api_version: v1
    kind: Deployment
    name: elastic
    namespace: myproject
    current_replicas: 3
    replicas: 2
    它可以動(dòng)態(tài)調(diào)整 Deployment 的 replicas 個(gè)數(shù),基本上等同于kubectl scale 命令,但是這個(gè)功能基本可以使用 k8s 模塊通過(guò)改變 replicas 參數(shù)來(lái)調(diào)整。

k8s_facts的例子如下:

  • name: Get an existing Service object
    k8s_facts:
    api_version: v1
    kind: Service
    name: web
    namespace: testing
    register: web_service
    使用他,你可以檢查某個(gè)資源是否存在,如果存在的話,還可以獲得這個(gè)資源的yaml 文件描述,我覺(jué)得在 Ansible 流程控制中會(huì)有一些作用,可以根據(jù)當(dāng)前 Kubernets 里面資源情況,有選擇的做一些動(dòng)作。

三、小技巧

因?yàn)?Ansible 是 Python 編寫(xiě)的,在使用 pip 安裝時(shí)容易破壞系統(tǒng)已經(jīng)安裝的 Python 包,推薦使用虛擬環(huán)境來(lái)安裝。

#mkvirtualenv --system-site-packages ansible
#pip install 'ansible<2.7' openshift

使用時(shí),需要指定 Ansible 使用的 python interpreter 變量

#workon ansible
#ansible-playbook -i localhost, -c local test.yml -e ansible_python_interpreter=${VIRTUAL_ENV}/bin/python

四、demo

以下是使用 ansible 在 OpenShift 上面部署 echoserver 的一個(gè)完整例子


  • hosts: localhost
    connection: local
    gather_facts: false
    vars:
    namespace: demo
    tasks:
    • name: Create echo server deployment config
      k8s:
      namespace: "{{ namespace }}"
      definition:
      apiVersion: v1
      kind: DeploymentConfig
      metadata:
      name: echoserver
      spec:
      replicas: 1
      template:
      metadata:
      labels:
      app: echoserver
      spec:
      containers:
      • name: echoserver
        image: googlecontainer/echoserver:1.5
        readnessProbe:
        httpGet:
        port: 8080
        path: /
        initialDelaySeconds: 20
        periodSeconds: 5
        livenessProbe:
        httpGet:
        port: 8080
        path: /
        initialDelaySeconds: 10
        periodSeconds: 3
    • name: Create echo server service
      k8s:
      namespace: "{{ namespace }}"
      definition:
      apiVersion: v1
      kind: Service
      metadata:
      name: echoserver
      spec:
      ports:
      • name: http
        port: 8080
        targetPort: 8080
        selector:
        app: echoserver
    • name: Create echo server router
      k8s:
      namespace: "{{ namespace }}"
      definition:
      kind: Route
      apiVersion: route.openshift.io/v1
      metadata:
      name: echoserver
      spec:
      host: echoserver.local
      to:
      kind: Service
      name: echoserver
      port:
      targetPort: http

參考文獻(xiàn):

[1]https://medium.com/virtuslab/think-twice-before-using-helm-25fbb18bc822;
[2]https://docs.ansible.com/ansible/latest/modules/list_of_clustering_modules.html;

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI