Unverified Commit 2a629498 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #64181 from stealthybox/kubecuttle_run_help_typo

Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Correct image in `kubectl help run` **What this PR does / why we need it**: Simple typo fix -- image for this hazelcast command example was transposed /w nginx /sig cli /area kubectl /kind cleanup /kind documentation **Release note**: ```release-note NONE ```
parents bc25b1a7 1f12b1cb
...@@ -64,7 +64,7 @@ var ( ...@@ -64,7 +64,7 @@ var (
kubectl run hazelcast --image=hazelcast --env="DNS_DOMAIN=cluster" --env="POD_NAMESPACE=default" kubectl run hazelcast --image=hazelcast --env="DNS_DOMAIN=cluster" --env="POD_NAMESPACE=default"
# Start a single instance of hazelcast and set labels "app=hazelcast" and "env=prod" in the container. # Start a single instance of hazelcast and set labels "app=hazelcast" and "env=prod" in the container.
kubectl run hazelcast --image=nginx --labels="app=hazelcast,env=prod" kubectl run hazelcast --image=hazelcast --labels="app=hazelcast,env=prod"
# Start a replicated instance of nginx. # Start a replicated instance of nginx.
kubectl run nginx --image=nginx --replicas=5 kubectl run nginx --image=nginx --replicas=5
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment