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.

60 lines
2.5 KiB

Automatically derive defaults versions from checksums (#11906) * Automatically derive defaults versions from checksums Currently, when updating checksums, we manually update the default versions. However, AFAICT, for all components where we have checksums, we're using the newest version out of those checksums. Codify this in the `_version` defaults variables definition to make the process automatic and reduce manual steps (as well as the diff size during reviews). We assume the versions are sorted, with newest first. This should be guaranteed by the pre-commit hooks. * Validate checksums are ordered by versions, newest first * Generalize render-readme-versions hook for other static files The pre-commit hook introduced a142f40e2 (Update versions in README.md with pre-commit, 2025-01-21) allow to update our README with new versions. It turns out other "static" files (== which don't interpret Ansible variables) also use the default version (in that case, our Dockefiles, but there might be others) The Dockerfile breaks if the variable they use (`kube_version`) is a Jinja template. For helping with automatic version upgrade, generalize the hook to deal with other static files, and make a template out of the Dockerfile. * Dockerfile: template kube_version with pre-commit instead of runtime * Validate all versions/checksums are strings in pre-commit All the ansible/python tooling for version is for version strings. YAML unhelpfully consider some stuff as number, so enforce this. * Stringify checksums versions
1 week ago
  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.4.1 \
  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. qemu-utils \
  33. qemu-kvm \
  34. dnsmasq \
  35. && curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
  36. && add-apt-repository "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" \
  37. && apt update -q \
  38. && apt install --no-install-recommends -yq docker-ce \
  39. && apt autoremove -yqq --purge && apt clean && rm -rf /var/lib/apt/lists/* /var/log/*
  40. WORKDIR /kubespray
  41. ADD ./requirements.txt /kubespray/requirements.txt
  42. ADD ./tests/requirements.txt /kubespray/tests/requirements.txt
  43. RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1 \
  44. && pip install --no-compile --no-cache-dir pip -U \
  45. && pip install --no-compile --no-cache-dir -r tests/requirements.txt \
  46. && pip install --no-compile --no-cache-dir -r requirements.txt \
  47. && curl -L https://dl.k8s.io/release/{{ kube_version }}/bin/linux/$(dpkg --print-architecture)/kubectl -o /usr/local/bin/kubectl \
  48. && echo $(curl -L https://dl.k8s.io/release/{{ kube_version }}/bin/linux/$(dpkg --print-architecture)/kubectl.sha256) /usr/local/bin/kubectl | sha256sum --check \
  49. && chmod a+x /usr/local/bin/kubectl \
  50. # Install Vagrant
  51. && curl -LO https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}-1_$(dpkg --print-architecture).deb \
  52. && dpkg -i vagrant_${VAGRANT_VERSION}-1_$(dpkg --print-architecture).deb \
  53. && rm vagrant_${VAGRANT_VERSION}-1_$(dpkg --print-architecture).deb \
  54. && vagrant plugin install vagrant-libvirt \
  55. # Install Kubernetes collections
  56. && pip install --no-compile --no-cache-dir kubernetes \
  57. && ansible-galaxy collection install kubernetes.core