cluster

package
v3.8.0+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 26, 2018 License: Apache-2.0 Imports: 47 Imported by: 0

Documentation

Index

Constants

View Source
const (
	MetricsApiProxyName    = "MetricsApiProxy"
	MetricsApiProxyProject = "openshift-infra"
	MetricsApiProxyService = "heapster"
)
View Source
const (
	ClusterRegistryName = "ClusterRegistry"
)
View Source
const (
	ClusterRoleBindingsName = "ClusterRoleBindings"
)
View Source
const (
	ClusterRolesName = "ClusterRoles"
)
View Source
const (
	ClusterRouterName = "ClusterRouter"
)
View Source
const (
	EtcdWriteName = "EtcdWriteVolume"
)
View Source
const MasterNodeName = "MasterNode"
View Source
const NodeDefinitionsName = "NodeDefinitions"
View Source
const (
	RouteCertificateValidationName = "RouteCertificateValidation"
)
View Source
const ServiceExternalIPsName = "ServiceExternalIPs"

Variables

This section is empty.

Functions

This section is empty.

Types

type Bin

type Bin struct {
	Name  string
	Count int
}

type ClusterRegistry

type ClusterRegistry struct {
	KubeClient          kclientset.Interface
	ImageStreamClient   imagetypedclient.ImageStreamsGetter
	PreventModification bool
}

ClusterRegistry is a Diagnostic to check that there is a working Docker registry.

func (*ClusterRegistry) CanRun

func (d *ClusterRegistry) CanRun() (bool, error)

func (*ClusterRegistry) Check

func (*ClusterRegistry) Description

func (d *ClusterRegistry) Description() string

func (*ClusterRegistry) Name

func (d *ClusterRegistry) Name() string

type ClusterRoleBindings

type ClusterRoleBindings struct {
	ClusterRoleBindingsClient oauthorizationtypedclient.ClusterRoleBindingInterface
	SARClient                 authorizationtypedclient.SelfSubjectAccessReviewsGetter
}

ClusterRoleBindings is a Diagnostic to check that the default cluster role bindings match expectations

func (*ClusterRoleBindings) CanRun

func (d *ClusterRoleBindings) CanRun() (bool, error)

func (*ClusterRoleBindings) Check

func (*ClusterRoleBindings) Description

func (d *ClusterRoleBindings) Description() string

func (*ClusterRoleBindings) Name

func (d *ClusterRoleBindings) Name() string

type ClusterRoles

ClusterRoles is a Diagnostic to check that the default cluster roles match expectations

func (*ClusterRoles) CanRun

func (d *ClusterRoles) CanRun() (bool, error)

func (*ClusterRoles) Check

func (d *ClusterRoles) Check() types.DiagnosticResult

func (*ClusterRoles) Description

func (d *ClusterRoles) Description() string

func (*ClusterRoles) Name

func (d *ClusterRoles) Name() string

type ClusterRouter

type ClusterRouter struct {
	KubeClient kclientset.Interface
	DCClient   appstypedclient.DeploymentConfigsGetter
}

ClusterRouter is a Diagnostic to check that there is a working router.

func (*ClusterRouter) CanRun

func (d *ClusterRouter) CanRun() (bool, error)

func (*ClusterRouter) Check

func (*ClusterRouter) Description

func (d *ClusterRouter) Description() string

func (*ClusterRouter) Name

func (d *ClusterRouter) Name() string

type DescendingBins

type DescendingBins []Bin

func (DescendingBins) Len

func (m DescendingBins) Len() int

func (DescendingBins) Less

func (m DescendingBins) Less(i, j int) bool

func (DescendingBins) Swap

func (m DescendingBins) Swap(i, j int)

type EtcdWriteVolume

type EtcdWriteVolume struct {
	V2Client etcdclient.Client
	V3Client *clientv3.Client
}

EtcdWriteVolume is a Diagnostic to check the writes occurring against etcd and organize them by volume.

func (*EtcdWriteVolume) CanRun

func (d *EtcdWriteVolume) CanRun() (bool, error)

func (*EtcdWriteVolume) Check

func (*EtcdWriteVolume) Description

func (d *EtcdWriteVolume) Description() string

func (*EtcdWriteVolume) Name

func (d *EtcdWriteVolume) Name() string

type KeyCounter

type KeyCounter interface {
	Inc(key []string)
}

type MasterNode

type MasterNode struct {
	KubeClient       kclientset.Interface
	ServerUrl        string
	MasterConfigFile string // may often be empty if not being run on the host
}

MasterNode is a Diagnostic for checking that the OpenShift master is also running as node. This is currently required to have the master on the Open vSwitch SDN and able to communicate with other nodes.

func (*MasterNode) CanRun

func (d *MasterNode) CanRun() (bool, error)

func (*MasterNode) Check

func (d *MasterNode) Check() types.DiagnosticResult

func (*MasterNode) Description

func (d *MasterNode) Description() string

func (*MasterNode) Name

func (d *MasterNode) Name() string

type MetricsApiProxy

type MetricsApiProxy struct {
	KubeClient kclientset.Interface
}

MetricsApiProxy is a Diagnostic for diagnosing the API proxy and HPA/metrics.

func (*MetricsApiProxy) CanRun

func (d *MetricsApiProxy) CanRun() (bool, error)

func (*MetricsApiProxy) Check

func (*MetricsApiProxy) Description

func (d *MetricsApiProxy) Description() string

func (*MetricsApiProxy) Name

func (d *MetricsApiProxy) Name() string

type NodeDefinitions

type NodeDefinitions struct {
	KubeClient kclientset.Interface
}

NodeDefinitions is a Diagnostic for analyzing the nodes in a cluster.

func (*NodeDefinitions) CanRun

func (d *NodeDefinitions) CanRun() (bool, error)

func (*NodeDefinitions) Check

func (*NodeDefinitions) Description

func (d *NodeDefinitions) Description() string

func (*NodeDefinitions) Name

func (d *NodeDefinitions) Name() string

type RouteCertificateValidation

type RouteCertificateValidation struct {
	SARClient  authorizationtypedclient.SelfSubjectAccessReviewsGetter
	RESTConfig *rest.Config
}

RouteCertificateValidation is a Diagnostic to check that there is a working router.

func (*RouteCertificateValidation) CanRun

func (d *RouteCertificateValidation) CanRun() (bool, error)

func (*RouteCertificateValidation) Check

func (*RouteCertificateValidation) Description

func (d *RouteCertificateValidation) Description() string

func (*RouteCertificateValidation) Name

type ServiceExternalIPs

type ServiceExternalIPs struct {
	MasterConfigFile string
	KclusterClient   kclientset.Interface
}

ServiceExternalIPs is a Diagnostic to check for the services in the cluster that do not comply with an updated master ExternalIPNetworkCIDR setting. Background: https://github.com/openshift/origin/issues/7808

func (*ServiceExternalIPs) CanRun

func (d *ServiceExternalIPs) CanRun() (bool, error)

func (*ServiceExternalIPs) Check

func (*ServiceExternalIPs) Description

func (d *ServiceExternalIPs) Description() string

func (*ServiceExternalIPs) Name

func (d *ServiceExternalIPs) Name() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL