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
|
|
|
|
|
2022-06-14 22:28:07 +03:00
|
|
|
//go:generate mockery --name=APIHelpers --inpackage
|
2021-09-21 12:46:41 +03:00
|
|
|
|
2019-01-11 15:55:28 +02:00
|
|
|
import (
|
2021-05-13 12:51:15 +02:00
|
|
|
topologyclientset "github.com/k8stopologyawareschedwg/noderesourcetopology-api/pkg/generated/clientset/versioned"
|
2022-10-14 15:28:52 +03:00
|
|
|
corev1 "k8s.io/api/core/v1"
|
2019-01-11 15:55:28 +02:00
|
|
|
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.
|
2022-10-14 15:28:52 +03:00
|
|
|
GetNode(*k8sclient.Clientset, string) (*corev1.Node, error)
|
2019-01-11 15:55:28 +02:00
|
|
|
|
2020-05-28 17:12:48 +03:00
|
|
|
// GetNodes returns all the nodes in the cluster
|
2022-10-14 15:28:52 +03:00
|
|
|
GetNodes(*k8sclient.Clientset) (*corev1.NodeList, error)
|
2020-05-28 17:12:48 +03:00
|
|
|
|
2019-01-11 15:55:28 +02:00
|
|
|
// UpdateNode updates the node via the API server using a client.
|
2022-10-14 15:28:52 +03:00
|
|
|
UpdateNode(*k8sclient.Clientset, *corev1.Node) error
|
2020-03-05 16:40:55 +02:00
|
|
|
|
2020-08-13 17:14:27 +03:00
|
|
|
// PatchNode updates the node object via the API server using a client.
|
|
|
|
PatchNode(*k8sclient.Clientset, string, []JsonPatch) error
|
|
|
|
|
|
|
|
// PatchNodeStatus updates the node status via the API server using a client.
|
|
|
|
PatchNodeStatus(*k8sclient.Clientset, string, []JsonPatch) error
|
2021-05-13 12:51:15 +02:00
|
|
|
|
|
|
|
// GetTopologyClient returns a topologyclientset
|
|
|
|
GetTopologyClient() (*topologyclientset.Clientset, error)
|
2021-07-14 00:50:05 +01:00
|
|
|
|
|
|
|
// GetPod returns the Kubernetes pod in a namepace with a name.
|
2022-10-14 15:28:52 +03:00
|
|
|
GetPod(*k8sclient.Clientset, string, string) (*corev1.Pod, error)
|
2019-01-11 15:55:28 +02:00
|
|
|
}
|