Skip to content

Commit bc2bcb7

Browse files
markgoddardseunghun1ee
authored andcommitted
Merge pull request #844 from stackhpc/yoga-opensearch-pin
use ark repos for R9 opensearch builds
1 parent 3f92251 commit bc2bcb7

File tree

6 files changed

+31
-0
lines changed

6 files changed

+31
-0
lines changed

etc/kayobe/environments/ci-builder/stackhpc-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ stackhpc_repo_rhel_9_treasuredata_4_version: "{{ stackhpc_pulp_repo_rhel_9_treas
8080
stackhpc_repo_rhel_9_mariadb_10_6_version: "{{ stackhpc_pulp_repo_rhel_9_mariadb_10_6_version }}"
8181
stackhpc_repo_rhel_9_influxdb_version: "{{ stackhpc_pulp_repo_rhel_9_influxdb_version }}"
8282
stackhpc_repo_epel_9_version: "{{ stackhpc_pulp_repo_epel_9_version }}"
83+
stackhpc_repo_opensearch_2_x_version: "{{ stackhpc_pulp_repo_opensearch_2_x_version }}"
84+
stackhpc_repo_opensearch_dashboards_2_x_version: "{{ stackhpc_pulp_repo_opensearch_dashboards_2_x_version }}"
8385
## Use derived vars from etc/kayobe/pulp.yml to switch between
8486
## minor Rocky versions using stackhpc_pulp_repo_rocky_x_minor_version
8587
stackhpc_repo_rocky_baseos_version: "{{ stackhpc_pulp_repo_rocky_8_baseos_version }}"

etc/kayobe/kolla.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,12 @@ stackhpc_rocky_9_third_party_repos:
268268
- url: "{{ stackhpc_repo_rabbitmq_server_url }}"
269269
file: "rabbitmq_rabbitmq-server.repo"
270270
tag: "rabbitmq_rabbitmq-server"
271+
- url: "{{ stackhpc_repo_opensearch_2_x_url }}"
272+
file: "opensearch.repo"
273+
tag: "opensearch-2.x"
274+
- url: "{{ stackhpc_repo_opensearch_dashboards_2_x_url }}"
275+
file: "opensearch.repo"
276+
tag: "opensearch-dashboards-2.x"
271277

272278
# List of EPEL 9
273279
stackhpc_epel_9_repos:

etc/kayobe/kolla/globals.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ kayobe_image_tags:
3131
cloudkitty_tag: "{% raw %}{{ kayobe_image_tags['cloudkitty'][kolla_base_distro] }}{% endraw %}"
3232
nova_tag: "{% raw %}{{ kayobe_image_tags['nova'][kolla_base_distro] }}{% endraw %}"
3333
neutron_tag: "{% raw %}{{ kayobe_image_tags['neutron'][kolla_base_distro] }}{% endraw %}"
34+
opensearch_tag: yoga-20231219T221916
3435

3536
# These overrides are currently redundant, but are kept because it's not obvious that you need them if setting haproxy_tag
3637
glance_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"

etc/kayobe/pulp-repo-versions.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ stackhpc_pulp_repo_epel_version: 20231218T002857
2626
stackhpc_pulp_repo_grafana_version: 20231217T003113
2727
stackhpc_pulp_repo_mariadb_10_6_centos8_version: 20231115T032622
2828
stackhpc_pulp_repo_mlnx_ofed_5_7_1_0_2_0_rhel8_6_version: 20220920T151419
29+
stackhpc_pulp_repo_opensearch_2_x_version: 20231202T013234
30+
stackhpc_pulp_repo_opensearch_dashboards_2_x_version: 20231202T013234
2931
stackhpc_pulp_repo_rabbitmq_erlang_version: 20231214T005538
3032
stackhpc_pulp_repo_rabbitmq_server_version: 20231214T005538
3133
stackhpc_pulp_repo_rhel_9_influxdb_version: 20231215T005810

etc/kayobe/pulp.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,18 @@ stackhpc_pulp_rpm_repos:
500500
base_path: "influxdb/rhel/9/x86_64/stable/"
501501
required: "{{ stackhpc_pulp_sync_for_local_container_build | bool and stackhpc_pulp_sync_el_9 | bool }}"
502502

503+
- name: OpenSearch 2.x
504+
url: "{{ stackhpc_release_pulp_content_url }}/opensearch/2.x/yum/{{ stackhpc_pulp_repo_opensearch_2_x_version }}"
505+
distribution_name: "opensearch-2-x-"
506+
base_path: "opensearch/2.x/yum/"
507+
required: "{{ stackhpc_pulp_sync_for_local_container_build | bool and stackhpc_pulp_sync_el_9 | bool }}"
508+
509+
- name: OpenSearch Dashboards 2.x
510+
url: "{{ stackhpc_release_pulp_content_url }}/opensearch-dashboards/2.x/yum/{{ stackhpc_pulp_repo_opensearch_dashboards_2_x_version }}"
511+
distribution_name: "opensearch-dashboards-2-x-"
512+
base_path: "opensearch-dashboards/2.x/yum/"
513+
required: "{{ stackhpc_pulp_sync_for_local_container_build | bool and stackhpc_pulp_sync_el_9 | bool }}"
514+
503515
# RPM repositories
504516
stackhpc_pulp_repository_rpm_repos: >-
505517
{%- set rpm_repos = [] -%}

etc/kayobe/stackhpc.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,14 @@ stackhpc_repo_rhel_9_mariadb_10_6_version: "{{ stackhpc_repo_distribution }}"
165165
stackhpc_repo_rhel_9_influxdb_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/influxdb/rhel/9/x86_64/stable/{{ stackhpc_repo_rhel_9_influxdb_version }}"
166166
stackhpc_repo_rhel_9_influxdb_version: "{{ stackhpc_repo_distribution }}"
167167

168+
# OpenSearch for RHEL 9
169+
stackhpc_repo_opensearch_2_x_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/opensearch/2.x/yum/{{ stackhpc_repo_opensearch_2_x_version }}"
170+
stackhpc_repo_opensearch_2_x_version: "{{ stackhpc_repo_distribution }}"
171+
172+
# OpenSearch Dashboards for RHEL 9
173+
stackhpc_repo_opensearch_dashboards_2_x_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/opensearch-dashboards/2.x/yum/{{ stackhpc_repo_opensearch_dashboards_2_x_version }}"
174+
stackhpc_repo_opensearch_dashboards_2_x_version: "{{ stackhpc_repo_distribution }}"
175+
168176
# Rocky 9 AppStream
169177
stackhpc_repo_rocky_9_appstream_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/rocky/{{ stackhpc_rocky_9_url_version }}/AppStream/x86_64/os/{{ stackhpc_repo_rocky_9_appstream_version }}"
170178
stackhpc_repo_rocky_9_appstream_version: "{{ stackhpc_repo_distribution }}"

0 commit comments

Comments
 (0)