Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

23 行
1.3 KiB

  1. ---
  2. # Helper container images the scenarios use for probing. Here rather than inline in each
  3. # verify.yml, so there is one pin per image instead of one per role, and so Renovate can see
  4. # them. See the customManager in .github/renovate.json.
  5. # Used to reach a role's container over its own container network, because the role publishes
  6. # no host port - exactly as in a real deployment. Publishing one for the test would collide
  7. # between scenarios running in parallel.
  8. # renovate: datasource=docker depName=docker.io/curlimages/curl
  9. molecule_shared_image_curl: "docker.io/curlimages/curl:8.11.1"
  10. # Used for small stub services (a fake homeserver, and so on).
  11. # renovate: datasource=docker depName=docker.io/library/python
  12. molecule_shared_image_python: "docker.io/library/python:3.13-alpine"
  13. # Postgres for scenarios whose role has a database. Pinned at the major the postgres role
  14. # deploys to new installations, and left to Renovate from there: when a new major lands,
  15. # the PR bumping this pin runs every scenario against it, which is the earliest warning we
  16. # get that a component does not cope. Users who upgrade Postgres promptly are on that major
  17. # well before the postgres role makes it the default for new installations.
  18. # renovate: datasource=docker depName=docker.io/library/postgres
  19. molecule_shared_image_postgres: "docker.io/library/postgres:18.6-alpine"