Documentation ¶
Index ¶
- Variables
- func DaemonSetNodeName(o *extensions.DaemonSet) osgraph.UniqueName
- func DeploymentNodeName(o *extensions.Deployment) osgraph.UniqueName
- func DeploymentSpecNodeName(o *extensions.DeploymentSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
- func HorizontalPodAutoscalerNodeName(o *autoscaling.HorizontalPodAutoscaler) osgraph.UniqueName
- func PersistentVolumeClaimNodeName(o *kapi.PersistentVolumeClaim) osgraph.UniqueName
- func PodNodeName(o *kapi.Pod) osgraph.UniqueName
- func PodSpecNodeName(o *kapi.PodSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
- func PodTemplateSpecNodeName(o *kapi.PodTemplateSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
- func ReplicaSetNodeName(o *extensions.ReplicaSet) osgraph.UniqueName
- func ReplicaSetSpecNodeName(o *extensions.ReplicaSetSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
- func ReplicationControllerNodeName(o *kapi.ReplicationController) osgraph.UniqueName
- func ReplicationControllerSpecNodeName(o *kapi.ReplicationControllerSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
- func SecretNodeName(o *kapi.Secret) osgraph.UniqueName
- func ServiceAccountNodeName(o *kapi.ServiceAccount) osgraph.UniqueName
- func ServiceNodeName(o *kapi.Service) osgraph.UniqueName
- func StatefulSetNodeName(o *kapps.StatefulSet) osgraph.UniqueName
- func StatefulSetSpecNodeName(o *kapps.StatefulSetSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
- type DaemonSetNode
- type DeploymentNode
- type DeploymentSpecNode
- type HorizontalPodAutoscalerNode
- type PersistentVolumeClaimNode
- type PodNode
- type PodSpecNode
- type PodTemplateSpecNode
- type ReplicaSetNode
- type ReplicaSetSpecNode
- type ReplicationControllerNode
- type ReplicationControllerSpecNode
- type SecretNode
- type ServiceAccountNode
- type ServiceNode
- type StatefulSetNode
- type StatefulSetSpecNode
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ServiceNodeKind = reflect.TypeOf(kapi.Service{}).Name() PodNodeKind = reflect.TypeOf(kapi.Pod{}).Name() PodSpecNodeKind = reflect.TypeOf(kapi.PodSpec{}).Name() PodTemplateSpecNodeKind = reflect.TypeOf(kapi.PodTemplateSpec{}).Name() ReplicationControllerNodeKind = reflect.TypeOf(kapi.ReplicationController{}).Name() ReplicationControllerSpecNodeKind = reflect.TypeOf(kapi.ReplicationControllerSpec{}).Name() ServiceAccountNodeKind = reflect.TypeOf(kapi.ServiceAccount{}).Name() SecretNodeKind = reflect.TypeOf(kapi.Secret{}).Name() PersistentVolumeClaimNodeKind = reflect.TypeOf(kapi.PersistentVolumeClaim{}).Name() HorizontalPodAutoscalerNodeKind = reflect.TypeOf(autoscaling.HorizontalPodAutoscaler{}).Name() StatefulSetNodeKind = reflect.TypeOf(kapps.StatefulSet{}).Name() StatefulSetSpecNodeKind = reflect.TypeOf(kapps.StatefulSetSpec{}).Name() DeploymentNodeKind = reflect.TypeOf(extensions.Deployment{}).Name() DeploymentSpecNodeKind = reflect.TypeOf(extensions.DeploymentSpec{}).Name() ReplicaSetNodeKind = reflect.TypeOf(extensions.ReplicaSet{}).Name() ReplicaSetSpecNodeKind = reflect.TypeOf(extensions.ReplicaSetSpec{}).Name() DaemonSetNodeKind = reflect.TypeOf(extensions.DaemonSet{}).Name() )
Functions ¶
func DaemonSetNodeName ¶
func DaemonSetNodeName(o *extensions.DaemonSet) osgraph.UniqueName
func DeploymentNodeName ¶
func DeploymentNodeName(o *extensions.Deployment) osgraph.UniqueName
func DeploymentSpecNodeName ¶
func DeploymentSpecNodeName(o *extensions.DeploymentSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
func HorizontalPodAutoscalerNodeName ¶
func HorizontalPodAutoscalerNodeName(o *autoscaling.HorizontalPodAutoscaler) osgraph.UniqueName
func PersistentVolumeClaimNodeName ¶
func PersistentVolumeClaimNodeName(o *kapi.PersistentVolumeClaim) osgraph.UniqueName
func PodNodeName ¶
func PodNodeName(o *kapi.Pod) osgraph.UniqueName
func PodSpecNodeName ¶
func PodSpecNodeName(o *kapi.PodSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
func PodTemplateSpecNodeName ¶
func PodTemplateSpecNodeName(o *kapi.PodTemplateSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
func ReplicaSetNodeName ¶
func ReplicaSetNodeName(o *extensions.ReplicaSet) osgraph.UniqueName
func ReplicaSetSpecNodeName ¶
func ReplicaSetSpecNodeName(o *extensions.ReplicaSetSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
func ReplicationControllerNodeName ¶
func ReplicationControllerNodeName(o *kapi.ReplicationController) osgraph.UniqueName
func ReplicationControllerSpecNodeName ¶
func ReplicationControllerSpecNodeName(o *kapi.ReplicationControllerSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
func SecretNodeName ¶
func SecretNodeName(o *kapi.Secret) osgraph.UniqueName
func ServiceAccountNodeName ¶
func ServiceAccountNodeName(o *kapi.ServiceAccount) osgraph.UniqueName
func ServiceNodeName ¶
func ServiceNodeName(o *kapi.Service) osgraph.UniqueName
func StatefulSetNodeName ¶
func StatefulSetNodeName(o *kapps.StatefulSet) osgraph.UniqueName
func StatefulSetSpecNodeName ¶
func StatefulSetSpecNodeName(o *kapps.StatefulSetSpec, ownerName osgraph.UniqueName) osgraph.UniqueName
Types ¶
type DaemonSetNode ¶
type DaemonSetNode struct { osgraph.Node DaemonSet *extensions.DaemonSet IsFound bool }
func EnsureDaemonSetNode ¶
func EnsureDaemonSetNode(g osgraph.MutableUniqueGraph, ds *extensions.DaemonSet) *DaemonSetNode
EnsureDaemonSetNode adds the provided daemon set to the graph if it does not exist
func FindOrCreateSyntheticDaemonSetNode ¶
func FindOrCreateSyntheticDaemonSetNode(g osgraph.MutableUniqueGraph, ds *extensions.DaemonSet) *DaemonSetNode
func (DaemonSetNode) Found ¶
func (n DaemonSetNode) Found() bool
func (*DaemonSetNode) Kind ¶
func (*DaemonSetNode) Kind() string
func (DaemonSetNode) Object ¶
func (n DaemonSetNode) Object() interface{}
func (DaemonSetNode) String ¶
func (n DaemonSetNode) String() string
type DeploymentNode ¶
type DeploymentNode struct { osgraph.Node Deployment *extensions.Deployment IsFound bool }
func EnsureDeploymentNode ¶
func EnsureDeploymentNode(g osgraph.MutableUniqueGraph, deployment *extensions.Deployment) *DeploymentNode
func FindOrCreateSyntheticDeploymentNode ¶
func FindOrCreateSyntheticDeploymentNode(g osgraph.MutableUniqueGraph, deployment *extensions.Deployment) *DeploymentNode
func (DeploymentNode) Found ¶
func (n DeploymentNode) Found() bool
func (*DeploymentNode) Kind ¶
func (*DeploymentNode) Kind() string
func (DeploymentNode) Object ¶
func (n DeploymentNode) Object() interface{}
func (DeploymentNode) String ¶
func (n DeploymentNode) String() string
func (DeploymentNode) UniqueName ¶
func (n DeploymentNode) UniqueName() osgraph.UniqueName
type DeploymentSpecNode ¶
type DeploymentSpecNode struct { osgraph.Node DeploymentSpec *extensions.DeploymentSpec Namespace string OwnerName osgraph.UniqueName }
func EnsureDeploymentSpecNode ¶
func EnsureDeploymentSpecNode(g osgraph.MutableUniqueGraph, spec *extensions.DeploymentSpec, namespace string, ownerName osgraph.UniqueName) *DeploymentSpecNode
func (*DeploymentSpecNode) Kind ¶
func (*DeploymentSpecNode) Kind() string
func (DeploymentSpecNode) Object ¶
func (n DeploymentSpecNode) Object() interface{}
func (DeploymentSpecNode) String ¶
func (n DeploymentSpecNode) String() string
func (DeploymentSpecNode) UniqueName ¶
func (n DeploymentSpecNode) UniqueName() osgraph.UniqueName
type HorizontalPodAutoscalerNode ¶
type HorizontalPodAutoscalerNode struct { osgraph.Node HorizontalPodAutoscaler *autoscaling.HorizontalPodAutoscaler }
func EnsureHorizontalPodAutoscalerNode ¶
func EnsureHorizontalPodAutoscalerNode(g osgraph.MutableUniqueGraph, hpa *autoscaling.HorizontalPodAutoscaler) *HorizontalPodAutoscalerNode
func (*HorizontalPodAutoscalerNode) Kind ¶
func (*HorizontalPodAutoscalerNode) Kind() string
func (HorizontalPodAutoscalerNode) Object ¶
func (n HorizontalPodAutoscalerNode) Object() interface{}
func (HorizontalPodAutoscalerNode) String ¶
func (n HorizontalPodAutoscalerNode) String() string
func (HorizontalPodAutoscalerNode) UniqueName ¶
func (n HorizontalPodAutoscalerNode) UniqueName() osgraph.UniqueName
type PersistentVolumeClaimNode ¶
type PersistentVolumeClaimNode struct { osgraph.Node PersistentVolumeClaim *kapi.PersistentVolumeClaim IsFound bool }
func EnsurePersistentVolumeClaimNode ¶
func EnsurePersistentVolumeClaimNode(g osgraph.MutableUniqueGraph, pvc *kapi.PersistentVolumeClaim) *PersistentVolumeClaimNode
func FindOrCreateSyntheticPVCNode ¶
func FindOrCreateSyntheticPVCNode(g osgraph.MutableUniqueGraph, pvc *kapi.PersistentVolumeClaim) *PersistentVolumeClaimNode
func (PersistentVolumeClaimNode) Found ¶
func (n PersistentVolumeClaimNode) Found() bool
func (*PersistentVolumeClaimNode) Kind ¶
func (*PersistentVolumeClaimNode) Kind() string
func (PersistentVolumeClaimNode) Object ¶
func (n PersistentVolumeClaimNode) Object() interface{}
func (PersistentVolumeClaimNode) String ¶
func (n PersistentVolumeClaimNode) String() string
func (PersistentVolumeClaimNode) UniqueName ¶
func (n PersistentVolumeClaimNode) UniqueName() osgraph.UniqueName
type PodNode ¶
func EnsurePodNode ¶
func EnsurePodNode(g osgraph.MutableUniqueGraph, pod *kapi.Pod) *PodNode
func (PodNode) UniqueName ¶
func (n PodNode) UniqueName() osgraph.UniqueName
type PodSpecNode ¶
type PodSpecNode struct { osgraph.Node *kapi.PodSpec Namespace string OwnerName osgraph.UniqueName }
func EnsurePodSpecNode ¶
func EnsurePodSpecNode(g osgraph.MutableUniqueGraph, podSpec *kapi.PodSpec, namespace string, ownerName osgraph.UniqueName) *PodSpecNode
func (*PodSpecNode) Kind ¶
func (*PodSpecNode) Kind() string
func (PodSpecNode) Object ¶
func (n PodSpecNode) Object() interface{}
func (PodSpecNode) String ¶
func (n PodSpecNode) String() string
func (PodSpecNode) UniqueName ¶
func (n PodSpecNode) UniqueName() osgraph.UniqueName
type PodTemplateSpecNode ¶
type PodTemplateSpecNode struct { osgraph.Node *kapi.PodTemplateSpec Namespace string OwnerName osgraph.UniqueName }
func EnsurePodTemplateSpecNode ¶
func EnsurePodTemplateSpecNode(g osgraph.MutableUniqueGraph, ptSpec *kapi.PodTemplateSpec, namespace string, ownerName osgraph.UniqueName) *PodTemplateSpecNode
func (*PodTemplateSpecNode) Kind ¶
func (*PodTemplateSpecNode) Kind() string
func (PodTemplateSpecNode) Object ¶
func (n PodTemplateSpecNode) Object() interface{}
func (PodTemplateSpecNode) String ¶
func (n PodTemplateSpecNode) String() string
func (PodTemplateSpecNode) UniqueName ¶
func (n PodTemplateSpecNode) UniqueName() osgraph.UniqueName
type ReplicaSetNode ¶
type ReplicaSetNode struct { osgraph.Node ReplicaSet *extensions.ReplicaSet IsFound bool }
func EnsureReplicaSetNode ¶
func EnsureReplicaSetNode(g osgraph.MutableUniqueGraph, rs *extensions.ReplicaSet) *ReplicaSetNode
EnsureReplicaSetNode adds a graph node for the ReplicaSet if it does not already exist.
func FindOrCreateSyntheticReplicaSetNode ¶
func FindOrCreateSyntheticReplicaSetNode(g osgraph.MutableUniqueGraph, rs *extensions.ReplicaSet) *ReplicaSetNode
func (ReplicaSetNode) Found ¶
func (n ReplicaSetNode) Found() bool
func (*ReplicaSetNode) Kind ¶
func (*ReplicaSetNode) Kind() string
func (ReplicaSetNode) Object ¶
func (n ReplicaSetNode) Object() interface{}
func (ReplicaSetNode) String ¶
func (n ReplicaSetNode) String() string
func (ReplicaSetNode) UniqueName ¶
func (n ReplicaSetNode) UniqueName() osgraph.UniqueName
type ReplicaSetSpecNode ¶
type ReplicaSetSpecNode struct { osgraph.Node ReplicaSetSpec *extensions.ReplicaSetSpec Namespace string OwnerName osgraph.UniqueName }
func EnsureReplicaSetSpecNode ¶
func EnsureReplicaSetSpecNode(g osgraph.MutableUniqueGraph, rsSpec *extensions.ReplicaSetSpec, namespace string, ownerName osgraph.UniqueName) *ReplicaSetSpecNode
func (*ReplicaSetSpecNode) Kind ¶
func (*ReplicaSetSpecNode) Kind() string
func (ReplicaSetSpecNode) Object ¶
func (n ReplicaSetSpecNode) Object() interface{}
func (ReplicaSetSpecNode) String ¶
func (n ReplicaSetSpecNode) String() string
func (ReplicaSetSpecNode) UniqueName ¶
func (n ReplicaSetSpecNode) UniqueName() osgraph.UniqueName
type ReplicationControllerNode ¶
type ReplicationControllerNode struct { osgraph.Node ReplicationController *kapi.ReplicationController IsFound bool }
func EnsureReplicationControllerNode ¶
func EnsureReplicationControllerNode(g osgraph.MutableUniqueGraph, rc *kapi.ReplicationController) *ReplicationControllerNode
EnsureReplicationControllerNode adds a graph node for the ReplicationController if it does not already exist.
func FindOrCreateSyntheticReplicationControllerNode ¶
func FindOrCreateSyntheticReplicationControllerNode(g osgraph.MutableUniqueGraph, rc *kapi.ReplicationController) *ReplicationControllerNode
func (ReplicationControllerNode) Found ¶
func (n ReplicationControllerNode) Found() bool
func (*ReplicationControllerNode) Kind ¶
func (*ReplicationControllerNode) Kind() string
func (ReplicationControllerNode) Object ¶
func (n ReplicationControllerNode) Object() interface{}
func (ReplicationControllerNode) String ¶
func (n ReplicationControllerNode) String() string
func (ReplicationControllerNode) UniqueName ¶
func (n ReplicationControllerNode) UniqueName() osgraph.UniqueName
type ReplicationControllerSpecNode ¶
type ReplicationControllerSpecNode struct { osgraph.Node ReplicationControllerSpec *kapi.ReplicationControllerSpec Namespace string OwnerName osgraph.UniqueName }
func EnsureReplicationControllerSpecNode ¶
func EnsureReplicationControllerSpecNode(g osgraph.MutableUniqueGraph, rcSpec *kapi.ReplicationControllerSpec, namespace string, ownerName osgraph.UniqueName) *ReplicationControllerSpecNode
func (*ReplicationControllerSpecNode) Kind ¶
func (*ReplicationControllerSpecNode) Kind() string
func (ReplicationControllerSpecNode) Object ¶
func (n ReplicationControllerSpecNode) Object() interface{}
func (ReplicationControllerSpecNode) String ¶
func (n ReplicationControllerSpecNode) String() string
func (ReplicationControllerSpecNode) UniqueName ¶
func (n ReplicationControllerSpecNode) UniqueName() osgraph.UniqueName
type SecretNode ¶
func EnsureSecretNode ¶
func EnsureSecretNode(g osgraph.MutableUniqueGraph, o *kapi.Secret) *SecretNode
func FindOrCreateSyntheticSecretNode ¶
func FindOrCreateSyntheticSecretNode(g osgraph.MutableUniqueGraph, o *kapi.Secret) *SecretNode
func (SecretNode) Found ¶
func (n SecretNode) Found() bool
func (*SecretNode) Kind ¶
func (*SecretNode) Kind() string
func (SecretNode) Object ¶
func (n SecretNode) Object() interface{}
func (SecretNode) String ¶
func (n SecretNode) String() string
type ServiceAccountNode ¶
type ServiceAccountNode struct { osgraph.Node *kapi.ServiceAccount IsFound bool }
func EnsureServiceAccountNode ¶
func EnsureServiceAccountNode(g osgraph.MutableUniqueGraph, o *kapi.ServiceAccount) *ServiceAccountNode
func FindOrCreateSyntheticServiceAccountNode ¶
func FindOrCreateSyntheticServiceAccountNode(g osgraph.MutableUniqueGraph, o *kapi.ServiceAccount) *ServiceAccountNode
func (ServiceAccountNode) Found ¶
func (n ServiceAccountNode) Found() bool
func (*ServiceAccountNode) Kind ¶
func (*ServiceAccountNode) Kind() string
func (ServiceAccountNode) Object ¶
func (n ServiceAccountNode) Object() interface{}
func (ServiceAccountNode) String ¶
func (n ServiceAccountNode) String() string
type ServiceNode ¶
func EnsureServiceNode ¶
func EnsureServiceNode(g osgraph.MutableUniqueGraph, svc *kapi.Service) *ServiceNode
EnsureServiceNode adds the provided service to the graph if it does not already exist.
func FindOrCreateSyntheticServiceNode ¶
func FindOrCreateSyntheticServiceNode(g osgraph.MutableUniqueGraph, svc *kapi.Service) *ServiceNode
FindOrCreateSyntheticServiceNode returns the existing service node or creates a synthetic node in its place
func (ServiceNode) Found ¶
func (n ServiceNode) Found() bool
func (*ServiceNode) Kind ¶
func (*ServiceNode) Kind() string
func (ServiceNode) Object ¶
func (n ServiceNode) Object() interface{}
func (ServiceNode) String ¶
func (n ServiceNode) String() string
type StatefulSetNode ¶
type StatefulSetNode struct { osgraph.Node StatefulSet *kapps.StatefulSet IsFound bool }
func EnsureStatefulSetNode ¶
func EnsureStatefulSetNode(g osgraph.MutableUniqueGraph, statefulSet *kapps.StatefulSet) *StatefulSetNode
func (StatefulSetNode) Found ¶
func (n StatefulSetNode) Found() bool
func (*StatefulSetNode) Kind ¶
func (*StatefulSetNode) Kind() string
func (StatefulSetNode) Object ¶
func (n StatefulSetNode) Object() interface{}
func (StatefulSetNode) String ¶
func (n StatefulSetNode) String() string
func (StatefulSetNode) UniqueName ¶
func (n StatefulSetNode) UniqueName() osgraph.UniqueName
type StatefulSetSpecNode ¶
type StatefulSetSpecNode struct { osgraph.Node StatefulSetSpec *kapps.StatefulSetSpec Namespace string OwnerName osgraph.UniqueName }
func EnsureStatefulSetSpecNode ¶
func EnsureStatefulSetSpecNode(g osgraph.MutableUniqueGraph, spec *kapps.StatefulSetSpec, namespace string, ownerName osgraph.UniqueName) *StatefulSetSpecNode
func (*StatefulSetSpecNode) Kind ¶
func (*StatefulSetSpecNode) Kind() string
func (StatefulSetSpecNode) Object ¶
func (n StatefulSetSpecNode) Object() interface{}
func (StatefulSetSpecNode) String ¶
func (n StatefulSetSpecNode) String() string
func (StatefulSetSpecNode) UniqueName ¶
func (n StatefulSetSpecNode) UniqueName() osgraph.UniqueName
Click to show internal directories.
Click to hide internal directories.