Documentation ¶
Index ¶
- func CreateEndpointsName(tenantEnvName, serviceName, uuid string) string
- func DescribePodStatus(clientset kubernetes.Interface, pod *corev1.Pod, podStatus *pb.PodStatus, ...)
- func KeepMaxLength(raw string, maxl int) string
- func MakePodDNSConfig(clientset kubernetes.Interface, ...) (podDNSConfig *corev1.PodDNSConfig)
- func TransStorageClass2RBDVolumeType(sc *storagev1.StorageClass) *dbmodel.TenantEnvServiceVolumeType
- func ValidateVolumeCapacity(validation string, capacity int64) error
- type PodStatusAdvice
- type SortableConditionType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateEndpointsName ¶
CreateEndpointsName creates name for third-party endpoints the names of Kubernetes resources should be up to maximum length of 253 characters and consist of lower case alphanumeric characters, -, and ., but certain resources have more specific restrictions.
func DescribePodStatus ¶
func DescribePodStatus(clientset kubernetes.Interface, pod *corev1.Pod, podStatus *pb.PodStatus, f k8sutil.ListEventsByPod)
DescribePodStatus -
func KeepMaxLength ¶ added in v1.1.0
KeepMaxLength keep max length of string
func MakePodDNSConfig ¶
func MakePodDNSConfig(clientset kubernetes.Interface, podNamespace, wtNamespace, wtEndpointDNSName string) (podDNSConfig *corev1.PodDNSConfig)
MakePodDNSConfig make pod dns config
func TransStorageClass2RBDVolumeType ¶
func TransStorageClass2RBDVolumeType(sc *storagev1.StorageClass) *dbmodel.TenantEnvServiceVolumeType
TransStorageClass2RBDVolumeType transfer k8s storageclass 2 wt volumeType
func ValidateVolumeCapacity ¶
ValidateVolumeCapacity validate volume capacity
Types ¶
type PodStatusAdvice ¶
type PodStatusAdvice string
PodStatusAdvice -
var PodStatusAdviceInitiating PodStatusAdvice = "Initiating"
PodStatusAdviceInitiating -
var PodStatusAdviceOOM PodStatusAdvice = "OutOfMemory"
PodStatusAdviceOOM -
var PodStatusAdviceUnhealthy PodStatusAdvice = "Unhealthy"
PodStatusAdviceUnhealthy -
func (PodStatusAdvice) String ¶
func (p PodStatusAdvice) String() string
String converts PodStatusAdvice to string
type SortableConditionType ¶
type SortableConditionType []corev1.PodCondition
SortableConditionType implements sort.Interface for []PodCondition based on the Type field.
func (SortableConditionType) Len ¶
func (s SortableConditionType) Len() int
func (SortableConditionType) Less ¶
func (s SortableConditionType) Less(i, j int) bool
func (SortableConditionType) Swap ¶
func (s SortableConditionType) Swap(i, j int)