10.30 使用 ansible-bender 構建容器鏡像

使用 ansible-bender 構建容器鏡像

瞭解如何使用 Ansible 在容器中執行命令。

-- Tomas Tomecek(作者)

瞭解如何使用 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.yaml
PLAY [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=0
Getting image source signatures
Copying blob sha256:4650c04b851c62897e9c02c6041a0e3127f8253fafa3a09642552a8e77c044c8
Copying blob sha256:87b740bba596291af8e9d6d91e30a01d5eba9dd815b55895b8705a2acc3a825e
Copying blob sha256:82c21252bd87532e93e77498e3767ac2617aa9e578e32e4de09e87156b9189a0
Copying config sha256:44c6dc6dda1afe28892400c825de1c987c4641fd44fa5919a44cf0a94f58949f
Writing manifest to image destination
Storing signatures
44c6dc6dda1afe28892400c825de1c987c4641fd44fa5919a44cf0a94f58949f
Image 'our-httpd' was built successfully \\o/

鏡像構建完畢,可以運行容器了:

# podman run our-httpd
AH00558: 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 }}' 7418570ba5a0
10.88.2.106

你現在可以檢查了:

$ curl http://10.88.2.106/our-file.txt
Ansible is ❤

你文件內容是什麼?

這只是使用 Ansible 構建容器鏡像的介紹。如果你想了解有關 ansible-bender 可以做什麼的更多信息,請查看它的 GitHub 頁面。構建快樂!


via: https://opensource.com/article/19/10/building-container-images-ansible

作者: Tomas Tomecek 選題: lujun9972 譯者: geekpi 校對: wxy

本文由 LCTT 原創編譯, Linux中國 榮譽推出


分享到:


相關文章: