Skip to content

Commit a35b59d

Browse files
committed
added logo and notes
1 parent a131a33 commit a35b59d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

deployer-image/marketplace/manifests/application.yaml.template

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@ spec:
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"

0 commit comments

Comments
 (0)