Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions etc/kayobe/kolla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,9 @@ stackhpc_rocky_9_third_party_repos:
- url: "{{ stackhpc_repo_almalinux_9_proxysql_2_7_url }}"
file: "proxysql.repo"
tag: "proxysql"
- url: "{{ stackhpc_repo_centos_stream_9_docker_url }}"
file: "docker-ce.repo"
tag: docker-ce

# List of EPEL 9
stackhpc_epel_9_repos:
Expand Down
145 changes: 145 additions & 0 deletions etc/kayobe/kolla/repos.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
---
ubuntu:
docker-ce:
url: "{{ stackhpc_repo_docker_ce_ubuntu_noble_url }}"
suite: "noble"
component: "stable"
gpg_key: "docker-ce.asc"
erlang:
url: "https://ppa.launchpadcontent.net/rabbitmq/rabbitmq-erlang/ubuntu"
suite: "noble"
component: "main"
gpg_key: "erlang-ppa.gpg"
fluentd:
url: "https://packages.treasuredata.com/lts/5/ubuntu/noble/"
suite: "noble"
component: "contrib"
gpg_key: "treasuredata.asc"
grafana:
url: "https://apt.grafana.com"
suite: "stable"
component: "main"
gpg_key: "grafana.asc"
influxdb:
url: "https://repos.influxdata.com/ubuntu"
# TODO(mnasiadka): Switch to noble when available
suite: "jammy"
component: "stable"
gpg_key: "influxdb.asc"
mariadb:
url: "https://dlm.mariadb.com/repo/mariadb-server/10.11/repo/ubuntu"
suite: "noble"
component: "main"
gpg_key: "mariadb.gpg"
opensearch:
url: "https://artifacts.opensearch.org/releases/bundle/opensearch/3.x/apt/"
suite: "stable"
component: "main"
gpg_key: "opensearch.asc"
opensearch-dashboards:
url: "https://artifacts.opensearch.org/releases/bundle/opensearch-dashboards/3.x/apt/"
suite: "stable"
component: "main"
gpg_key: "opensearch.asc"
proxysql:
url: "https://repo.proxysql.com/ProxySQL/proxysql-3.0.x/noble/"
suite: "./"
component: ""
gpg_key: "proxysql.asc"
rabbitmq:
url: "https://ppa1.rabbitmq.com/rabbitmq/rabbitmq-server/deb/ubuntu"
suite: "noble"
component: "main"
gpg_key: "rabbitmq.gpg"

ubuntu-aarch64:
docker-ce:
url: "{{ stackhpc_repo_docker_ce_ubuntu_noble_url }}"
suite: "noble"
component: "stable"
gpg_key: "docker-ce.asc"
erlang:
url: "https://ppa.launchpadcontent.net/rabbitmq/rabbitmq-erlang/ubuntu"
suite: "noble"
component: "main"
gpg_key: "erlang-ppa.gpg"
fluentd:
url: "https://packages.treasuredata.com/lts/5/ubuntu/noble/"
suite: "noble"
component: "contrib"
gpg_key: "treasuredata.asc"
grafana:
url: "https://apt.grafana.com"
suite: "stable"
component: "main"
gpg_key: "grafana.asc"
influxdb:
url: "https://repos.influxdata.com/ubuntu"
# TODO(mnasiadka): Switch to noble when available
suite: "jammy"
component: "stable"
gpg_key: "influxdb.asc"
mariadb:
url: "https://dlm.mariadb.com/repo/mariadb-server/10.11/repo/ubuntu"
suite: "noble"
component: "main"
gpg_key: "mariadb.gpg"
opensearch:
url: "https://artifacts.opensearch.org/releases/bundle/opensearch/3.x/apt/"
suite: "stable"
component: "main"
gpg_key: "opensearch.asc"
opensearch-dashboards:
url: "https://artifacts.opensearch.org/releases/bundle/opensearch-dashboards/3.x/apt/"
suite: "stable"
component: "main"
gpg_key: "opensearch.asc"
proxysql:
url: "https://repo.proxysql.com/ProxySQL/proxysql-3.0.x/noble/"
suite: "./"
component: ""
gpg_key: "proxysql.asc"
rabbitmq:
url: "https://ppa1.rabbitmq.com/rabbitmq/rabbitmq-server/deb/ubuntu"
suite: "noble"
component: "main"
arch: "amd64"
gpg_key: "rabbitmq.gpg"

rocky:
ceph: "centos-ceph-reef"
crb: "crb"
docker-ce: "docker-ce"
epel: "epel"
erlang: "rabbitmq_rabbitmq-erlang"
extras: "extras"
fluentd: "fluent-package-lts"
grafana: "grafana"
hacluster: "highavailability"
influxdb: "influxdb"
mariadb: "mariadb"
opensearch: "opensearch-3.x"
opensearch-dashboards: "opensearch-dashboards-3.x"
openvswitch: "centos-nfv-openvswitch"
opstools: "centos-opstools"
proxysql: "proxysql"
rabbitmq: "rabbitmq_rabbitmq-server"

rocky-aarch64:
ceph: "centos-ceph-reef"
crb: "crb"
docker-ce: "docker-ce"
epel: "epel"
erlang: "copr-rabbitmq-erlang"
extras: "extras"
fluentd: "fluent-package-lts"
grafana: "grafana"
influxdb: "influxdb"
hacluster: "highavailability"
mariadb: "mariadb"
opensearch: "opensearch-3.x"
opensearch-dashboards: "opensearch-dashboards-3.x"
openvswitch: "centos-nfv-openvswitch"
opstools: "centos-opstools"
proxysql: "proxysql"
rabbitmq: "rabbitmq_rabbitmq-server"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
features:
- |
Docker CE repositories used during Kolla container image builds are now
served from the Ark Pulp mirror for both Ubuntu Noble and Rocky 9. The
Ubuntu repository is configured via ``etc/kayobe/kolla/repos.yaml`` and
the Rocky one via ``stackhpc_rocky_9_third_party_repos`` in
``etc/kayobe/kolla.yml``.
Loading