Skip to content

Commit

Permalink
Add protocol and port
Browse files Browse the repository at this point in the history
  • Loading branch information
vcerenu committed Nov 8, 2024
1 parent e6dee26 commit 1b01a19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deployment-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ jobs:

- name: Save URLs for each component
run: |
echo "DASHBOARD_URL=$(kubectl get service dashboard -n wazuh -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')" >> $GITHUB_ENV
echo "INDEXER_URL=$(kubectl get service indexer -n wazuh -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')" >> $GITHUB_ENV
echo "MANAGER_URL=$(kubectl get service wazuh -n wazuh -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')" >> $GITHUB_ENV
echo 'DASHBOARD_URL=https://"$(kubectl get service dashboard -n wazuh -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')"' >> $GITHUB_ENV
echo 'INDEXER_URL=https://"$(kubectl get service indexer -n wazuh -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')":9200' >> $GITHUB_ENV
echo 'MANAGER_URL=https://"$(kubectl get service wazuh -n wazuh -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')":55000' >> $GITHUB_ENV
- name: Check Wazuh indexer start
run: |
Expand Down

0 comments on commit 1b01a19

Please sign in to comment.