Skip to content

Commit

Permalink
Merge pull request #548 from acend/small-fixes
Browse files Browse the repository at this point in the history
fix scaling
  • Loading branch information
splattner authored Aug 15, 2023
2 parents f610659 + 06346d9 commit 33f6d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/en/docs/scaling/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ while true; do sleep 1; curl -s https://${URL}/pod/; date "+ TIME: %H:%M:%S,%3N"
{{% /onlyWhen %}}
{{% onlyWhenNot openshift %}}
```bash
URL=(kubectl get ingress example-web-app -o go-template="{{ (index .spec.rules 0).host }}" --namespace <namespace>)
URL=$(kubectl get ingress example-web-app -o go-template="{{ (index .spec.rules 0).host }}" --namespace <namespace>)
while true; do sleep 1; curl -s http://${URL}/pod/; date "+ TIME: %H:%M:%S,%3N"; done
```
{{% /onlyWhenNot %}}
Expand Down

0 comments on commit 33f6d41

Please sign in to comment.