You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.7 KiB

  1. # Use imutable image tags rather than mutable tags (like ubuntu:22.04)
  2. FROM ubuntu:jammy-20230308
  3. # Some tools like yamllint need this
  4. # Pip needs this as well at the moment to install ansible
  5. # (and potentially other packages)
  6. # See: https://github.com/pypa/pip/issues/10219
  7. ENV VAGRANT_VERSION=2.3.4 \
  8. VAGRANT_DEFAULT_PROVIDER=libvirt \
  9. VAGRANT_ANSIBLE_TAGS=facts \
  10. LANG=C.UTF-8 \
  11. DEBIAN_FRONTEND=noninteractive \
  12. PYTHONDONTWRITEBYTECODE=1
  13. RUN apt update -q \
  14. && apt install -yq \
  15. libssl-dev \
  16. python3-dev \
  17. python3-pip \
  18. sshpass \
  19. apt-transport-https \
  20. jq \
  21. moreutils \
  22. libvirt-dev \
  23. openssh-client \
  24. rsync \
  25. git \
  26. ca-certificates \
  27. curl \
  28. gnupg2 \
  29. software-properties-common \
  30. unzip \
  31. libvirt-clients \
  32. && curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
  33. && add-apt-repository "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" \
  34. && apt update -q \
  35. && apt install --no-install-recommends -yq docker-ce \
  36. && apt autoremove -yqq --purge && apt clean && rm -rf /var/lib/apt/lists/* /var/log/*
  37. WORKDIR /kubespray
  38. RUN --mount=type=bind,target=./requirements.txt,src=./requirements.txt \
  39. --mount=type=bind,target=./tests/requirements.txt,src=./tests/requirements.txt \
  40. --mount=type=bind,target=./roles/kubespray-defaults/defaults/main/main.yml,src=./roles/kubespray-defaults/defaults/main/main.yml \
  41. update-alternatives --install /usr/bin/python python /usr/bin/python3 1 \
  42. && pip install --no-compile --no-cache-dir pip -U \
  43. && pip install --no-compile --no-cache-dir -r tests/requirements.txt \
  44. && KUBE_VERSION=$(sed -n 's/^kube_version: //p' roles/kubespray-defaults/defaults/main/main.yml) \
  45. && curl -L https://dl.k8s.io/release/$KUBE_VERSION/bin/linux/$(dpkg --print-architecture)/kubectl -o /usr/local/bin/kubectl \
  46. && echo $(curl -L https://dl.k8s.io/release/$KUBE_VERSION/bin/linux/$(dpkg --print-architecture)/kubectl.sha256) /usr/local/bin/kubectl | sha256sum --check \
  47. && chmod a+x /usr/local/bin/kubectl \
  48. # Install Vagrant
  49. && curl -LO https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}-1_$(dpkg --print-architecture).deb \
  50. && dpkg -i vagrant_${VAGRANT_VERSION}-1_$(dpkg --print-architecture).deb \
  51. && rm vagrant_${VAGRANT_VERSION}-1_$(dpkg --print-architecture).deb \
  52. && vagrant plugin install vagrant-libvirt \
  53. # Install Kubernetes collections
  54. && pip install --no-compile --no-cache-dir kubernetes \
  55. && ansible-galaxy collection install kubernetes.core