Skip to content

Commit e2a2618

Browse files
committed
Fix Zed-specific changes
This commit includes two fixes. The first swaps instances of es_heap_size with opensearch_heap_size. The second removes kolla_base_distro from name of containers in the local pulp repository. Reverted changes to docs for wazuh/opensearch integration.
1 parent b366f29 commit e2a2618

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

doc/source/configuration/wazuh.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Optional: define LVM volumes ``etc/kayobe/inventory/group_vars/wazuh-manager/lvm
7373
size: "100%VG"
7474
filesystem: "ext4"
7575
mount: true
76-
mntp: “/var/lib/opensearch
76+
mntp: “/var/lib/elasticsearch
7777
create: true
7878
7979

etc/kayobe/environments/aufn-ceph/kolla/globals.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ cinder_backend_ceph: "yes"
1313
nova_backend_ceph: "yes"
1414

1515
# Opensearch memory tuning
16-
es_heap_size: 1g
16+
opensearch_heap_size: 1g

etc/kayobe/environments/ci-aio/kolla/globals.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ docker_yum_baseurl: "{{ stackhpc_repo_docker_url }}"
1313
docker_yum_gpgkey: "https://download.docker.com/linux/centos/gpg"
1414

1515
# Opensearch memory tuning
16-
es_heap_size: 1g
16+
opensearch_heap_size: 1g
1717

1818
# Increase Grafana timeout
1919
grafana_start_first_node_retries: 20

etc/kayobe/environments/ci-multinode/kolla/globals.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ neutron_bridge_name: "{{ vxlan_interfaces[0].device }}-ovs"
1616
neutron_external_interface: "{{ vxlan_interfaces[0].device }}"
1717

1818
# Opensearch memory tuning
19-
es_heap_size: 1g
19+
opensearch_heap_size: 1g
2020

2121
# Octavia load balancer configuration
2222
octavia_auto_configure: "no"

etc/kayobe/kolla/globals.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ om_enable_rabbitmq_high_availability: true
6969
#############################################################################
7070
# Monitoring and alerting related settings
7171

72-
es_heap_size: 8g
72+
opensearch_heap_size: 8g
7373
prometheus_cmdline_extras: "--storage.tsdb.retention.time=30d"
7474

7575
# Additional command line flags for node exporter to enable texfile collector for disk metrics and create textfile docker volume

etc/kayobe/pulp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ stackhpc_pulp_repository_container_repos_kolla: >-
11431143
{%- set repos = [] -%}
11441144
{%- for image in stackhpc_pulp_images_kolla_filtered -%}
11451145
{%- if image not in stackhpc_kolla_unbuildable_images[kolla_base_distro]-%}
1146-
{%- set image_repo = kolla_docker_namespace ~ "/" ~ kolla_base_distro ~ "-" ~ image -%}
1146+
{%- set image_repo = kolla_docker_namespace ~ "/" ~ image -%}
11471147
{%- set repo = {"name": image_repo} -%}
11481148
{%- set _ = repos.append(stackhpc_pulp_repository_container_repos_kolla_common | combine(repo)) -%}
11491149
{%- endif -%}
@@ -1160,7 +1160,7 @@ stackhpc_pulp_distribution_container_kolla: >-
11601160
{%- set distributions = [] -%}
11611161
{%- for image in stackhpc_pulp_images_kolla_filtered -%}
11621162
{%- if image not in stackhpc_kolla_unbuildable_images[kolla_base_distro]-%}
1163-
{%- set image_repo = kolla_docker_namespace ~ "/" ~ kolla_base_distro ~ "-" ~ image -%}
1163+
{%- set image_repo = kolla_docker_namespace ~ "/" ~ image -%}
11641164
{%- set distribution = {"name": image_repo, "repository": image_repo, "base_path": image_repo} -%}
11651165
{%- set _ = distributions.append(stackhpc_pulp_distribution_container_kolla_common | combine(distribution)) -%}
11661166
{%- endif -%}

0 commit comments

Comments
 (0)