Namespace
easzlab
Image / Tag
kubeasz:3.6.10
Content Digest
sha256:0f1f001de3bd422a7b982f835ed9ce9d0c1b986c60378ed60749b269ab73c93f
Details
Created

2026-07-21 10:47:01 UTC

Size

51.3 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2026-07-21T10:46:53.733Z
  • org.opencontainers.image.description
    使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响
  • org.opencontainers.image.licenses
  • org.opencontainers.image.revision
    1db9e83ac2af13db0b47a5df0f255e18d4a717a4
  • org.opencontainers.image.source
    https://github.com/easzlab/kubeasz
  • org.opencontainers.image.title
    kubeasz
  • org.opencontainers.image.url
    https://github.com/easzlab/kubeasz
  • org.opencontainers.image.version
    3.6.10

Environment
ANSIBLE_CORE_VER

2.14.4

EASZLAB_ANSIBLE_TAG

2.14.4-lite

GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/d5cb0afaf23b8520f1bbcfed521017b4a95f5c01/public/get-pip.py

PYTHON_PIP_VERSION

22.3.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.3

TZ

Asia/Shanghai


Layers

[#000] sha256:f56be85fc22e46face30e2c3de3f7fe7c15f8fd7c4e5add29d7f64b87abdaa09 - 6.27% (3.22 MB)

[#001] sha256:ea5757f4b3f88ed50d687e1bd40a5e2f81e4a5c3fced11b753c589d2c6381fd5 - 1.16% (608 KB)

[#002] sha256:bd0557c686d8a5e4cde5f1a595873ab1b32f86f1f1f3449e25b78126e3f7670f - 23.14% (11.9 MB)

[#003] sha256:37d4153ce1d024ae10e21e1ad3cd3b94bb8f1757aa73826daefa74b76f3c0378 - 0.0% (242 Bytes)

[#004] sha256:b39eb9b4269d2c5e5a06952a620cd9e8f282062254ee29730d71783061c6f317 - 5.72% (2.94 MB)

[#005] sha256:a3cff94972c7280d9e9b4a8e51aeb078cb8f6d8eb36a0b23038dbda7bd891140 - 56.46% (29 MB)

[#006] sha256:d904cab1e74b5c03819d4625113fe47abf24890704fa7289c391e07e3b965571 - 7.25% (3.72 MB)

[#007] sha256:95b1d0d8f449088867a093f082eb892c91d5a87c6e26cd51f1082976ceeb23a2 - 0.0% (256 Bytes)


History
2023-03-29 18:19:24 UTC

/bin/sh -c #(nop) ADD file:9a4f77dfaba7fd2aa78186e4ef0e7486ad55101cefc1fabbc1b385601bb38920 in /

2023-03-29 18:19:24 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.3

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; command -v gpgconf > /dev/null && gpgconf --kill all || :; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-lto --with-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; python3 --version # buildkit

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; for src in idle3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=22.3.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/d5cb0afaf23b8520f1bbcfed521017b4a95f5c01/public/get-pip.py

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-04-16 04:12:29 UTC (buildkit.dockerfile.v0)

ENV ANSIBLE_CORE_VER=2.14.4

2023-04-16 04:12:29 UTC (buildkit.dockerfile.v0)

ENV EASZLAB_ANSIBLE_TAG=2.14.4-lite

2023-04-16 04:12:29 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -x && apk --no-cache add --virtual build-dependencies gcc musl-dev python3-dev libffi-dev openssl-dev cargo build-base && apk --no-cache add bash openssh-client rsync && pip install pip --upgrade && pip install --no-cache-dir ansible-core=="$ANSIBLE_CORE_VER" ansible && mv /usr/local/lib/python3.11/site-packages/ansible_collections/ansible /tmp && mv /usr/local/lib/python3.11/site-packages/ansible_collections/community /tmp && rm -rf /usr/local/lib/python3.11/site-packages/ansible_collections/* && mv /tmp/ansible /tmp/community /usr/local/lib/python3.11/site-packages/ansible_collections && mv /usr/local/lib/python3.11/site-packages/ansible_collections/community/crypto /tmp && mv /usr/local/lib/python3.11/site-packages/ansible_collections/community/general /tmp && mv /usr/local/lib/python3.11/site-packages/ansible_collections/community/network /tmp && rm -rf /usr/local/lib/python3.11/site-packages/ansible_collections/community/* && mv /tmp/crypto /tmp/general /tmp/network /usr/local/lib/python3.11/site-packages/ansible_collections/community/ && ln -s -f /usr/local/bin/python3.11 /usr/bin/python && ln -s -f /usr/local/bin/python3.11 /usr/bin/python3 && apk del build-dependencies && rm -rf /var/cache/apk/* && rm -rf /root/.cache && rm -rf /root/.cargo # buildkit

2023-04-16 04:12:29 UTC (buildkit.dockerfile.v0)

CMD ["tail" "-f" "/dev/null"]

2026-07-21 10:47:01 UTC (buildkit.dockerfile.v0)

ENV TZ=Asia/Shanghai

2026-07-21 10:47:01 UTC (buildkit.dockerfile.v0)

COPY . /etc/kubeasz # buildkit

2026-07-21 10:47:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -x && ln -s -f /etc/kubeasz/ezctl /usr/bin/ezctl && ln -s -f /etc/kubeasz/ezdown /usr/bin/ezdown && ln -s -f /usr/local/bin/python3.11 /usr/bin/python && ln -s -f /usr/local/bin/python3.11 /usr/bin/python3 && mkdir -p /usr/libexec && ln -s /usr/bin/python3 /usr/libexec/platform-python # buildkit

Details
Created

2026-07-21 10:47:01 UTC

Size

52.3 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2026-07-21T10:46:53.733Z
  • org.opencontainers.image.description
    使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响
  • org.opencontainers.image.licenses
  • org.opencontainers.image.revision
    1db9e83ac2af13db0b47a5df0f255e18d4a717a4
  • org.opencontainers.image.source
    https://github.com/easzlab/kubeasz
  • org.opencontainers.image.title
    kubeasz
  • org.opencontainers.image.url
    https://github.com/easzlab/kubeasz
  • org.opencontainers.image.version
    3.6.10

Environment
ANSIBLE_CORE_VER

2.14.4

EASZLAB_ANSIBLE_TAG

2.14.4-lite

GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/d5cb0afaf23b8520f1bbcfed521017b4a95f5c01/public/get-pip.py

PYTHON_PIP_VERSION

22.3.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.3

TZ

Asia/Shanghai


Layers

[#000] sha256:c41833b44d910632b415cd89a9cdaa4d62c9725dc56c99a7ddadafd6719960f9 - 5.94% (3.11 MB)

[#001] sha256:74b3a271aef90b25de0dfddcaf22c79ffa1fc32f1e9eac89f21fdd8162c30666 - 1.14% (610 KB)

[#002] sha256:5fd9bafbcd0902041a3f44c51f472061aa4e93d8755f80f25d200f9b3a597763 - 22.7% (11.9 MB)

[#003] sha256:6c89684ac2a52710830ffb671582de220d030b83718680da6a7c6d3408dbf769 - 0.0% (246 Bytes)

[#004] sha256:9e95ea84eb4890ec274983dda85d7b32e41adbd283ad61c3dd895fcbf158a3f3 - 5.61% (2.94 MB)

[#005] sha256:2930c325173265e183e216b8da90dfb71f730af35e00af3f4933f6eb0efb23fd - 57.49% (30.1 MB)

[#006] sha256:093359898f42c27313757d0052651bf9cee05a22295e99373008560d0f579a83 - 7.11% (3.72 MB)

[#007] sha256:95b1d0d8f449088867a093f082eb892c91d5a87c6e26cd51f1082976ceeb23a2 - 0.0% (256 Bytes)


History
2023-03-29 17:39:18 UTC

/bin/sh -c #(nop) ADD file:e51d4089e73ad6dee52b31f0c8059a00c17df6e23f6741fe11b43bd84cc99008 in /

2023-03-29 17:39:18 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.3

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; command -v gpgconf > /dev/null && gpgconf --kill all || :; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-lto --with-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; python3 --version # buildkit

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; for src in idle3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=22.3.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/d5cb0afaf23b8520f1bbcfed521017b4a95f5c01/public/get-pip.py

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-04-16 04:17:16 UTC (buildkit.dockerfile.v0)

ENV ANSIBLE_CORE_VER=2.14.4

2023-04-16 04:17:16 UTC (buildkit.dockerfile.v0)

ENV EASZLAB_ANSIBLE_TAG=2.14.4-lite

2023-04-16 04:17:16 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -x && apk --no-cache add --virtual build-dependencies gcc musl-dev python3-dev libffi-dev openssl-dev cargo build-base && apk --no-cache add bash openssh-client rsync && pip install pip --upgrade && pip install --no-cache-dir ansible-core=="$ANSIBLE_CORE_VER" ansible && mv /usr/local/lib/python3.11/site-packages/ansible_collections/ansible /tmp && mv /usr/local/lib/python3.11/site-packages/ansible_collections/community /tmp && rm -rf /usr/local/lib/python3.11/site-packages/ansible_collections/* && mv /tmp/ansible /tmp/community /usr/local/lib/python3.11/site-packages/ansible_collections && mv /usr/local/lib/python3.11/site-packages/ansible_collections/community/crypto /tmp && mv /usr/local/lib/python3.11/site-packages/ansible_collections/community/general /tmp && mv /usr/local/lib/python3.11/site-packages/ansible_collections/community/network /tmp && rm -rf /usr/local/lib/python3.11/site-packages/ansible_collections/community/* && mv /tmp/crypto /tmp/general /tmp/network /usr/local/lib/python3.11/site-packages/ansible_collections/community/ && ln -s -f /usr/local/bin/python3.11 /usr/bin/python && ln -s -f /usr/local/bin/python3.11 /usr/bin/python3 && apk del build-dependencies && rm -rf /var/cache/apk/* && rm -rf /root/.cache && rm -rf /root/.cargo # buildkit

2023-04-16 04:17:16 UTC (buildkit.dockerfile.v0)

CMD ["tail" "-f" "/dev/null"]

2026-07-21 10:47:01 UTC (buildkit.dockerfile.v0)

ENV TZ=Asia/Shanghai

2026-07-21 10:47:01 UTC (buildkit.dockerfile.v0)

COPY . /etc/kubeasz # buildkit

2026-07-21 10:47:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -x && ln -s -f /etc/kubeasz/ezctl /usr/bin/ezctl && ln -s -f /etc/kubeasz/ezdown /usr/bin/ezdown && ln -s -f /usr/local/bin/python3.11 /usr/bin/python && ln -s -f /usr/local/bin/python3.11 /usr/bin/python3 && mkdir -p /usr/libexec && ln -s /usr/bin/python3 /usr/libexec/platform-python # buildkit

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete