Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

controller should reconcile the status of PodGroup #166

Closed
1 of 2 tasks
Huang-Wei opened this issue Mar 19, 2021 · 15 comments · Fixed by #170 or #308
Closed
1 of 2 tasks

controller should reconcile the status of PodGroup #166

Huang-Wei opened this issue Mar 19, 2021 · 15 comments · Fixed by #170 or #308
Assignees
Labels
kind/bug Categorizes issue or PR as related to a bug. lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale.

Comments

@Huang-Wei
Copy link
Contributor

Huang-Wei commented Mar 19, 2021

In the latest code, the controller doesn't quite reconcile the status of PodGroup:

  • Field status.Scheduled not displayed - fixed by controller should reconcile the status of PodGroup #166

    If a PodGroup is created, we'd expect all status fields to display properly. But for now it's only status.phase.

    $ k get pg pg1 -o yaml 
    ...
    status:
      phase: pending
    
  • status.phase not reconciled well

    If a PodGroup doesn't have any associated Pods, it should stay in Pending state. However, it sometimes stays in Running (or other state). We's expect status to be always reconciled.

/kind bug

@k8s-ci-robot k8s-ci-robot added the kind/bug Categorizes issue or PR as related to a bug. label Mar 19, 2021
@Huang-Wei
Copy link
Contributor Author

@cwdsuzhou @denkensk could you take some time to look into the above 2 issues?

@cwdsuzhou
Copy link
Member

I will open a PR to resolve these issues

@cwdsuzhou
Copy link
Member

/assign

@cwdsuzhou
Copy link
Member

@Huang-Wei

to resolve the 1st issue, we just need remove omitempty of these fields.

about the 2nd issue, I have different opinions. If a group has been Running , it should not go back to Pending again. IMO, we should covert it to Success, Failed or Unknown. If no associated Pods exist, Unknown would be better. For other status, conversion should be similar.

WDYT?

@Huang-Wei
Copy link
Contributor Author

to resolve the 1st issue, we just need remove omitempty of these fields.

Thanks. Please raise a PR fixing that.

IMO, we should covert it to Success, Failed or Unknown. If no associated Pods exist, Unknown would be better. For other status, conversion should be similar.

It sounds strange to use different states to show whether a PodGroup has been scheduled successfully once or not. Shouldn't the state just stick to its actual state, in a "stateless" manner?

@cwdsuzhou
Copy link
Member

to resolve the 1st issue, we just need remove omitempty of these fields.

Thanks. Please raise a PR fixing that.

This does not work. I raise a PR, just add default value to status

@cwdsuzhou
Copy link
Member

It sounds strange to use different states to show whether a PodGroup has been scheduled successfully once or not. Shouldn't the state just stick to its actual state, in a "stateless" manner?

Usually, a PG would be related to a job, from the perspective of a job, job status should not be from Running to Pending

@Huang-Wei
Copy link
Contributor Author

/reopen
as the 2nd item hasn't been resolved.

I think the workflow of how status changes need to rethink a bit. Probably it should be accompanied by informational messages, so that users can know what phase a PodGropu is in, for what reason.

@k8s-ci-robot
Copy link
Contributor

@Huang-Wei: Reopened this issue.

In response to this:

/reopen
as the 2nd item hasn't been resolved.

I think the workflow of how status changes need to rethink a bit. Probably it should be accompanied by informational messages, so that users can know what phase a PodGropu is in, for what reason.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@k8s-ci-robot k8s-ci-robot reopened this Mar 31, 2021
@fejta-bot
Copy link

Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually close.

If this issue is safe to close now please do so with /close.

Send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jun 29, 2021
@k8s-triage-robot
Copy link

Stale issues rot after 30d of inactivity.
Mark the issue as fresh with /remove-lifecycle rotten.
Rotten issues close after an additional 30d of inactivity.

If this issue is safe to close now please do so with /close.

Send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle rotten

@k8s-ci-robot k8s-ci-robot added lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. and removed lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. labels Jul 29, 2021
@Huang-Wei
Copy link
Contributor Author

/remove-lifecycle rotten

@k8s-ci-robot k8s-ci-robot removed the lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. label Aug 2, 2021
@JaneLiuL
Copy link
Member

JaneLiuL commented Sep 7, 2021

/assign I would like to have a try.

@JaneLiuL
Copy link
Member

JaneLiuL commented Sep 7, 2021

Is it scenario as below is correct? Actually I am really confuse about the PodGroup status. If my understand is correct, I would like to create a doc to describe first. Then I would like to fix the code issue for it :)
@Huang-Wei

Case 1:
Create podGroup minMember=2 , podGroup.status.Phase=pending
PodNum=0 , podGroup.status.Phase=pending
PodNum=2 (Pod all success) , podGroup.status.Phase=pending-->PreScheduling-->Scheduling-->Finished-->Scheduled
PodNum=1 (Pod all success) , podGroup.status.Phase=Scheduled-->Failed
PodNum=0 , podGroup.status.Phase=Failed-->Pending

Case 2:
Create podGroup minMember=2 , podGroup.status.Phase=pending
PodNum=0 , podGroup.status.Phase=pending
PodNum=2 (Pod all fail to start, like imagePullFail) , podGroup.status.Phase=pending--->PreScheduling-->Scheduling-->Failed
PodNum=2 (Pod all success) , podGroup.status.Phase=Failed--->PreScheduling-->Scheduling-->Scheduled
PodNum=0 , podGroup.status.Phase=Scheduled-->Pending

@k8s-triage-robot
Copy link

The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs.

This bot triages issues and PRs according to the following rules:

  • After 90d of inactivity, lifecycle/stale is applied
  • After 30d of inactivity since lifecycle/stale was applied, lifecycle/rotten is applied
  • After 30d of inactivity since lifecycle/rotten was applied, the issue is closed

You can:

  • Mark this issue or PR as fresh with /remove-lifecycle stale
  • Mark this issue or PR as rotten with /lifecycle rotten
  • Close this issue or PR with /close
  • Offer to help out with Issue Triage

Please send feedback to sig-contributor-experience at kubernetes/community.

/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Dec 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Categorizes issue or PR as related to a bug. lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale.
Projects
None yet
6 participants