-
Notifications
You must be signed in to change notification settings - Fork 612
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Backport stable/operate-8.5] feat: allow for disabling cluster health checks #23372
Merged
kristinkomschow
merged 4 commits into
stable/operate-8.5
from
backport-23218-to-stable/operate-8.5
Oct 17, 2024
Merged
[Backport stable/operate-8.5] feat: allow for disabling cluster health checks #23372
kristinkomschow
merged 4 commits into
stable/operate-8.5
from
backport-23218-to-stable/operate-8.5
Oct 17, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please cherry-pick the changes locally and resolve any conflicts. git fetch origin backport-23218-to-stable/operate-8.5
git worktree add --checkout .worktree/backport-23218-to-stable/operate-8.5 backport-23218-to-stable/operate-8.5
cd .worktree/backport-23218-to-stable/operate-8.5
git reset --hard HEAD^
git cherry-pick -x 1f50069dd83dfde85a6b6fa1241e60bf32101363 5fa1e3aa734d09ddf0f263f07c5609ccb3f739ba 93f7fdb43950cf0194763bfb90d3716f93abbb3e 1555c026587d4574df63cf553f2909ab82733a0b
git push --force-with-lease |
3 tasks
github-actions
bot
added
the
component/operate
Related to the Operate component/team
label
Oct 11, 2024
- added property camunda.operate.healthCheck.enabled with default 'true' - added checks to not perform health checks on clusters when that property is false in IndicesHealthIndicator, ElasticsearchConnector and OpensearchConnector (cherry picked from commit 1f50069) # Conflicts: # operate/common/src/main/java/io/camunda/operate/connect/ElasticsearchConnector.java # operate/common/src/main/java/io/camunda/operate/connect/OpensearchConnector.java
kristinkomschow
force-pushed
the
backport-23218-to-stable/operate-8.5
branch
from
October 11, 2024 12:48
2c59a8b
to
2bb9995
Compare
(cherry picked from commit 5fa1e3a)
kristinkomschow
force-pushed
the
backport-23218-to-stable/operate-8.5
branch
from
October 14, 2024 07:08
2bb9995
to
cf890f3
Compare
for elasticsearch and opensearch connector (cherry picked from commit 93f7fdb) # Conflicts: # operate/common/src/test/java/io/camunda/operate/connect/ElasticsearchConnectorTest.java # operate/common/src/test/java/io/camunda/operate/connect/OpensearchConnectorTest.java
…roperties to better reflect that health check is turned off for ES/OS, not Operate itself (cherry picked from commit 1555c02) # Conflicts: # operate/common/src/main/java/io/camunda/operate/connect/OpensearchConnector.java
kristinkomschow
force-pushed
the
backport-23218-to-stable/operate-8.5
branch
from
October 14, 2024 08:19
cf890f3
to
1075a38
Compare
ralfpuchert
approved these changes
Oct 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Backport of #23218 to
stable/operate-8.5
.relates to #22918
original author: @kristinkomschow