Class: Google::Cloud::Container::V1beta1::GPUDriverInstallationConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::GPUDriverInstallationConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
GPUDriverInstallationConfig specifies the version of GPU driver to be auto installed.
Defined Under Namespace
Modules: GPUDriverVersion
Instance Attribute Summary collapse
-
#gpu_driver_version ⇒ ::Google::Cloud::Container::V1beta1::GPUDriverInstallationConfig::GPUDriverVersion
Mode for how the GPU driver is installed.
Instance Attribute Details
#gpu_driver_version ⇒ ::Google::Cloud::Container::V1beta1::GPUDriverInstallationConfig::GPUDriverVersion
Returns Mode for how the GPU driver is installed.
6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 6678 class GPUDriverInstallationConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The GPU driver version to install. module GPUDriverVersion # Default value is to not install any GPU driver. GPU_DRIVER_VERSION_UNSPECIFIED = 0 # Disable GPU driver auto installation and needs manual installation INSTALLATION_DISABLED = 1 # "Default" GPU driver in COS and Ubuntu. DEFAULT = 2 # "Latest" GPU driver in COS. LATEST = 3 end end |