Skip to content

Commit

Permalink
Fix print out of URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
chainchad committed Feb 5, 2024
1 parent c2e0db3 commit f90a507
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion charts/chainlink-cluster/devspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ pipelines:
echo "############################################"
echo "Ingress Domains"
echo "############################################"
for ingress in "node1 node2 node3 node4 node5 node6 geth-http geth-ws"; do
ingress_names="node1 node2 node3 node4 node5 node6 geth-http geth-ws"
for ingress in ${ingress_names}; do
echo "https://${DEVSPACE_NAMESPACE}-${ingress}.${DEVSPACE_INGRESS_BASE_DOMAIN}"
done
Expand Down

0 comments on commit f90a507

Please sign in to comment.