Class: Google::Apis::RunV1::RevisionSpec
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::RevisionSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
RevisionSpec holds the desired state of the Revision (from the client).
Instance Attribute Summary collapse
-
#container_concurrency ⇒ Fixnum
ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container instance of the Revision.
-
#containers ⇒ Array<Google::Apis::RunV1::Container>
Containers holds the single container that defines the unit of execution for this Revision.
-
#enable_service_links ⇒ Boolean
(also: #enable_service_links?)
Indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.
-
#image_pull_secrets ⇒ Array<Google::Apis::RunV1::LocalObjectReference>
ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount.
-
#service_account_name ⇒ String
Email address of the IAM service account associated with the revision of the service.
-
#timeout_seconds ⇒ Fixnum
TimeoutSeconds holds the max duration the instance is allowed for responding to a request.
-
#volumes ⇒ Array<Google::Apis::RunV1::Volume>
Corresponds to the JSON property
volumes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RevisionSpec
constructor
A new instance of RevisionSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RevisionSpec
Returns a new instance of RevisionSpec.
2091 2092 2093 |
# File 'lib/google/apis/run_v1/classes.rb', line 2091 def initialize(**args) update!(**args) end |
Instance Attribute Details
#container_concurrency ⇒ Fixnum
ContainerConcurrency specifies the maximum allowed in-flight (concurrent)
requests per container instance of the Revision. Cloud Run fully managed:
supported, defaults to 80 Cloud Run for Anthos: supported, defaults to 0,
which means concurrency to the application is not limited, and the system
decides the target concurrency for the autoscaler.
Corresponds to the JSON property containerConcurrency
2039 2040 2041 |
# File 'lib/google/apis/run_v1/classes.rb', line 2039 def container_concurrency @container_concurrency end |
#containers ⇒ Array<Google::Apis::RunV1::Container>
Containers holds the single container that defines the unit of execution for
this Revision. In the context of a Revision, we disallow a number of fields on
this Container, including: name and lifecycle. In Cloud Run, only a single
container may be provided. The runtime contract is documented here: https://
github.com/knative/serving/blob/main/docs/runtime-contract.md
Corresponds to the JSON property containers
2048 2049 2050 |
# File 'lib/google/apis/run_v1/classes.rb', line 2048 def containers @containers end |
#enable_service_links ⇒ Boolean Also known as: enable_service_links?
Indicates whether information about services should be injected into pod's
environment variables, matching the syntax of Docker links. Cloud Run fully
managed: Not supported. Cloud Run for Anthos: supported, defaults to true.
Corresponds to the JSON property enableServiceLinks
2055 2056 2057 |
# File 'lib/google/apis/run_v1/classes.rb', line 2055 def enable_service_links @enable_service_links end |
#image_pull_secrets ⇒ Array<Google::Apis::RunV1::LocalObjectReference>
ImagePullSecrets is a list of references to secrets in the same namespace to
use for pulling any images in pods that reference this ServiceAccount.
ImagePullSecrets are distinct from Secrets because Secrets can be mounted in
the pod, but ImagePullSecrets are only accessed by the kubelet. More info:
https://kubernetes.io/docs/concepts/containers/images/#specifying-
imagepullsecrets-on-a-pod Cloud Run fully managed: Not supported. Cloud Run
for Anthos: supported.
Corresponds to the JSON property imagePullSecrets
2067 2068 2069 |
# File 'lib/google/apis/run_v1/classes.rb', line 2067 def image_pull_secrets @image_pull_secrets end |
#service_account_name ⇒ String
Email address of the IAM service account associated with the revision of the
service. The service account represents the identity of the running revision,
and determines what permissions the revision has. If not provided, the
revision will use the project's default service account.
Corresponds to the JSON property serviceAccountName
2075 2076 2077 |
# File 'lib/google/apis/run_v1/classes.rb', line 2075 def service_account_name @service_account_name end |
#timeout_seconds ⇒ Fixnum
TimeoutSeconds holds the max duration the instance is allowed for responding
to a request. Cloud Run fully managed: defaults to 300 seconds (5 minutes).
Maximum allowed value is 3600 seconds (1 hour). Cloud Run for Anthos: defaults
to 300 seconds (5 minutes). Maximum allowed value is configurable by the
cluster operator.
Corresponds to the JSON property timeoutSeconds
2084 2085 2086 |
# File 'lib/google/apis/run_v1/classes.rb', line 2084 def timeout_seconds @timeout_seconds end |
#volumes ⇒ Array<Google::Apis::RunV1::Volume>
Corresponds to the JSON property volumes
2089 2090 2091 |
# File 'lib/google/apis/run_v1/classes.rb', line 2089 def volumes @volumes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2096 2097 2098 2099 2100 2101 2102 2103 2104 |
# File 'lib/google/apis/run_v1/classes.rb', line 2096 def update!(**args) @container_concurrency = args[:container_concurrency] if args.key?(:container_concurrency) @containers = args[:containers] if args.key?(:containers) @enable_service_links = args[:enable_service_links] if args.key?(:enable_service_links) @image_pull_secrets = args[:image_pull_secrets] if args.key?(:image_pull_secrets) @service_account_name = args[:service_account_name] if args.key?(:service_account_name) @timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds) @volumes = args[:volumes] if args.key?(:volumes) end |