1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
package govultr
import (
"context"
"fmt"
"net/http"
"github.com/google/go-querystring/query"
)
const vkePath = "/v2/kubernetes/clusters"
// KubernetesService is the interface to interact with kubernetes endpoint on the Vultr API
// Link : https://www.vultr.com/api/#tag/kubernetes
type KubernetesService interface {
CreateCluster(ctx context.Context, createReq *ClusterReq) (*Cluster, error)
GetCluster(ctx context.Context, id string) (*Cluster, error)
ListClusters(ctx context.Context, options *ListOptions) ([]Cluster, *Meta, error)
UpdateCluster(ctx context.Context, vkeID string, updateReq *ClusterReqUpdate) error
DeleteCluster(ctx context.Context, id string) error
DeleteClusterWithResources(ctx context.Context, id string) error
CreateNodePool(ctx context.Context, vkeID string, nodePoolReq *NodePoolReq) (*NodePool, error)
ListNodePools(ctx context.Context, vkeID string, options *ListOptions) ([]NodePool, *Meta, error)
GetNodePool(ctx context.Context, vkeID, nodePoolID string) (*NodePool, error)
UpdateNodePool(ctx context.Context, vkeID, nodePoolID string, updateReq *NodePoolReqUpdate) (*NodePool, error)
DeleteNodePool(ctx context.Context, vkeID, nodePoolID string) error
DeleteNodePoolInstance(ctx context.Context, vkeID, nodePoolID, nodeID string) error
RecycleNodePoolInstance(ctx context.Context, vkeID, nodePoolID, nodeID string) error
GetKubeConfig(ctx context.Context, vkeID string) (*KubeConfig, error)
GetVersions(ctx context.Context) (*Versions, error)
GetUpgrades(ctx context.Context, vkeID string) ([]string, error)
Upgrade(ctx context.Context, vkeID string, body *ClusterUpgradeReq) error
}
// KubernetesHandler handles interaction with the kubernetes methods for the Vultr API
type KubernetesHandler struct {
client *Client
}
// Cluster represents a full VKE cluster
type Cluster struct {
ID string `json:"id"`
Label string `json:"label"`
DateCreated string `json:"date_created"`
ClusterSubnet string `json:"cluster_subnet"`
ServiceSubnet string `json:"service_subnet"`
IP string `json:"ip"`
Endpoint string `json:"endpoint"`
Version string `json:"version"`
Region string `json:"region"`
Status string `json:"status"`
NodePools []NodePool `json:"node_pools"`
}
// NodePool represents a pool of nodes that are grouped by their label and plan type
type NodePool struct {
ID string `json:"id"`
DateCreated string `json:"date_created"`
DateUpdated string `json:"date_updated"`
Label string `json:"label"`
Plan string `json:"plan"`
Status string `json:"status"`
NodeQuantity int `json:"node_quantity"`
MinNodes int `json:"min_nodes"`
MaxNodes int `json:"max_nodes"`
AutoScaler bool `json:"auto_scaler"`
Tag string `json:"tag"`
Nodes []Node `json:"nodes"`
}
// Node represents a node that will live within a nodepool
type Node struct {
ID string `json:"id"`
DateCreated string `json:"date_created"`
Label string `json:"label"`
Status string `json:"status"`
}
// KubeConfig will contain the kubeconfig b64 encoded
type KubeConfig struct {
KubeConfig string `json:"kube_config"`
}
// ClusterReq struct used to create a cluster
type ClusterReq struct {
Label string `json:"label"`
Region string `json:"region"`
Version string `json:"version"`
NodePools []NodePoolReq `json:"node_pools"`
}
// ClusterReqUpdate struct used to update update a cluster
type ClusterReqUpdate struct {
Label string `json:"label"`
}
// NodePoolReq struct used to create a node pool
type NodePoolReq struct {
NodeQuantity int `json:"node_quantity"`
Label string `json:"label"`
Plan string `json:"plan"`
Tag string `json:"tag"`
MinNodes int `json:"min_nodes,omitempty"`
MaxNodes int `json:"max_nodes,omitempty"`
AutoScaler *bool `json:"auto_scaler"`
}
// NodePoolReqUpdate struct used to update a node pool
type NodePoolReqUpdate struct {
NodeQuantity int `json:"node_quantity,omitempty"`
Tag *string `json:"tag,omitempty"`
MinNodes int `json:"min_nodes,omitempty"`
MaxNodes int `json:"max_nodes,omitempty"`
AutoScaler *bool `json:"auto_scaler,omitempty"`
}
type vkeClustersBase struct {
VKEClusters []Cluster `json:"vke_clusters"`
Meta *Meta `json:"meta"`
}
type vkeClusterBase struct {
VKECluster *Cluster `json:"vke_cluster"`
}
type vkeNodePoolsBase struct {
NodePools []NodePool `json:"node_pools"`
Meta *Meta `json:"meta"`
}
type vkeNodePoolBase struct {
NodePool *NodePool `json:"node_pool"`
}
// Versions that are supported for VKE
type Versions struct {
Versions []string `json:"versions"`
}
// AvailableUpgrades for a given VKE cluster
type availableUpgrades struct {
AvailableUpgrades []string `json:"available_upgrades"`
}
// ClusterUpgradeReq struct for vke upgradse
type ClusterUpgradeReq struct {
UpgradeVersion string `json:"upgrade_version,omitempty"`
}
// CreateCluster will create a Kubernetes cluster.
func (k *KubernetesHandler) CreateCluster(ctx context.Context, createReq *ClusterReq) (*Cluster, error) {
req, err := k.client.NewRequest(ctx, http.MethodPost, vkePath, createReq)
if err != nil {
return nil, err
}
var k8 = new(vkeClusterBase)
if err = k.client.DoWithContext(ctx, req, &k8); err != nil {
return nil, err
}
return k8.VKECluster, nil
}
// GetCluster will return a Kubernetes cluster.
func (k *KubernetesHandler) GetCluster(ctx context.Context, id string) (*Cluster, error) {
req, err := k.client.NewRequest(ctx, http.MethodGet, fmt.Sprintf("%s/%s", vkePath, id), nil)
if err != nil {
return nil, err
}
k8 := new(vkeClusterBase)
if err = k.client.DoWithContext(ctx, req, &k8); err != nil {
return nil, err
}
return k8.VKECluster, nil
}
// ListClusters will return all kubernetes clusters.
func (k *KubernetesHandler) ListClusters(ctx context.Context, options *ListOptions) ([]Cluster, *Meta, error) {
req, err := k.client.NewRequest(ctx, http.MethodGet, vkePath, nil)
if err != nil {
return nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
k8s := new(vkeClustersBase)
if err = k.client.DoWithContext(ctx, req, &k8s); err != nil {
return nil, nil, err
}
return k8s.VKEClusters, k8s.Meta, nil
}
// UpdateCluster updates label on VKE cluster
func (k *KubernetesHandler) UpdateCluster(ctx context.Context, vkeID string, updateReq *ClusterReqUpdate) error {
req, err := k.client.NewRequest(ctx, http.MethodPut, fmt.Sprintf("%s/%s", vkePath, vkeID), updateReq)
if err != nil {
return err
}
return k.client.DoWithContext(ctx, req, nil)
}
// DeleteCluster will delete a Kubernetes cluster.
func (k *KubernetesHandler) DeleteCluster(ctx context.Context, id string) error {
req, err := k.client.NewRequest(ctx, http.MethodDelete, fmt.Sprintf("%s/%s", vkePath, id), nil)
if err != nil {
return err
}
return k.client.DoWithContext(ctx, req, nil)
}
// DeleteClusterWithResources will delete a Kubernetes cluster and all related resources.
func (k *KubernetesHandler) DeleteClusterWithResources(ctx context.Context, id string) error {
req, err := k.client.NewRequest(ctx, http.MethodDelete, fmt.Sprintf("%s/%s/delete-with-linked-resources", vkePath, id), nil)
if err != nil {
return err
}
return k.client.DoWithContext(ctx, req, nil)
}
// CreateNodePool creates a nodepool on a VKE cluster
func (k *KubernetesHandler) CreateNodePool(ctx context.Context, vkeID string, nodePoolReq *NodePoolReq) (*NodePool, error) {
req, err := k.client.NewRequest(ctx, http.MethodPost, fmt.Sprintf("%s/%s/node-pools", vkePath, vkeID), nodePoolReq)
if err != nil {
return nil, err
}
n := new(vkeNodePoolBase)
err = k.client.DoWithContext(ctx, req, n)
if err != nil {
return nil, err
}
return n.NodePool, nil
}
// ListNodePools will return all nodepools for a given VKE cluster
func (k *KubernetesHandler) ListNodePools(ctx context.Context, vkeID string, options *ListOptions) ([]NodePool, *Meta, error) {
req, err := k.client.NewRequest(ctx, http.MethodGet, fmt.Sprintf("%s/%s/node-pools", vkePath, vkeID), nil)
if err != nil {
return nil, nil, err
}
newValues, err := query.Values(options)
if err != nil {
return nil, nil, err
}
req.URL.RawQuery = newValues.Encode()
n := new(vkeNodePoolsBase)
if err = k.client.DoWithContext(ctx, req, &n); err != nil {
return nil, nil, err
}
return n.NodePools, n.Meta, nil
}
// GetNodePool will return a single nodepool
func (k *KubernetesHandler) GetNodePool(ctx context.Context, vkeID, nodePoolID string) (*NodePool, error) {
req, err := k.client.NewRequest(ctx, http.MethodGet, fmt.Sprintf("%s/%s/node-pools/%s", vkePath, vkeID, nodePoolID), nil)
if err != nil {
return nil, err
}
n := new(vkeNodePoolBase)
if err = k.client.DoWithContext(ctx, req, &n); err != nil {
return nil, err
}
return n.NodePool, nil
}
// UpdateNodePool will allow you change the quantity of nodes within a nodepool
func (k *KubernetesHandler) UpdateNodePool(ctx context.Context, vkeID, nodePoolID string, updateReq *NodePoolReqUpdate) (*NodePool, error) {
req, err := k.client.NewRequest(ctx, http.MethodPatch, fmt.Sprintf("%s/%s/node-pools/%s", vkePath, vkeID, nodePoolID), updateReq)
if err != nil {
return nil, err
}
np := new(vkeNodePoolBase)
if err = k.client.DoWithContext(ctx, req, np); err != nil {
return nil, err
}
return np.NodePool, nil
}
// DeleteNodePool will remove a nodepool from a VKE cluster
func (k *KubernetesHandler) DeleteNodePool(ctx context.Context, vkeID, nodePoolID string) error {
req, err := k.client.NewRequest(ctx, http.MethodDelete, fmt.Sprintf("%s/%s/node-pools/%s", vkePath, vkeID, nodePoolID), nil)
if err != nil {
return err
}
return k.client.DoWithContext(ctx, req, nil)
}
// DeleteNodePoolInstance will remove a specified node from a nodepool
func (k *KubernetesHandler) DeleteNodePoolInstance(ctx context.Context, vkeID, nodePoolID, nodeID string) error {
req, err := k.client.NewRequest(ctx, http.MethodDelete, fmt.Sprintf("%s/%s/node-pools/%s/nodes/%s", vkePath, vkeID, nodePoolID, nodeID), nil)
if err != nil {
return err
}
return k.client.DoWithContext(ctx, req, nil)
}
// RecycleNodePoolInstance will recycle (destroy + redeploy) a given node on a nodepool
func (k *KubernetesHandler) RecycleNodePoolInstance(ctx context.Context, vkeID, nodePoolID, nodeID string) error {
req, err := k.client.NewRequest(ctx, http.MethodPost, fmt.Sprintf("%s/%s/node-pools/%s/nodes/%s/recycle", vkePath, vkeID, nodePoolID, nodeID), nil)
if err != nil {
return err
}
return k.client.DoWithContext(ctx, req, nil)
}
// GetKubeConfig returns the kubeconfig for the specified VKE cluster
func (k *KubernetesHandler) GetKubeConfig(ctx context.Context, vkeID string) (*KubeConfig, error) {
req, err := k.client.NewRequest(ctx, http.MethodGet, fmt.Sprintf("%s/%s/config", vkePath, vkeID), nil)
if err != nil {
return nil, err
}
kc := new(KubeConfig)
if err = k.client.DoWithContext(ctx, req, &kc); err != nil {
return nil, err
}
return kc, nil
}
// GetVersions returns the supported kubernetes versions
func (k *KubernetesHandler) GetVersions(ctx context.Context) (*Versions, error) {
uri := "/v2/kubernetes/versions"
req, err := k.client.NewRequest(ctx, http.MethodGet, uri, nil)
if err != nil {
return nil, err
}
versions := new(Versions)
if err = k.client.DoWithContext(ctx, req, &versions); err != nil {
return nil, err
}
return versions, nil
}
// GetUpgrades returns all version a VKE cluster can upgrade to
func (k *KubernetesHandler) GetUpgrades(ctx context.Context, vkeID string) ([]string, error) {
req, err := k.client.NewRequest(ctx, http.MethodGet, fmt.Sprintf("%s/%s/available-upgrades", vkePath, vkeID), nil)
if err != nil {
return nil, err
}
upgrades := new(availableUpgrades)
if err = k.client.DoWithContext(ctx, req, &upgrades); err != nil {
return nil, err
}
return upgrades.AvailableUpgrades, nil
}
// Upgrade beings a VKE cluster upgrade
func (k *KubernetesHandler) Upgrade(ctx context.Context, vkeID string, body *ClusterUpgradeReq) error {
req, err := k.client.NewRequest(ctx, http.MethodPost, fmt.Sprintf("%s/%s/upgrades", vkePath, vkeID), body)
if err != nil {
return err
}
return k.client.DoWithContext(ctx, req, nil)
}
|