Class: Google::Cloud::Container::V1::GPUDriverInstallationConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/container/v1/cluster_service.rb

Overview

GPUDriverInstallationConfig specifies the version of GPU driver to be auto installed.

Defined Under Namespace

Modules: GPUDriverVersion

Instance Attribute Summary collapse

Instance Attribute Details

#gpu_driver_version::Google::Cloud::Container::V1::GPUDriverInstallationConfig::GPUDriverVersion

Returns Mode for how the GPU driver is installed.

Returns:



4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
# File 'proto_docs/google/container/v1/cluster_service.rb', line 4033

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