Skip to content

Commit c6e5fc6

Browse files
Add security plugin changes
Signed-off-by: Prudhvi Godithi <[email protected]>
1 parent d8e81eb commit c6e5fc6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
oss-image: "opensearchproject/opensearch"
3737
OS_IMAGE: "opensearchproject/opensearch:2"
3838
OS_DASHBOARD_IMAGE: "opensearchproject/opensearch-dashboards:2"
39+
OPENSEARCH_INITIAL_ADMIN_PASSWORD: "myStrongPassword123@456"
3940
OPENSEARCH_PREFIX: "plugins.security"
4041
needs: [lint]
4142
name: Test against OS ${{ matrix.os-major-version }} on ${{ matrix.go-version }}/${{ matrix.os }}
@@ -91,13 +92,13 @@ jobs:
9192
- name: Wait for OpenSearch
9293
# ensure that OS has come up and is available
9394
run: |
94-
./script/wait-for-endpoint --timeout=20 http://admin:admin@localhost:9200
95+
./script/wait-for-endpoint --timeout=60 http://admin:myStrongPassword123%40456@localhost:9200
9596
- name: Dump docker logs on failure
9697
if: failure()
9798
uses: jwalton/gh-docker-logs@v2
9899
- name: Run the tests
99100
run: |
100-
export OPENSEARCH_URL=http://admin:admin@localhost:9200
101+
export OPENSEARCH_URL=http://admin:myStrongPassword123%40456@localhost:9200
101102
export TF_LOG=INFO
102103
TF_ACC=1 go test ./... -v -parallel 20 -cover -short
103104
# check goreleaser config for deprecations

0 commit comments

Comments
 (0)