KubernetesNodeProperties
Name | Type | Description | Notes |
---|---|---|---|
name | String | A Kubernetes node name. | |
public_ip | String | A valid public IP. | [optional] |
private_ip | String | A valid private IP. | [optional] |
k8s_version | String | The Kubernetes version the nodepool is running. This imposes restrictions on what Kubernetes versions can be run in a cluster's nodepools. Additionally, not all Kubernetes versions are viable upgrade targets for all prior versions. | |
require 'ionoscloud'
instance = Ionoscloud::KubernetesNodeProperties.new(
name: k8s-node,
public_ip: 192.168.23.2,
private_ip: 192.168.23.2,
k8s_version: 1.15.4
)
Last modified 11mo ago