run

    Start a hazelcast pod and let the container expose port 5701

      Start a hazelcast pod and set environment variables “DNS_DOMAIN=cluster” and “POD_NAMESPACE=default” in the container

      1. kubectl run hazelcast --image=hazelcast/hazelcast --env="DNS_DOMAIN=cluster" --env="POD_NAMESPACE=default"

      Dry run; print the corresponding API objects without creating them

      Start a nginx pod, but overload the spec with a partial set of values parsed from JSON

        Start the nginx pod using the default command, but use custom arguments (arg1 .. argN) for that command

        Start the nginx pod using a different command and custom arguments

        1. kubectl run nginx --image=nginx --command -- <cmd> <arg1> ... <argN>

        Flags