Implement resource details for Jobs #339
Labels
controller
Update on controller
go
Pull requests that update Go code
good first issue
Good for newcomers
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 Jobs on the same endpoint. The endpoint for fetching Jobs data would look like this:
The handler function for the endpoint is here, and you will have to handle a new type here.
You can add data about pods a Job is managing and its status similar to what we are doing with Deployments.
Refer to this PR on adding new types #259
To be able to test this, you will need to use a template that supports jobs. You should add the following template and create a Module from it:
The text was updated successfully, but these errors were encountered: