2023-05-02 15:56:13 +08:00
|
|
|
# Use imutable image tags rather than mutable tags (like ubuntu:22.04)
|
|
|
|
FROM ubuntu:jammy-20230308
|
2021-08-26 22:47:23 +08:00
|
|
|
# Some tools like yamllint need this
|
|
|
|
# Pip needs this as well at the moment to install ansible
|
2023-06-03 11:40:40 +08:00
|
|
|
# (and potentially other packages)
|
2021-08-26 22:47:23 +08:00
|
|
|
# See: https://github.com/pypa/pip/issues/10219
|
2023-02-27 16:18:19 +08:00
|
|
|
ENV LANG=C.UTF-8 \
|
2023-04-11 17:47:18 +08:00
|
|
|
DEBIAN_FRONTEND=noninteractive \
|
|
|
|
PYTHONDONTWRITEBYTECODE=1
|
2021-04-27 14:33:37 +08:00
|
|
|
WORKDIR /kubespray
|
2023-05-25 08:02:50 +08:00
|
|
|
COPY *.yml ./
|
2023-05-26 15:28:52 +08:00
|
|
|
COPY *.cfg ./
|
2023-02-27 16:18:19 +08:00
|
|
|
COPY roles ./roles
|
|
|
|
COPY contrib ./contrib
|
|
|
|
COPY inventory ./inventory
|
|
|
|
COPY library ./library
|
|
|
|
COPY extra_playbooks ./extra_playbooks
|
2023-05-26 15:28:52 +08:00
|
|
|
COPY playbooks ./playbooks
|
|
|
|
COPY plugins ./plugins
|
2020-09-11 20:48:14 +08:00
|
|
|
|
2023-04-11 17:47:18 +08:00
|
|
|
RUN apt update -q \
|
|
|
|
&& apt install -yq --no-install-recommends \
|
|
|
|
curl \
|
|
|
|
python3 \
|
|
|
|
python3-pip \
|
|
|
|
sshpass \
|
|
|
|
vim \
|
|
|
|
rsync \
|
|
|
|
openssh-client \
|
|
|
|
&& pip install --no-compile --no-cache-dir \
|
2023-06-28 18:54:32 +08:00
|
|
|
ansible==7.6.0 \
|
|
|
|
ansible-core==2.14.6 \
|
|
|
|
cryptography==41.0.1 \
|
2023-04-21 13:43:11 +08:00
|
|
|
jinja2==3.1.2 \
|
|
|
|
netaddr==0.8.0 \
|
2023-04-11 17:47:18 +08:00
|
|
|
jmespath==1.0.1 \
|
2023-06-28 18:54:32 +08:00
|
|
|
MarkupSafe==2.1.3 \
|
2023-04-11 17:47:18 +08:00
|
|
|
ruamel.yaml==0.17.21 \
|
2023-08-18 09:30:28 +08:00
|
|
|
passlib==1.7.4 \
|
2023-01-09 10:29:27 +08:00
|
|
|
&& KUBE_VERSION=$(sed -n 's/^kube_version: //p' roles/kubespray-defaults/defaults/main.yaml) \
|
2023-05-17 12:02:33 +08:00
|
|
|
&& curl -L https://dl.k8s.io/release/$KUBE_VERSION/bin/linux/$(dpkg --print-architecture)/kubectl -o /usr/local/bin/kubectl \
|
|
|
|
&& echo $(curl -L https://dl.k8s.io/release/$KUBE_VERSION/bin/linux/$(dpkg --print-architecture)/kubectl.sha256) /usr/local/bin/kubectl | sha256sum --check \
|
2023-04-11 17:47:18 +08:00
|
|
|
&& chmod a+x /usr/local/bin/kubectl \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* /var/log/* \
|
2023-06-06 16:13:01 +08:00
|
|
|
&& find /usr -type d -name '*__pycache__' -prune -exec rm -rf {} \;
|