Class: Google::Cloud::Container::V1beta1::PrivilegedAdmissionConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::PrivilegedAdmissionConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
PrivilegedAdmissionConfig stores the list of authorized allowlist paths for the cluster.
Instance Attribute Summary collapse
-
#allowlist_paths ⇒ ::Array<::String>
The customer allowlist Cloud Storage paths for the cluster.
Instance Attribute Details
#allowlist_paths ⇒ ::Array<::String>
Returns The customer allowlist Cloud Storage paths for the cluster. These paths are
used with the --autopilot-privileged-admission flag to authorize
privileged workloads in Autopilot clusters.
Paths can be GKE-owned, in the format
gke://<partner_name>/<app_name>/<allowlist_path>, or customer-owned, in
the format gs://<bucket_name>/<allowlist_path>.
Wildcards (*) are supported to authorize all allowlists under specific
paths or directories. Example: gs://my-bucket/* will authorize all
allowlists under the my-bucket bucket.
7128 7129 7130 7131 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 7128 class PrivilegedAdmissionConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |