You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reqLogger.Info("Pod already exists, but is not yet running", "Pod.Namespace", found.Namespace, "Pod.Name", found.Name, "Pod.Phase", found.Status.Phase)
182
+
return reconcile.Result{}, nil
183
+
}
184
+
185
+
// Pod already exists and is running - set status ready
reqLogger.Info("Pod already exists, but is not yet running", "Pod.Namespace", found.Namespace, "Pod.Name", found.Name, "Pod.Phase", found.Status.Phase)
180
+
return reconcile.Result{}, nil
181
+
}
182
+
183
+
// Pod already exists and is running - set status ready
// INSERT ADDITIONAL STATUS FIELDS - define observed state of cluster
66
74
// Important: Run "operator-sdk generate k8s" to regenerate code after modifying this file
67
75
// Add custom validation using kubebuilder tags: https://book.kubebuilder.io/beyond_basics/generating_crd.html
76
+
// For status conventions, see https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties
// INSERT ADDITIONAL STATUS FIELDS - define observed state of cluster
61
69
// Important: Run "operator-sdk generate k8s" to regenerate code after modifying this file
62
70
// Add custom validation using kubebuilder tags: https://book.kubebuilder.io/beyond_basics/generating_crd.html
71
+
// For status conventions, see https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties
0 commit comments