removing status
This commit is contained in:
Родитель
fe5692fda4
Коммит
c355deed38
|
@ -4,14 +4,6 @@
|
|||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch test package",
|
||||
"type": "go",
|
||||
"request": "launch",
|
||||
"mode": "test",
|
||||
"program": "${workspaceFolder}"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "Launch",
|
||||
"type": "go",
|
||||
|
|
|
@ -21,13 +21,6 @@ type AgentPoolSpec struct {
|
|||
PoolSpec *corev1.PodSpec `json:"spec"`
|
||||
}
|
||||
|
||||
// AzurePipelinesPoolStatus defines the observed state of AzurePipelinesPool
|
||||
type AzurePipelinesPoolStatus struct {
|
||||
// INSERT ADDITIONAL STATUS FIELD - define observed state of cluster
|
||||
// Important: Run "operator-sdk generate k8s" to regenerate code after modifying this file
|
||||
// Add custom validation using kubebuilder tags: https://book-v1.book.kubebuilder.io/beyond_basics/generating_crd.html
|
||||
}
|
||||
|
||||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
||||
|
||||
// AzurePipelinesPool is the Schema for the azurepipelinespools API
|
||||
|
@ -38,7 +31,6 @@ type AzurePipelinesPool struct {
|
|||
metav1.ObjectMeta `json:"metadata,omitempty"`
|
||||
|
||||
Spec AzurePipelinesPoolSpec `json:"spec,omitempty"`
|
||||
Status AzurePipelinesPoolStatus `json:"status,omitempty"`
|
||||
}
|
||||
|
||||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
|
||||
|
|
|
@ -14,7 +14,6 @@ func (in *AzurePipelinesPool) DeepCopyInto(out *AzurePipelinesPool) {
|
|||
out.TypeMeta = in.TypeMeta
|
||||
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
||||
out.Spec = in.Spec
|
||||
out.Status = in.Status
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -83,20 +82,4 @@ func (in *AzurePipelinesPoolSpec) DeepCopy() *AzurePipelinesPoolSpec {
|
|||
out := new(AzurePipelinesPoolSpec)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *AzurePipelinesPoolStatus) DeepCopyInto(out *AzurePipelinesPoolStatus) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzurePipelinesPoolStatus.
|
||||
func (in *AzurePipelinesPoolStatus) DeepCopy() *AzurePipelinesPoolStatus {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(AzurePipelinesPoolStatus)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче