Documentation
¶
Index ¶
- Constants
- Variables
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type Blob
- type Build
- func (b *Build) BuildPod(config BuildPodConfig, secrets []corev1.Secret) (*corev1.Pod, error)
- func (b *Build) BuildRef() string
- func (b *Build) BuiltImage() string
- func (in *Build) DeepCopy() *Build
- func (in *Build) DeepCopyInto(out *Build)
- func (in *Build) DeepCopyObject() runtime.Object
- func (b *Build) Finished() bool
- func (*Build) GetGroupVersionKind() schema.GroupVersionKind
- func (b *Build) IsFailure() bool
- func (b *Build) IsRunning() bool
- func (b *Build) IsSuccess() bool
- func (b *Build) MetadataReady(pod *corev1.Pod) bool
- func (b *Build) Namespace() string
- func (b *Build) PodName() string
- func (b *Build) ServiceAccount() string
- func (a *Build) SetDefaults(ctx context.Context)
- func (b *Build) Tag() string
- func (a *Build) Validate(ctx context.Context) *apis.FieldError
- type BuildApplier
- type BuildCreator
- type BuildList
- type BuildPodConfig
- type BuildSpec
- type BuildStatus
- type Builder
- type BuilderList
- type BuilderSpec
- type BuilderStatus
- type BuilderUpdatePolicy
- type BuildpackMetadata
- type BuildpackMetadataList
- type Git
- type GitSourceKind
- type Image
- func (im *Image) BuildCache() *corev1.PersistentVolumeClaim
- func (im *Image) CacheName() string
- func (in *Image) DeepCopy() *Image
- func (in *Image) DeepCopyInto(out *Image)
- func (in *Image) DeepCopyObject() runtime.Object
- func (*Image) GetGroupVersionKind() schema.GroupVersionKind
- func (im *Image) NeedCache() bool
- func (im *Image) ReconcileBuild(latestBuild *Build, resolver *SourceResolver, builder *Builder) (BuildApplier, error)
- func (im *Image) SourceResolver() *SourceResolver
- func (im *Image) SourceResolverName() string
- type ImageBuild
- type ImageList
- type ImageSpec
- type ImageStatus
- type ReconciledBuild
- type ResolvedBlobSource
- type ResolvedGitSource
- type ResolvedSource
- type Source
- type SourceResolver
- func (sr SourceResolver) ConfigChanged(lastBuild *Build) bool
- func (in *SourceResolver) DeepCopy() *SourceResolver
- func (in *SourceResolver) DeepCopyInto(out *SourceResolver)
- func (in *SourceResolver) DeepCopyObject() runtime.Object
- func (*SourceResolver) GetGroupVersionKind() schema.GroupVersionKind
- func (sr SourceResolver) GitRevisionChanged(lastBuild *Build) bool
- func (sr SourceResolver) IsBlob() bool
- func (sr SourceResolver) IsGit() bool
- func (sr *SourceResolver) PollingReady() bool
- func (sr *SourceResolver) Ready() bool
- func (sr *SourceResolver) ResolvedBlobSource(resolvedBlobSource *ResolvedBlobSource)
- func (sr *SourceResolver) ResolvedGitSource(resolvedGitSource *ResolvedGitSource)
- func (sr *SourceResolver) ResolvedSource(resolvedSource ResolvedSource)
- type SourceResolverList
- type SourceResolverSpec
- type SourceResolverStatus
Constants ¶
const ( SecretTemplateName = "secret-volume-%s" SecretPathName = "/var/build-secrets/%s" DOCKERSecretAnnotationPrefix = "build.pivotal.io/docker" GITSecretAnnotationPrefix = "build.pivotal.io/git" )
const ( BuildNumberLabel = "image.build.pivotal.io/buildNumber" ImageLabel = "image.build.pivotal.io/image" BuildReasonAnnotation = "image.build.pivotal.io/reason" BuildReasonConfig = "CONFIG" BuildReasonCommit = "COMMIT" BuildReasonBuildpack = "BUILDPACK" )
const ActivePolling = "ActivePolling"
Variables ¶
var (
// AddToScheme adds Build types to the scheme.
AddToScheme = schemeBuilder.AddToScheme
)
var SchemeGroupVersion = schema.GroupVersion{Group: build.GroupName, Version: "v1alpha1"}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type Blob ¶ added in v0.0.2
type Blob struct {
URL string `json:"url"`
}
func (*Blob) DeepCopy ¶ added in v0.0.2
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Blob.
func (*Blob) DeepCopyInto ¶ added in v0.0.2
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Build ¶
type Build struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec BuildSpec `json:"spec"` Status BuildStatus `json:"status"` }
func (*Build) BuiltImage ¶
func (*Build) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Build.
func (*Build) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Build) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Build) GetGroupVersionKind ¶
func (*Build) GetGroupVersionKind() schema.GroupVersionKind
func (*Build) ServiceAccount ¶
func (*Build) SetDefaults ¶
type BuildApplier ¶ added in v0.0.2
type BuildApplier interface {
Apply(creator BuildCreator) (ReconciledBuild, error)
}
type BuildCreator ¶ added in v0.0.2
type BuildList ¶
type BuildList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []Build `json:"items"` }
func (*BuildList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildList.
func (*BuildList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*BuildList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type BuildPodConfig ¶ added in v0.0.2
type BuildPodConfig struct { SourceInitImage string BuildInitImage string CredsInitImage string NopImage string }
func (*BuildPodConfig) DeepCopy ¶ added in v0.0.2
func (in *BuildPodConfig) DeepCopy() *BuildPodConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildPodConfig.
func (*BuildPodConfig) DeepCopyInto ¶ added in v0.0.2
func (in *BuildPodConfig) DeepCopyInto(out *BuildPodConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BuildSpec ¶
type BuildSpec struct { Tag string `json:"tag"` Builder string `json:"builder"` ServiceAccount string `json:"serviceAccount"` Source Source `json:"source"` CacheName string `json:"cacheName"` AdditionalImageNames []string `json:"additionalImageNames"` Env []corev1.EnvVar `json:"env"` Resources corev1.ResourceRequirements `json:"resources"` }
func (*BuildSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildSpec.
func (*BuildSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*BuildSpec) SetDefaults ¶ added in v0.0.1
type BuildStatus ¶
type BuildStatus struct { duckv1alpha1.Status `json:",inline"` BuildMetadata BuildpackMetadataList `json:"buildMetadata"` SHA string `json:"SHA"` PodName string `json:"podName"` StepStates []corev1.ContainerState `json:"stepStates,omitempty"` StepsCompleted []string `json:"stepsCompleted",omitempty` }
func (*BuildStatus) DeepCopy ¶
func (in *BuildStatus) DeepCopy() *BuildStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildStatus.
func (*BuildStatus) DeepCopyInto ¶
func (in *BuildStatus) DeepCopyInto(out *BuildStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Builder ¶
type Builder struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec BuilderSpec `json:"spec"` Status BuilderStatus `json:"status"` }
func (*Builder) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Builder.
func (*Builder) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Builder) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Builder) GetGroupVersionKind ¶
func (*Builder) GetGroupVersionKind() schema.GroupVersionKind
func (*Builder) Ref ¶ added in v0.0.1
func (b *Builder) Ref() v1.ObjectReference
type BuilderList ¶
type BuilderList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []Builder `json:"items"` }
func (*BuilderList) DeepCopy ¶
func (in *BuilderList) DeepCopy() *BuilderList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuilderList.
func (*BuilderList) DeepCopyInto ¶
func (in *BuilderList) DeepCopyInto(out *BuilderList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*BuilderList) DeepCopyObject ¶
func (in *BuilderList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type BuilderSpec ¶
type BuilderSpec struct { Image string `json:"image"` UpdatePolicy BuilderUpdatePolicy `json:"updatePolicy"` }
func (*BuilderSpec) DeepCopy ¶
func (in *BuilderSpec) DeepCopy() *BuilderSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuilderSpec.
func (*BuilderSpec) DeepCopyInto ¶
func (in *BuilderSpec) DeepCopyInto(out *BuilderSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BuilderStatus ¶
type BuilderStatus struct { duckv1alpha1.Status `json:",inline"` BuilderMetadata BuildpackMetadataList `json:"builderMetadata"` }
func (*BuilderStatus) DeepCopy ¶
func (in *BuilderStatus) DeepCopy() *BuilderStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuilderStatus.
func (*BuilderStatus) DeepCopyInto ¶
func (in *BuilderStatus) DeepCopyInto(out *BuilderStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BuilderUpdatePolicy ¶ added in v0.0.2
type BuilderUpdatePolicy string
const ( Polling BuilderUpdatePolicy = "polling" External BuilderUpdatePolicy = "external" )
type BuildpackMetadata ¶ added in v0.0.1
func (*BuildpackMetadata) DeepCopy ¶ added in v0.0.1
func (in *BuildpackMetadata) DeepCopy() *BuildpackMetadata
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildpackMetadata.
func (*BuildpackMetadata) DeepCopyInto ¶ added in v0.0.1
func (in *BuildpackMetadata) DeepCopyInto(out *BuildpackMetadata)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BuildpackMetadataList ¶ added in v0.0.1
type BuildpackMetadataList []BuildpackMetadata
func (BuildpackMetadataList) DeepCopy ¶ added in v0.0.2
func (in BuildpackMetadataList) DeepCopy() BuildpackMetadataList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildpackMetadataList.
func (BuildpackMetadataList) DeepCopyInto ¶ added in v0.0.2
func (in BuildpackMetadataList) DeepCopyInto(out *BuildpackMetadataList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (BuildpackMetadataList) Include ¶ added in v0.0.1
func (l BuildpackMetadataList) Include(q BuildpackMetadata) bool
type Git ¶ added in v0.0.1
func (*Git) DeepCopy ¶ added in v0.0.1
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Git.
func (*Git) DeepCopyInto ¶ added in v0.0.1
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GitSourceKind ¶ added in v0.0.2
type GitSourceKind string
const ( Unknown GitSourceKind = "Unknown" Branch GitSourceKind = "Branch" Tag GitSourceKind = "Tag" Commit GitSourceKind = "Commit" )
type Image ¶
type Image struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ImageSpec `json:"spec"` Status ImageStatus `json:"status"` }
func (*Image) BuildCache ¶
func (im *Image) BuildCache() *corev1.PersistentVolumeClaim
func (*Image) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Image.
func (*Image) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Image) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Image) GetGroupVersionKind ¶
func (*Image) GetGroupVersionKind() schema.GroupVersionKind
func (*Image) ReconcileBuild ¶ added in v0.0.2
func (im *Image) ReconcileBuild(latestBuild *Build, resolver *SourceResolver, builder *Builder) (BuildApplier, error)
func (*Image) SourceResolver ¶
func (im *Image) SourceResolver() *SourceResolver
func (*Image) SourceResolverName ¶
type ImageBuild ¶
type ImageBuild struct { Env []corev1.EnvVar `json:"env"` Resources corev1.ResourceRequirements `json:"resources"` }
func (*ImageBuild) DeepCopy ¶
func (in *ImageBuild) DeepCopy() *ImageBuild
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageBuild.
func (*ImageBuild) DeepCopyInto ¶
func (in *ImageBuild) DeepCopyInto(out *ImageBuild)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ImageList ¶
type ImageList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []Image `json:"items"` }
func (*ImageList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageList.
func (*ImageList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ImageList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ImageSpec ¶
type ImageSpec struct { Tag string `json:"tag"` BuilderRef string `json:"builderRef"` ServiceAccount string `json:"serviceAccount"` Source Source `json:"source"` CacheSize *resource.Quantity `json:"cacheSize,omitempty"` FailedBuildHistoryLimit *int64 `json:"failedBuildHistoryLimit"` SuccessBuildHistoryLimit *int64 `json:"successBuildHistoryLimit"` DisableAdditionalImageNames bool `json:"disableAdditionalImageNames"` Build ImageBuild `json:"build"` }
func (*ImageSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageSpec.
func (*ImageSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ImageStatus ¶
type ImageStatus struct { duckv1alpha1.Status `json:",inline"` LatestBuildRef string `json:"latestBuildRef"` LatestImage string `json:"latestImage"` BuildCounter int64 `json:"buildCounter"` BuildCacheName string `json:"buildCacheName"` }
func (*ImageStatus) DeepCopy ¶
func (in *ImageStatus) DeepCopy() *ImageStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageStatus.
func (*ImageStatus) DeepCopyInto ¶
func (in *ImageStatus) DeepCopyInto(out *ImageStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ReconciledBuild ¶ added in v0.0.2
func (*ReconciledBuild) DeepCopy ¶ added in v0.0.2
func (in *ReconciledBuild) DeepCopy() *ReconciledBuild
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReconciledBuild.
func (*ReconciledBuild) DeepCopyInto ¶ added in v0.0.2
func (in *ReconciledBuild) DeepCopyInto(out *ReconciledBuild)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResolvedBlobSource ¶ added in v0.0.2
type ResolvedBlobSource struct {
URL string `json:"url"`
}
func (*ResolvedBlobSource) DeepCopy ¶ added in v0.0.2
func (in *ResolvedBlobSource) DeepCopy() *ResolvedBlobSource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResolvedBlobSource.
func (*ResolvedBlobSource) DeepCopyInto ¶ added in v0.0.2
func (in *ResolvedBlobSource) DeepCopyInto(out *ResolvedBlobSource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResolvedGitSource ¶ added in v0.0.2
type ResolvedGitSource struct { URL string `json:"url"` Revision string `json:"commit"` Type GitSourceKind `json:"type"` }
func (*ResolvedGitSource) DeepCopy ¶ added in v0.0.2
func (in *ResolvedGitSource) DeepCopy() *ResolvedGitSource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResolvedGitSource.
func (*ResolvedGitSource) DeepCopyInto ¶ added in v0.0.2
func (in *ResolvedGitSource) DeepCopyInto(out *ResolvedGitSource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ResolvedGitSource) IsPollable ¶ added in v0.0.2
func (gs *ResolvedGitSource) IsPollable() bool
func (*ResolvedGitSource) IsUnknown ¶ added in v0.0.2
func (gs *ResolvedGitSource) IsUnknown() bool
type ResolvedSource ¶ added in v0.0.2
type ResolvedSource struct { Git *ResolvedGitSource `json:"git,omitempty"` Blob *ResolvedBlobSource `json:"blob,omitempty"` }
func (*ResolvedSource) DeepCopy ¶ added in v0.0.2
func (in *ResolvedSource) DeepCopy() *ResolvedSource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResolvedSource.
func (*ResolvedSource) DeepCopyInto ¶ added in v0.0.2
func (in *ResolvedSource) DeepCopyInto(out *ResolvedSource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Source ¶ added in v0.0.1
func (*Source) DeepCopy ¶ added in v0.0.1
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Source.
func (*Source) DeepCopyInto ¶ added in v0.0.1
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SourceResolver ¶
type SourceResolver struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec SourceResolverSpec `json:"spec"` Status SourceResolverStatus `json:"status"` }
func (SourceResolver) ConfigChanged ¶ added in v0.0.2
func (sr SourceResolver) ConfigChanged(lastBuild *Build) bool
func (*SourceResolver) DeepCopy ¶
func (in *SourceResolver) DeepCopy() *SourceResolver
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SourceResolver.
func (*SourceResolver) DeepCopyInto ¶
func (in *SourceResolver) DeepCopyInto(out *SourceResolver)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SourceResolver) DeepCopyObject ¶
func (in *SourceResolver) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*SourceResolver) GetGroupVersionKind ¶
func (*SourceResolver) GetGroupVersionKind() schema.GroupVersionKind
func (SourceResolver) GitRevisionChanged ¶ added in v0.0.2
func (sr SourceResolver) GitRevisionChanged(lastBuild *Build) bool
func (SourceResolver) IsBlob ¶
func (sr SourceResolver) IsBlob() bool
func (SourceResolver) IsGit ¶
func (sr SourceResolver) IsGit() bool
func (*SourceResolver) PollingReady ¶
func (sr *SourceResolver) PollingReady() bool
func (*SourceResolver) Ready ¶
func (sr *SourceResolver) Ready() bool
func (*SourceResolver) ResolvedBlobSource ¶ added in v0.0.2
func (sr *SourceResolver) ResolvedBlobSource(resolvedBlobSource *ResolvedBlobSource)
func (*SourceResolver) ResolvedGitSource ¶ added in v0.0.2
func (sr *SourceResolver) ResolvedGitSource(resolvedGitSource *ResolvedGitSource)
func (*SourceResolver) ResolvedSource ¶
func (sr *SourceResolver) ResolvedSource(resolvedSource ResolvedSource)
type SourceResolverList ¶
type SourceResolverList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []SourceResolver `json:"items"` }
func (*SourceResolverList) DeepCopy ¶
func (in *SourceResolverList) DeepCopy() *SourceResolverList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SourceResolverList.
func (*SourceResolverList) DeepCopyInto ¶
func (in *SourceResolverList) DeepCopyInto(out *SourceResolverList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SourceResolverList) DeepCopyObject ¶
func (in *SourceResolverList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type SourceResolverSpec ¶
type SourceResolverSpec struct { ServiceAccount string `json:"serviceAccount"` Source Source `json:"source"` }
func (*SourceResolverSpec) DeepCopy ¶
func (in *SourceResolverSpec) DeepCopy() *SourceResolverSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SourceResolverSpec.
func (*SourceResolverSpec) DeepCopyInto ¶
func (in *SourceResolverSpec) DeepCopyInto(out *SourceResolverSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SourceResolverStatus ¶
type SourceResolverStatus struct { duckv1alpha1.Status `json:",inline"` ResolvedSource ResolvedSource `json:"resolvedSource"` }
func (*SourceResolverStatus) DeepCopy ¶
func (in *SourceResolverStatus) DeepCopy() *SourceResolverStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SourceResolverStatus.
func (*SourceResolverStatus) DeepCopyInto ¶
func (in *SourceResolverStatus) DeepCopyInto(out *SourceResolverStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.