当前位置:网站首页>使用 ansible-bender 构建容器镜像
使用 ansible-bender 构建容器镜像
2022-08-08 15:57:00 【星哥玩云】
了解如何使用 Ansible 在容器中执行命令。
容器和 Ansible 可以很好地融合在一起:从管理和编排到供应和构建。在本文中,我们将重点介绍构建部分。
如果你熟悉 Ansible,就会知道你可以编写一系列任务,ansible-playbook
命令将为你执行这些任务。你知道吗,如果你编写 Dockerfile 并运行 podman build
,你还可以在容器环境中执行此类命令,并获得相同的结果。
这是一个例子:
- name:Serveourfileusing httpd
hosts: all
tasks:
- name:Install httpd
package:
name: httpd
state: installed
- name:Copyourfile 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:30our-httpd
该脚本使用 ansible-bender
对 Fedora 30 容器镜像执行该剧本,并将生成的容器镜像命名为 our-httpd
。
但是,当你运行该容器时,它不会启动 httpd,因为它不知道如何操作。你可以通过向该剧本添加一些元数据来解决此问题:
- name:Serveourfileusing 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:Listen0.0.0.0:80
- name:Copyourfile to httpd’s webroot
copy:
src:our-file.txt
dest:/var/www/html
现在你可以构建镜像(从这里开始,请以 root 用户身份运行所有命令。目前,Buildah 和 Podman 不会为无 root 容器创建专用网络):
# ansible-bender build the-playbook.yaml
PLAY [Serveourfileusing httpd]****************************************************
TASK [GatheringFacts]***************************************************************
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 [Copyourfile 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:Couldnot 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
边栏推荐
猜你喜欢
随机推荐
瑞吉外卖学习笔记3
Guanghong Technology: The company provides manufacturing services for Xiaomi, Samsung, OPPO, Nokia and other products in India
本博客目录及版权申明
Superset 1.2.0 installation
C#/VB.NET 将PDF转为PDF/X-1a:2001
湖北钠斯网络数字藏品交易系统
ThinkPHP3.2链接带中文参数乱码导致分页数据错误
leetcode--541. 反转字符串II
增效降本开源节流,2022年技术趋势前瞻(异步编程/容器技术)
基于FTP协议的Excel文件上传与下载
基于微信小程序的幼儿园招生报名系统开发笔记
Take you to play with the "Super Cup" ECS features and experiment on the pit [HUAWEI CLOUD is simple and far]
分享这些2022设计师们决不能错过的Blender新插件
基于LEAP模型的能源环境发展、碳排放建模预测及不确定性分析
保险,一生必备
[Unity Starter Plan] Making RubyAdventure02 - Handling Tile Maps & Collision
来,集中训练一下二叉树的层序遍历~
【软件工程之美 - 专栏笔记】40 | 最佳实践:小团队如何应用软件工程?
Dry goods: design high concurrency architecture from scratch
SAP系统为什么要迁移上云?