2019-01-11 15:55:28 +02:00
|
|
|
/*
|
|
|
|
Copyright 2019 The Kubernetes Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package apihelper
|
|
|
|
|
|
|
|
import (
|
|
|
|
api "k8s.io/api/core/v1"
|
|
|
|
k8sclient "k8s.io/client-go/kubernetes"
|
|
|
|
)
|
|
|
|
|
|
|
|
// APIHelpers represents a set of API helpers for Kubernetes
|
|
|
|
type APIHelpers interface {
|
|
|
|
// GetClient returns a client
|
|
|
|
GetClient() (*k8sclient.Clientset, error)
|
|
|
|
|
|
|
|
// GetNode returns the Kubernetes node on which this container is running.
|
|
|
|
GetNode(*k8sclient.Clientset, string) (*api.Node, error)
|
|
|
|
|
2020-05-28 17:12:48 +03:00
|
|
|
// GetNodes returns all the nodes in the cluster
|
|
|
|
GetNodes(*k8sclient.Clientset) (*api.NodeList, error)
|
|
|
|
|
2019-01-11 15:55:28 +02:00
|
|
|
// UpdateNode updates the node via the API server using a client.
|
|
|
|
UpdateNode(*k8sclient.Clientset, *api.Node) error
|
2020-03-05 16:40:55 +02:00
|
|
|
|
|
|
|
// PatchStatus updates the node status via the API server using a client.
|
|
|
|
PatchStatus(*k8sclient.Clientset, string, interface{}) error
|
2019-01-11 15:55:28 +02:00
|
|
|
}
|