Versions in this module Expand all Collapse all v4 v4.1.0 May 1, 2019 Changes in this version + var DaemonSetNodeKind = reflect.TypeOf(kappsv1.DaemonSet{}).Name() + var DeploymentNodeKind = reflect.TypeOf(kappsv1.Deployment{}).Name() + var DeploymentSpecNodeKind = reflect.TypeOf(kappsv1.DeploymentSpec{}).Name() + var HorizontalPodAutoscalerNodeKind = reflect.TypeOf(autoscalingv1.HorizontalPodAutoscaler{}).Name() + var JobNodeKind = reflect.TypeOf(batchv1.Job{}).Name() + var JobSpecNodeKind = reflect.TypeOf(batchv1.JobSpec{}).Name() + var PersistentVolumeClaimNodeKind = reflect.TypeOf(corev1.PersistentVolumeClaim{}).Name() + var PodNodeKind = reflect.TypeOf(corev1.Pod{}).Name() + var PodSpecNodeKind = reflect.TypeOf(corev1.PodSpec{}).Name() + var PodTemplateSpecNodeKind = reflect.TypeOf(corev1.PodTemplateSpec{}).Name() + var ReplicaSetNodeKind = reflect.TypeOf(kappsv1.ReplicaSet{}).Name() + var ReplicaSetSpecNodeKind = reflect.TypeOf(kappsv1.ReplicaSetSpec{}).Name() + var ReplicationControllerNodeKind = reflect.TypeOf(corev1.ReplicationController{}).Name() + var ReplicationControllerSpecNodeKind = reflect.TypeOf(corev1.ReplicationControllerSpec{}).Name() + var SecretNodeKind = reflect.TypeOf(corev1.Secret{}).Name() + var ServiceAccountNodeKind = reflect.TypeOf(corev1.ServiceAccount{}).Name() + var ServiceNodeKind = reflect.TypeOf(corev1.Service{}).Name() + var StatefulSetNodeKind = reflect.TypeOf(kappsv1.StatefulSet{}).Name() + var StatefulSetSpecNodeKind = reflect.TypeOf(kappsv1.StatefulSetSpec{}).Name() + func DaemonSetNodeName(o *kappsv1.DaemonSet) osgraph.UniqueName + func DeploymentNodeName(o *kappsv1.Deployment) osgraph.UniqueName + func DeploymentSpecNodeName(o *kappsv1.DeploymentSpec, ownerName osgraph.UniqueName) osgraph.UniqueName + func HorizontalPodAutoscalerNodeName(o *autoscalingv1.HorizontalPodAutoscaler) osgraph.UniqueName + func JobNodeName(o *batchv1.Job) osgraph.UniqueName + func JobSpecNodeName(o *batchv1.JobSpec, ownerName osgraph.UniqueName) osgraph.UniqueName + func PersistentVolumeClaimNodeName(o *corev1.PersistentVolumeClaim) osgraph.UniqueName + func PodNodeName(o *corev1.Pod) osgraph.UniqueName + func PodSpecNodeName(o *corev1.PodSpec, ownerName osgraph.UniqueName) osgraph.UniqueName + func PodTemplateSpecNodeName(o *corev1.PodTemplateSpec, ownerName osgraph.UniqueName) osgraph.UniqueName + func ReplicaSetNodeName(o *kappsv1.ReplicaSet) osgraph.UniqueName + func ReplicaSetSpecNodeName(o *kappsv1.ReplicaSetSpec, ownerName osgraph.UniqueName) osgraph.UniqueName + func ReplicationControllerNodeName(o *corev1.ReplicationController) osgraph.UniqueName + func ReplicationControllerSpecNodeName(o *corev1.ReplicationControllerSpec, ownerName osgraph.UniqueName) osgraph.UniqueName + func SecretNodeName(o *corev1.Secret) osgraph.UniqueName + func ServiceAccountNodeName(o *corev1.ServiceAccount) osgraph.UniqueName + func ServiceNodeName(o *corev1.Service) osgraph.UniqueName + func StatefulSetNodeName(o *kappsv1.StatefulSet) osgraph.UniqueName + func StatefulSetSpecNodeName(o *kappsv1.StatefulSetSpec, ownerName osgraph.UniqueName) osgraph.UniqueName + type DaemonSetNode struct + DaemonSet *kappsv1.DaemonSet + IsFound bool + func EnsureDaemonSetNode(g osgraph.MutableUniqueGraph, ds *kappsv1.DaemonSet) *DaemonSetNode + func FindOrCreateSyntheticDaemonSetNode(g osgraph.MutableUniqueGraph, ds *kappsv1.DaemonSet) *DaemonSetNode + func (*DaemonSetNode) Kind() string + func (n DaemonSetNode) Found() bool + func (n DaemonSetNode) Object() interface{} + func (n DaemonSetNode) String() string + type DeploymentNode struct + Deployment *kappsv1.Deployment + IsFound bool + func EnsureDeploymentNode(g osgraph.MutableUniqueGraph, deployment *kappsv1.Deployment) *DeploymentNode + func FindOrCreateSyntheticDeploymentNode(g osgraph.MutableUniqueGraph, deployment *kappsv1.Deployment) *DeploymentNode + func (*DeploymentNode) Kind() string + func (n DeploymentNode) Found() bool + func (n DeploymentNode) Object() interface{} + func (n DeploymentNode) String() string + func (n DeploymentNode) UniqueName() osgraph.UniqueName + type DeploymentSpecNode struct + DeploymentSpec *kappsv1.DeploymentSpec + Namespace string + OwnerName osgraph.UniqueName + func EnsureDeploymentSpecNode(g osgraph.MutableUniqueGraph, spec *kappsv1.DeploymentSpec, namespace string, ...) *DeploymentSpecNode + func (*DeploymentSpecNode) Kind() string + func (n DeploymentSpecNode) Object() interface{} + func (n DeploymentSpecNode) String() string + func (n DeploymentSpecNode) UniqueName() osgraph.UniqueName + type HorizontalPodAutoscalerNode struct + HorizontalPodAutoscaler *autoscalingv1.HorizontalPodAutoscaler + func EnsureHorizontalPodAutoscalerNode(g osgraph.MutableUniqueGraph, hpa *autoscalingv1.HorizontalPodAutoscaler) *HorizontalPodAutoscalerNode + func (*HorizontalPodAutoscalerNode) Kind() string + func (n HorizontalPodAutoscalerNode) Object() interface{} + func (n HorizontalPodAutoscalerNode) String() string + func (n HorizontalPodAutoscalerNode) UniqueName() osgraph.UniqueName + type JobNode struct + IsFound bool + Job *batchv1.Job + func EnsureJobNode(g osgraph.MutableUniqueGraph, job *batchv1.Job) *JobNode + func (*JobNode) Kind() string + func (n JobNode) Found() bool + func (n JobNode) Object() interface{} + func (n JobNode) String() string + func (n JobNode) UniqueName() osgraph.UniqueName + type JobSpecNode struct + JobSpec *batchv1.JobSpec + Namespace string + OwnerName osgraph.UniqueName + func EnsureJobSpecNode(g osgraph.MutableUniqueGraph, jobSpec *batchv1.JobSpec, namespace string, ...) *JobSpecNode + func (*JobSpecNode) Kind() string + func (n JobSpecNode) Object() interface{} + func (n JobSpecNode) String() string + func (n JobSpecNode) UniqueName() osgraph.UniqueName + type PersistentVolumeClaimNode struct + IsFound bool + PersistentVolumeClaim *corev1.PersistentVolumeClaim + func EnsurePersistentVolumeClaimNode(g osgraph.MutableUniqueGraph, pvc *corev1.PersistentVolumeClaim) *PersistentVolumeClaimNode + func FindOrCreateSyntheticPVCNode(g osgraph.MutableUniqueGraph, pvc *corev1.PersistentVolumeClaim) *PersistentVolumeClaimNode + func (*PersistentVolumeClaimNode) Kind() string + func (n PersistentVolumeClaimNode) Found() bool + func (n PersistentVolumeClaimNode) Object() interface{} + func (n PersistentVolumeClaimNode) String() string + func (n PersistentVolumeClaimNode) UniqueName() osgraph.UniqueName + type PodNode struct + func EnsurePodNode(g osgraph.MutableUniqueGraph, pod *corev1.Pod) *PodNode + func (*PodNode) Kind() string + func (n PodNode) Object() interface{} + func (n PodNode) String() string + func (n PodNode) UniqueName() osgraph.UniqueName + type PodSpecNode struct + Namespace string + OwnerName osgraph.UniqueName + func EnsurePodSpecNode(g osgraph.MutableUniqueGraph, podSpec *corev1.PodSpec, namespace string, ...) *PodSpecNode + func (*PodSpecNode) Kind() string + func (n PodSpecNode) Object() interface{} + func (n PodSpecNode) String() string + func (n PodSpecNode) UniqueName() osgraph.UniqueName + type PodTemplateSpecNode struct + Namespace string + OwnerName osgraph.UniqueName + func EnsurePodTemplateSpecNode(g osgraph.MutableUniqueGraph, ptSpec *corev1.PodTemplateSpec, namespace string, ...) *PodTemplateSpecNode + func (*PodTemplateSpecNode) Kind() string + func (n PodTemplateSpecNode) Object() interface{} + func (n PodTemplateSpecNode) String() string + func (n PodTemplateSpecNode) UniqueName() osgraph.UniqueName + type ReplicaSetNode struct + IsFound bool + ReplicaSet *kappsv1.ReplicaSet + func EnsureReplicaSetNode(g osgraph.MutableUniqueGraph, rs *kappsv1.ReplicaSet) *ReplicaSetNode + func FindOrCreateSyntheticReplicaSetNode(g osgraph.MutableUniqueGraph, rs *kappsv1.ReplicaSet) *ReplicaSetNode + func (*ReplicaSetNode) Kind() string + func (n ReplicaSetNode) Found() bool + func (n ReplicaSetNode) Object() interface{} + func (n ReplicaSetNode) String() string + func (n ReplicaSetNode) UniqueName() osgraph.UniqueName + type ReplicaSetSpecNode struct + Namespace string + OwnerName osgraph.UniqueName + ReplicaSetSpec *kappsv1.ReplicaSetSpec + func EnsureReplicaSetSpecNode(g osgraph.MutableUniqueGraph, rsSpec *kappsv1.ReplicaSetSpec, namespace string, ...) *ReplicaSetSpecNode + func (*ReplicaSetSpecNode) Kind() string + func (n ReplicaSetSpecNode) Object() interface{} + func (n ReplicaSetSpecNode) String() string + func (n ReplicaSetSpecNode) UniqueName() osgraph.UniqueName + type ReplicationControllerNode struct + IsFound bool + ReplicationController *corev1.ReplicationController + func EnsureReplicationControllerNode(g osgraph.MutableUniqueGraph, rc *corev1.ReplicationController) *ReplicationControllerNode + func FindOrCreateSyntheticReplicationControllerNode(g osgraph.MutableUniqueGraph, rc *corev1.ReplicationController) *ReplicationControllerNode + func (*ReplicationControllerNode) Kind() string + func (n ReplicationControllerNode) Found() bool + func (n ReplicationControllerNode) Object() interface{} + func (n ReplicationControllerNode) String() string + func (n ReplicationControllerNode) UniqueName() osgraph.UniqueName + type ReplicationControllerSpecNode struct + Namespace string + OwnerName osgraph.UniqueName + ReplicationControllerSpec *corev1.ReplicationControllerSpec + func EnsureReplicationControllerSpecNode(g osgraph.MutableUniqueGraph, rcSpec *corev1.ReplicationControllerSpec, ...) *ReplicationControllerSpecNode + func (*ReplicationControllerSpecNode) Kind() string + func (n ReplicationControllerSpecNode) Object() interface{} + func (n ReplicationControllerSpecNode) String() string + func (n ReplicationControllerSpecNode) UniqueName() osgraph.UniqueName + type SecretNode struct + IsFound bool + func EnsureSecretNode(g osgraph.MutableUniqueGraph, o *corev1.Secret) *SecretNode + func FindOrCreateSyntheticSecretNode(g osgraph.MutableUniqueGraph, o *corev1.Secret) *SecretNode + func (*SecretNode) Kind() string + func (n SecretNode) Found() bool + func (n SecretNode) Object() interface{} + func (n SecretNode) String() string + type ServiceAccountNode struct + IsFound bool + func EnsureServiceAccountNode(g osgraph.MutableUniqueGraph, o *corev1.ServiceAccount) *ServiceAccountNode + func FindOrCreateSyntheticServiceAccountNode(g osgraph.MutableUniqueGraph, o *corev1.ServiceAccount) *ServiceAccountNode + func (*ServiceAccountNode) Kind() string + func (n ServiceAccountNode) Found() bool + func (n ServiceAccountNode) Object() interface{} + func (n ServiceAccountNode) String() string + type ServiceNode struct + IsFound bool + func EnsureServiceNode(g osgraph.MutableUniqueGraph, svc *corev1.Service) *ServiceNode + func FindOrCreateSyntheticServiceNode(g osgraph.MutableUniqueGraph, svc *corev1.Service) *ServiceNode + func (*ServiceNode) Kind() string + func (n ServiceNode) Found() bool + func (n ServiceNode) Object() interface{} + func (n ServiceNode) String() string + type StatefulSetNode struct + IsFound bool + StatefulSet *kappsv1.StatefulSet + func EnsureStatefulSetNode(g osgraph.MutableUniqueGraph, statefulSet *kappsv1.StatefulSet) *StatefulSetNode + func (*StatefulSetNode) Kind() string + func (n StatefulSetNode) Found() bool + func (n StatefulSetNode) Object() interface{} + func (n StatefulSetNode) String() string + func (n StatefulSetNode) UniqueName() osgraph.UniqueName + type StatefulSetSpecNode struct + Namespace string + OwnerName osgraph.UniqueName + StatefulSetSpec *kappsv1.StatefulSetSpec + func EnsureStatefulSetSpecNode(g osgraph.MutableUniqueGraph, spec *kappsv1.StatefulSetSpec, namespace string, ...) *StatefulSetSpecNode + func (*StatefulSetSpecNode) Kind() string + func (n StatefulSetSpecNode) Object() interface{} + func (n StatefulSetSpecNode) String() string + func (n StatefulSetSpecNode) UniqueName() osgraph.UniqueName v4.0.0-alpha.0 Sep 13, 2018 Other modules containing this package gopkg.in/openshift/origin.v3