Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions tests/templates/kuttl/external-access/opensearch.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ spec:
# Disable memory mapping in this test; If memory mapping were activated, the kernel setting
# vm.max_map_count would have to be increased to 262144 on the node.
node.store.allow_mmap: "false"
# Disable the disk allocation decider in this test; Otherwise the test depends on the disk
# usage of the node and if the relative watermark set in
# `cluster.routing.allocation.disk.watermark.high` is reached then the security index could
# not be created even if enough disk space would be available.
cluster.routing.allocation.disk.threshold_enabled: "false"
plugins.security.allow_default_init_securityindex: "true"
plugins.security.ssl.transport.enabled: "true"
plugins.security.ssl.transport.pemcert_filepath: {{ test_scenario['values']['opensearch_home'] }}/config/tls/tls.crt
Expand Down
5 changes: 5 additions & 0 deletions tests/templates/kuttl/ldap/21-install-opensearch.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ spec:
# Disable memory mapping in this test; If memory mapping were activated, the kernel setting
# vm.max_map_count would have to be increased to 262144 on the node.
node.store.allow_mmap: "false"
# Disable the disk allocation decider in this test; Otherwise the test depends on the disk
# usage of the node and if the relative watermark set in
# `cluster.routing.allocation.disk.watermark.high` is reached then the security index could
# not be created even if enough disk space would be available.
cluster.routing.allocation.disk.threshold_enabled: "false"
plugins.security.allow_default_init_securityindex: "true"
plugins.security.ssl.transport.enabled: "true"
plugins.security.ssl.transport.pemcert_filepath: {{ test_scenario['values']['opensearch_home'] }}/config/tls/tls.crt
Expand Down
5 changes: 5 additions & 0 deletions tests/templates/kuttl/metrics/20-install-opensearch.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ spec:
# Disable memory mapping in this test; If memory mapping were activated, the kernel setting
# vm.max_map_count would have to be increased to 262144 on the node.
node.store.allow_mmap: "false"
# Disable the disk allocation decider in this test; Otherwise the test depends on the disk
# usage of the node and if the relative watermark set in
# `cluster.routing.allocation.disk.watermark.high` is reached then the security index could
# not be created even if enough disk space would be available.
cluster.routing.allocation.disk.threshold_enabled: "false"
plugins.security.allow_default_init_securityindex: "true"
plugins.security.ssl.transport.enabled: "true"
plugins.security.ssl.transport.pemcert_filepath: {{ test_scenario['values']['opensearch_home'] }}/config/tls/tls.crt
Expand Down
2 changes: 2 additions & 0 deletions tests/templates/kuttl/smoke/10-assert.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ metadata:
data:
opensearch.yml: |-
cluster.name: "opensearch"
cluster.routing.allocation.disk.threshold_enabled: "false"
discovery.type: "zen"
network.host: "0.0.0.0"
node.store.allow_mmap: "false"
Expand Down Expand Up @@ -433,6 +434,7 @@ metadata:
data:
opensearch.yml: |-
cluster.name: "opensearch"
cluster.routing.allocation.disk.threshold_enabled: "false"
discovery.type: "zen"
network.host: "0.0.0.0"
node.store.allow_mmap: "false"
Expand Down
5 changes: 5 additions & 0 deletions tests/templates/kuttl/smoke/10-install-opensearch.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ spec:
# Disable memory mapping in this test; If memory mapping were activated, the kernel setting
# vm.max_map_count would have to be increased to 262144 on the node.
node.store.allow_mmap: "false"
# Disable the disk allocation decider in this test; Otherwise the test depends on the disk
# usage of the node and if the relative watermark set in
# `cluster.routing.allocation.disk.watermark.high` is reached then the security index could
# not be created even if enough disk space would be available.
cluster.routing.allocation.disk.threshold_enabled: "false"
plugins.security.allow_default_init_securityindex: "true"
plugins.security.ssl.transport.enabled: "true"
plugins.security.ssl.transport.pemcert_filepath: {{ test_scenario['values']['opensearch_home'] }}/config/tls/tls.crt
Expand Down
Loading