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

Implement resource details for DaemonSet #302

Closed
petar-cvit opened this issue May 28, 2024 · 3 comments
Closed

Implement resource details for DaemonSet #302

petar-cvit opened this issue May 28, 2024 · 3 comments
Assignees
Labels
controller Update on controller go Pull requests that update Go code good first issue Good for newcomers

Comments

@petar-cvit
Copy link
Collaborator

Is your feature request related to a problem? Please describe.
When fetching resources for a Module, some resources are supported to return details about a specific resource. For example, the endpoint for Deployments will return more information about pods and their statuses, and the endpoint for Services will return information about the ports.

If you want to fetch information about a Deployment form default namespace called demo-app you would call:
/resources?group=apps&version=v1&kind=Deployment&name=demo-app&namespace=default

The goal of the issue is to support DaemonSets on the same endpoint. The endpoint for fetching DaemonSet data would look like this: /resources?group=apps&version=v1&kind=DaemonSet&name=&namespace=

The handler function for the endpoint is here, and you will have to handle a new type here.

You can add data about pods and its status similar to what we are doing with Deployments.

Refer to this PR on adding new types #259

@petar-cvit petar-cvit added good first issue Good for newcomers go Pull requests that update Go code controller Update on controller labels May 28, 2024
@FengMeizuo
Copy link
Contributor

This sounds interesting. Can I take this one ?

@petar-cvit
Copy link
Collaborator Author

Hey @FengMeizuo, sure!

@petar-cvit
Copy link
Collaborator Author

You can use the following template to create a DaemonSet:

repo: https://github.com/cyclops-ui/templates
path: demo
version: test-daemonset-endpoint

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
controller Update on controller go Pull requests that update Go code good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants