Buildah in Container
컨테이너 내에서 Buildah 실행 image
Dockerfile
FROM quay.io/buildah/stable:latest
RUN echo build:260000:65537 > /etc/subuid; echo build:260000:65537 > /etc/subgid;
USER build
WORKDIR /home/build
buildah bud --no-cache -t docker.io/human537/buildah:v3 .
buildah push docker.io/human537/buildah:v3
buildah image history : link
Pod
apiVersion: v1
kind: Pod
metadata:
name: buildah
spec:
containers:
- name: buildah
image: docker.io/human537/buildah:v3
imagePullPolicy: Always
securityContext:
privileged: true
args:
- sleep
- "1000000"
kubectl exec -it buildah /bin/bash
테스트 Dockerfile
FROM ubuntu
MAINTAINER demousr@gmail.com
RUN apt-get update
RUN apt-get install -y nginx
CMD ["echo","Image created"]
buildah bud --no-cache -t ghcr.io/jmyung/test:v11 .
[build@buildah ~]$ buildah images
REPOSITORY TAG IMAGE ID CREATED SIZE
ghcr.io/jmyung/test v11 49c69b667025 28 seconds ago 167 MB
docker.io/library/ubuntu latest ba6acccedd29 3 days ago 75.2 MB
buildah bud --no-cache -t ghcr.io/jmyung/test:v11 .
buildah login -u $USER -p $PASSWD ghcr.io
buildah push ghcr.io/jmyung/test:v11
다중 로그인 가능
Docker in containerd
rootless 유저 사용
yaml
apiVersion: v1
kind: Pod
metadata:
name: rootless
spec:
containers:
- image: docker:20.10.9-dind-rootless
name: rootless
env:
- name: DOCKER_HOST
value: unix:///run/user/1000/docker.sock
securityContext:
privileged: true
Container log
```sh root@ske-cicd-844fbdb55c-qbl9s:~# k logs rootless Generating RSA private key, 4096 bit long modulus (2 primes) ......................................................................................................................................................................................................................................................++++ ...........................................................................................................++++ e is 65537 (0x010001) Generating RSA private key, 4096 bit long modulus (2 primes) ................++++ ..................................++++ e is 65537 (0x010001) Signature ok subject=CN = docker:dind server Getting CA Private Key /certs/server/cert.pem: OK Generating RSA private key, 4096 bit long modulus (2 primes) ..................................................................................................................................................................................................................................................................................................++++ ......................................++++ e is 65537 (0x010001) Signature ok subject=CN = docker:dind client Getting CA Private Key /certs/client/cert.pem: OK time="2021-11-09T08:47:44Z" level=warning msg="failed to mount sysfs, falling back to read-only mount: operation not permitted" [WARN tini (90)] Tini is not running as PID 1 and isn't registered as a child subreaper. Zombie processes will not be re-parented to Tini, so zombie reaping won't work. To fix the problem, use the -s option or set the environment variable TINI_SUBREAPER to register Tini as a child subreaper, or run Tini as PID 1. time="2021-11-09T08:47:44.427468214Z" level=info msg="Starting up" time="2021-11-09T08:47:44.427496652Z" level=warning msg="Running in rootless mode. This mode has feature limitations." time="2021-11-09T08:47:44.427501350Z" level=info msg="Running with RootlessKit integration" time="2021-11-09T08:47:44.428546724Z" level=warning msg="could not change group /run/user/1000/docker.sock to docker: group docker not found" time="2021-11-09T08:47:44.430236551Z" level=info msg="libcontainerd: started new containerd process" pid=109 time="2021-11-09T08:47:44.430268946Z" level=info msg="parsed scheme: \"unix\"" module=grpc time="2021-11-09T08:47:44.430276757Z" level=info msg="scheme \"unix\" not registered, fallback to default scheme" module=grpc time="2021-11-09T08:47:44.430297088Z" level=info msg="ccResolverWrapper: sending update to cc: {[{unix:///run/user/1000/docker/containerd/containerd.sock
