了解如何使用 Ansible 在容器中執行命令。
容器和 Ansible 可以很好地融合在一起:從管理和編排到供應和構建。在本文中,我們將重點介紹構建部分。
如果你熟悉 Ansible,就會知道你可以編寫一系列任務,ansible-playbook
命令將為你執行這些任務。你知道嗎,如果你編寫 Dockerfile 並執行 podman build
,你還可以在容器環境中執行此類命令,並獲得相同??的結果。
這是一個例子:
- name: Serve our file using httpd hosts: all tasks: - name: Install httpd package: name: httpd state: installed - name: Copy our file to httpd’s webroot copy: src: our-file.txt dest: /var/www/html/
你可以在 Web 伺服器本地或容器中執行這個劇本,並且只要你記得先建立 our-file.txt
,它就可以工作。
但是這裡缺少了一些東西。你需要啟動(並設定)httpd 以便提供檔案。這是容器構建和基礎架構供應之間的區別:構建映象時,你只需準備內容;而執行容器是另一項任務。另一方面,你可以將後設資料附加到容器映象,它會預設執行命令。
這有個工具可以幫助。試試看 ansible-bender
怎麼樣?
$ ansible-bender build the-playbook.yaml fedora:30 our-httpd
該指令碼使用 ansible-bender
對 Fedora 30 容器映象執行該劇本,並將生成的容器映象命名為 our-httpd
。
但是,當你執行該容器時,它不會啟動 httpd,因為它不知道如何操作。你可以通過向該劇本新增一些後設資料來解決此問題:
- name: Serve our file using httpd hosts: all vars: ansible_bender: base_image: fedora:30 target_image: name: our-httpd cmd: httpd -DFOREGROUND tasks: - name: Install httpd package: name: httpd state: installed - name: Listen on all network interfaces. lineinfile: path: /etc/httpd/conf/httpd.conf regexp: '^Listen ' line: Listen 0.0.0.0:80 - name: Copy our file to httpd’s webroot copy: src: our-file.txt dest: /var/www/html
現在你可以構建映象(從這裡開始,請以 root 使用者身份執行所有命令。目前,Buildah 和 Podman 不會為無 root 容器建立專用網路):
# ansible-bender build the-playbook.yamlPLAY [Serve our file using httpd] **************************************************** TASK [Gathering Facts] *************************************************************** ok: [our-httpd-20191004-131941266141-cont]TASK [Install httpd] *****************************************************************loaded from cache: 'f053578ed2d47581307e9ba3f64f4b4da945579a082c6f99bd797635e62befd0'skipping: [our-httpd-20191004-131941266141-cont]TASK [Listen on all network interfaces.] *********************************************changed: [our-httpd-20191004-131941266141-cont]TASK [Copy our file to httpd’s webroot] **********************************************changed: [our-httpd-20191004-131941266141-cont]PLAY RECAP ***************************************************************************our-httpd-20191004-131941266141-cont : ok=3 changed=2 unreachable=0 failed=0 skipped=1 rescued=0 ignored=0Getting image source signaturesCopying blob sha256:4650c04b851c62897e9c02c6041a0e3127f8253fafa3a09642552a8e77c044c8Copying blob sha256:87b740bba596291af8e9d6d91e30a01d5eba9dd815b55895b8705a2acc3a825eCopying blob sha256:82c21252bd87532e93e77498e3767ac2617aa9e578e32e4de09e87156b9189a0Copying config sha256:44c6dc6dda1afe28892400c825de1c987c4641fd44fa5919a44cf0a94f58949fWriting manifest to image destinationStoring signatures44c6dc6dda1afe28892400c825de1c987c4641fd44fa5919a44cf0a94f58949fImage 'our-httpd' was built successfully \o/
映象構建完畢,可以執行容器了:
# podman run our-httpdAH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 10.88.2.106. Set the 'ServerName' directive globally to suppress this message
是否提供檔案了?首先,找出你容器的 IP:
# podman inspect -f '{{ .NetworkSettings.IPAddress }}' 7418570ba5a010.88.2.106
你現在可以檢查了:
$ curl http://10.88.2.106/our-file.txtAnsible is ?
你檔案內容是什麼?
這只是使用 Ansible 構建容器映象的介紹。如果你想了解有關 ansible-bender
可以做什麼的更多資訊,請檢視它的 GitHub 頁面。構建快樂!