Skip to content

Commit

Permalink
Merge pull request #977 from headlamp-k8s/cron-doc
Browse files Browse the repository at this point in the history
frontend KubeCronJob: Created documentation comments
  • Loading branch information
joaquimrocha authored Feb 22, 2023
2 parents 9bd28ca + f9fe584 commit bb02e63
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/src/lib/k8s/cronJob.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
import { apiFactoryWithNamespace } from './apiProxy';
import { KubeObjectInterface, makeKubeObject } from './cluster';

/**
* CronJob structure returned by the k8s API.
*
* @see {@link https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/cron-job-v1/} Kubernetes API reference for CronJob
*
* @see {@link https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/} Kubernetes definition for CronJob
*/
export interface KubeCronJob extends KubeObjectInterface {
spec: {
suspend: boolean;
Expand Down

0 comments on commit bb02e63

Please sign in to comment.