File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
deployer-image/marketplace/manifests Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1313 type: terraform-runner
1414 version: "1.0.2"
1515 notes: |-
16- The IP address of the proxy-ingress service is:
17- $(kubectl get ing proxy-ingress -n stackgen -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
16+ # This command retrieves the IP address of the proxy-ingress service in the 'stackgen' namespace.
17+ # It uses kubectl to get the load balancer ingress IP and then constructs the URL.
18+ # The IP is dynamically fetched, so it can be used in any further configuration or access.
19+
20+ SERVICE_IP=$(kubectl get ing proxy-ingress -n stackgen -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
21+
22+ # Output the complete URL for accessing the service.
23+ echo "https://${SERVICE_IP}/"
1824 selector:
1925 matchLabels:
2026 app.kubernetes.io/name: "$name"
You can’t perform that action at this time.
0 commit comments