You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Cloud Run v1 Multi-Container Example with New Fields (#7971) (#14647)
* cloudrun: Add container name field for Services
Adds the template.spec.containers.name field for specifying container
names in Cloud Run v1 Services.
* cloudrun: Update the description of the Service containers field
Updates the description of the Cloud Run v1 Service field
template.spec.containers to reflect that the field is repeated and to
remove other obsolete information.
* cloudrun: Add empty dir volume type for Services
Adds the beta template.spec.volumes.empty_dir field for configuring
ephemeral volumes in Cloud Run v1 Services.
* cloudrun: Add multi-container Service example
Adds an example google_cloud_run_service resource with multiple
containers and a shared empty dir volume. Container dependencies are
specified as a json encoded annotation.
Signed-off-by: Modular Magician <[email protected]>
Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs).
807
+
Structure is [documented below](#nested_empty_dir).
The medium on which the data is stored. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory.
867
+
868
+
*`size_limit` -
869
+
(Optional)
870
+
Limit on the storage usable by this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. This field's values are of the 'Quantity' k8s type: https://kubernetes.io/docs/reference/kubernetes-api/common-definitions/quantity/. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir.
0 commit comments