type MobileSecurityServiceSpec struct { |
// INSERT ADDITIONAL SPEC FIELDS - desired state of cluster |
// Important: Run "operator-sdk generate k8s" to regenerate code after modifying this file |
// Add custom validation using kubebuilder tags: https://book.kubebuilder.io/beyond_basics/generating_crd.html |
Size int32 `json:"size"` |
} |
|
// MobileSecurityServiceStatus defines the observed state of MobileSecurityService |
// +k8s:openapi-gen=true |
type MobileSecurityServiceStatus 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.kubebuilder.io/beyond_basics/generating_crd.html |
Nodes []string `json:"nodes"` |
}
|