Google Cloud Run V2Container Args
A single application container. This specifies both the container to run, the command to run in the container and the arguments to supply to it. Note that additional arguments may be supplied by the system to the container at runtime.
Constructors
Properties
List of environment variables to set in the container.
Periodic probe of container liveness. Container will be restarted if the probe fails.
List of ports to expose from the container. Only a single port can be specified. The specified ports must be listening on all interfaces (0.0.0.0) within the container to be accessible. If omitted, a port number will be chosen and passed to the container through the PORT environment variable for the container to listen on.
Compute Resource requirements by this container.
Startup probe of application within the container. All other probes are disabled if a startup probe is provided, until it succeeds. Container will not be added to service endpoints if the probe fails.
Volume to mount into the container's filesystem.
Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image.