-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI / Build / FIPS] Use xpack.security.experimental.fipsMode.enabled …
…in CI and Docker (#187533) ## Summary Closes #188272 A check was added to in #181187 which detects if the environment has FIPS enabled NodeJS, but Kibana is not setup properly. This adds the Kibana setting for FIPS in CI and the Docker image. Note there are still license issues on some tests due to #181187 as well, but this will be handled in another PR.
- Loading branch information
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ check_for_changed_files() { | |
|
||
SHOULD_AUTO_COMMIT_CHANGES="${2:-}" | ||
CUSTOM_FIX_MESSAGE="${3:-}" | ||
GIT_CHANGES="$(git status --porcelain -- . ':!:.bazelrc' ':!:config/node.options')" | ||
GIT_CHANGES="$(git status --porcelain -- . ':!:.bazelrc' ':!:config/node.options' ':!config/kibana.yml')" | ||
|
||
if [ "$GIT_CHANGES" ]; then | ||
if ! is_auto_commit_disabled && [[ "$SHOULD_AUTO_COMMIT_CHANGES" == "true" && "${BUILDKITE_PULL_REQUEST:-}" ]]; then | ||
|
@@ -56,7 +56,7 @@ check_for_changed_files() { | |
git config --global user.name kibanamachine | ||
git config --global user.email '[email protected]' | ||
gh pr checkout "${BUILDKITE_PULL_REQUEST}" | ||
git add -A -- . ':!.bazelrc' ':!config/node.options' | ||
git add -A -- . ':!.bazelrc' ':!config/node.options' ':!config/kibana.yml' | ||
|
||
git commit -m "$NEW_COMMIT_MESSAGE" | ||
git push | ||
|
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