-
Notifications
You must be signed in to change notification settings - Fork 81
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
Addresses changes made to security demo config install tool #233
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ export PATH=$BUILD_DIR/gradle/bin:$PATH | |
SERVICE_URL="http://integration:9200" | ||
|
||
if [[ "$SECURE_INTEGRATION" == "true" ]]; then | ||
SERVICE_URL="https://integration:9200 -k -u admin:admin" | ||
SERVICE_URL="https://integration:9200 -k -u admin:myStrongPassword123!" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You could set this to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i don't think that is the root-cause of failures but I maybe wrong here. |
||
fi | ||
|
||
wait_for_es() { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we change this to
admin
, then we can useadmin
below and it should work for older versions of OpenSearch. Can we make that change?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it work for 2.12 and later? If not and you think this PR is not required until 2.12 we can mark it as draft
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also,
admin
is recognized as weak password and so the setup would fail. Hence we defined a new password with relatively strong valuemyStrongPassword123!