Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.08 KB

CreateKubernetesClusterRequest.md

File metadata and controls

28 lines (22 loc) · 1.08 KB

VultrRuby::CreateKubernetesClusterRequest

Properties

Name Type Description Notes
label String The label for your Kubernetes cluster. [optional]
region String Region you want to deploy VKE in. See Regions for more information.
version String Version of Kubernetes you want to deploy.
ha_controlplanes Boolean Whether a highly available control planes configuration should be deployed * true * false (default) [optional]
enable_firewall Boolean Whether a Firewall Group should be deployed and managed by this cluster * true * false (default) [optional]
node_pools Array<CreateKubernetesClusterRequestNodePoolsInner> [optional]

Example

require 'vultr_ruby'

instance = VultrRuby::CreateKubernetesClusterRequest.new(
  label: null,
  region: null,
  version: null,
  ha_controlplanes: null,
  enable_firewall: null,
  node_pools: null
)