Skip to content

Commit d814b86

Browse files
committed
fix(workflow): update admin password handling
Changed the workflow to modify the initial admin password instead of just retrieving it. Updated integration test command by removing unnecessary docker network option. Adjusted test task to include authentication details for status check.
1 parent 36d94d5 commit d814b86

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/test-module.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -146,16 +146,16 @@ jobs:
146146
run: |
147147
timeout 300 bash -c 'until curl -f http://localhost:8081/service/rest/v1/status; do sleep 5; done'
148148
149-
- name: Get initial admin password
149+
- name: Change initial admin password
150150
run: |
151151
ADMIN_PASS=$(docker exec $(docker ps -q) cat /nexus-data/admin.password)
152-
echo "NEXUS_ADMIN_PASSWORD=${ADMIN_PASS}" >> $GITHUB_ENV
153-
152+
curl -u admin:$ADMIN_PASS -X PUT -H "Content-Type: application/json" -d '{"changeme"}' http://localhost:8081/service/rest/v1/security/users/admin/change-password
153+
154154
- name: Run integration tests
155155
run: |
156156
cd /home/runner/.ansible/collections/ansible_collections/cloudkrafter/nexus
157157
echo "NEXUS_ADMIN_PASSWORD=${{ env.NEXUS_ADMIN_PASSWORD }}"
158-
ansible-test integration raw_component --docker default --coverage --docker-network nexus --continue-on-error -v
158+
ansible-test integration raw_component --docker default --coverage --continue-on-error -v
159159
env:
160160
PY_COLORS: '1'
161161
ANSIBLE_FORCE_COLOR: '1'

tests/integration/targets/raw_component/tasks/main.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
# get info from http://localhost:8081/service/rest/v1/status
21
- name: get info
32
uri:
4-
url: http://localhost:8081/service/rest/v1/status
3+
url: http://localhost:8081/service/rest/v1/status/check
54
method: GET
65
return_content: yes
6+
url_username: admin
7+
url_password: changeme
8+
validate_certs: no
79
register: nexus_info
810

911
- name: debug

0 commit comments

Comments
 (0)