Merge pull request #517 from cwyl02/default-observed-generation
This commit is contained in:
commit
ddad549828
|
@ -189,6 +189,7 @@ type Bucket struct {
|
||||||
metav1.ObjectMeta `json:"metadata,omitempty"`
|
metav1.ObjectMeta `json:"metadata,omitempty"`
|
||||||
|
|
||||||
Spec BucketSpec `json:"spec,omitempty"`
|
Spec BucketSpec `json:"spec,omitempty"`
|
||||||
|
// +kubebuilder:default={"observedGeneration":-1}
|
||||||
Status BucketStatus `json:"status,omitempty"`
|
Status BucketStatus `json:"status,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -262,6 +262,7 @@ type GitRepository struct {
|
||||||
metav1.ObjectMeta `json:"metadata,omitempty"`
|
metav1.ObjectMeta `json:"metadata,omitempty"`
|
||||||
|
|
||||||
Spec GitRepositorySpec `json:"spec,omitempty"`
|
Spec GitRepositorySpec `json:"spec,omitempty"`
|
||||||
|
// +kubebuilder:default={"observedGeneration":-1}
|
||||||
Status GitRepositoryStatus `json:"status,omitempty"`
|
Status GitRepositoryStatus `json:"status,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -231,6 +231,7 @@ type HelmChart struct {
|
||||||
metav1.ObjectMeta `json:"metadata,omitempty"`
|
metav1.ObjectMeta `json:"metadata,omitempty"`
|
||||||
|
|
||||||
Spec HelmChartSpec `json:"spec,omitempty"`
|
Spec HelmChartSpec `json:"spec,omitempty"`
|
||||||
|
// +kubebuilder:default={"observedGeneration":-1}
|
||||||
Status HelmChartStatus `json:"status,omitempty"`
|
Status HelmChartStatus `json:"status,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -178,6 +178,7 @@ type HelmRepository struct {
|
||||||
metav1.ObjectMeta `json:"metadata,omitempty"`
|
metav1.ObjectMeta `json:"metadata,omitempty"`
|
||||||
|
|
||||||
Spec HelmRepositorySpec `json:"spec,omitempty"`
|
Spec HelmRepositorySpec `json:"spec,omitempty"`
|
||||||
|
// +kubebuilder:default={"observedGeneration":-1}
|
||||||
Status HelmRepositoryStatus `json:"status,omitempty"`
|
Status HelmRepositoryStatus `json:"status,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -111,6 +111,8 @@ spec:
|
||||||
- interval
|
- interval
|
||||||
type: object
|
type: object
|
||||||
status:
|
status:
|
||||||
|
default:
|
||||||
|
observedGeneration: -1
|
||||||
description: BucketStatus defines the observed state of a bucket
|
description: BucketStatus defines the observed state of a bucket
|
||||||
properties:
|
properties:
|
||||||
artifact:
|
artifact:
|
||||||
|
|
|
@ -166,6 +166,8 @@ spec:
|
||||||
- url
|
- url
|
||||||
type: object
|
type: object
|
||||||
status:
|
status:
|
||||||
|
default:
|
||||||
|
observedGeneration: -1
|
||||||
description: GitRepositoryStatus defines the observed state of a Git repository.
|
description: GitRepositoryStatus defines the observed state of a Git repository.
|
||||||
properties:
|
properties:
|
||||||
artifact:
|
artifact:
|
||||||
|
|
|
@ -128,6 +128,8 @@ spec:
|
||||||
- sourceRef
|
- sourceRef
|
||||||
type: object
|
type: object
|
||||||
status:
|
status:
|
||||||
|
default:
|
||||||
|
observedGeneration: -1
|
||||||
description: HelmChartStatus defines the observed state of the HelmChart.
|
description: HelmChartStatus defines the observed state of the HelmChart.
|
||||||
properties:
|
properties:
|
||||||
artifact:
|
artifact:
|
||||||
|
|
|
@ -95,6 +95,8 @@ spec:
|
||||||
- url
|
- url
|
||||||
type: object
|
type: object
|
||||||
status:
|
status:
|
||||||
|
default:
|
||||||
|
observedGeneration: -1
|
||||||
description: HelmRepositoryStatus defines the observed state of the HelmRepository.
|
description: HelmRepositoryStatus defines the observed state of the HelmRepository.
|
||||||
properties:
|
properties:
|
||||||
artifact:
|
artifact:
|
||||||
|
|
Loading…
Reference in New Issue