diff --git a/controllers/devbox/config/crd/bases/devbox.sealos.io_devboxes.yaml b/controllers/devbox/config/crd/bases/devbox.sealos.io_devboxes.yaml index 8244b5e8b8d..26ff39819b5 100644 --- a/controllers/devbox/config/crd/bases/devbox.sealos.io_devboxes.yaml +++ b/controllers/devbox/config/crd/bases/devbox.sealos.io_devboxes.yaml @@ -44,6 +44,9 @@ spec: - jsonPath: .status.network.nodePort name: NodePort type: integer + - jsonPath: .status.phase + name: Phase + type: string name: v1alpha1 schema: openAPIV3Schema: @@ -2762,6 +2765,8 @@ spec: required: - type type: object + phase: + type: string podPhase: description: PodPhase is a label for the condition of a pod at the current time. diff --git a/controllers/devbox/deploy/manifests/deploy.yaml.tmpl b/controllers/devbox/deploy/manifests/deploy.yaml.tmpl index 3bb02f4ae30..827483b0e65 100644 --- a/controllers/devbox/deploy/manifests/deploy.yaml.tmpl +++ b/controllers/devbox/deploy/manifests/deploy.yaml.tmpl @@ -52,6 +52,9 @@ spec: - jsonPath: .status.network.nodePort name: NodePort type: integer + - jsonPath: .status.phase + name: Phase + type: string name: v1alpha1 schema: openAPIV3Schema: @@ -2770,6 +2773,8 @@ spec: required: - type type: object + phase: + type: string podPhase: description: PodPhase is a label for the condition of a pod at the current time.