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-image-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ kolla_image_tags:
openstack:
rocky-9: 2025.1-rocky-9-20250730T105631
ubuntu-noble: 2025.1-ubuntu-noble-20250730T105631
grafana:
rocky-9: 2025.1-rocky-9-20250916T101619
ubuntu-noble: 2025.1-ubuntu-noble-20250916T101619
keystone:
rocky-9: 2025.1-rocky-9-20250805T134044
ubuntu-noble: 2025.1-ubuntu-noble-20250805T134044
Expand Down
5 changes: 2 additions & 3 deletions etc/kayobe/kolla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,6 @@ kolla_build_blocks:
bifrost_base_header: |
ADD additions-archive /
ENV TOX_CONSTRAINTS_FILE=/requirements/upper-constraints.txt
grafana_plugins_install: |
RUN grafana-cli plugins install vonage-status-panel \
&& grafana-cli plugins install grafana-opensearch-datasource
ironic_inspector_header: |
ADD additions-archive /

Expand All @@ -364,6 +361,8 @@ kolla_build_blocks:
kolla_build_customizations_common:
bifrost_base_pip_packages_append:
- /additions/*
grafana_plugins_append:
- vonage-status-panel
ironic_inspector_pip_packages_append:
- /additions/*
magnum_base_pip_packages_override:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
features:
- |
New logic for installing grafana plugins. When building you can pass a
variable ``grafana_plugins_append`` that contains a list of plugins you
want to install. This will be appended to the default list of plugins. The
existing method of overwriting the ``grafana_plugins_install`` block still
works.
Loading