https://github.com/kubeflow/katib
Raw File
Tip revision: c8c5fc68a73115b48296981f23445d5480f51f9f authored by DeeperMind on 20 February 2019, 19:35:53 UTC
Suggestion do not need to handle uncompleted trials
Tip revision: c8c5fc6
crd.yaml
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
  name: studyjobs.kubeflow.org
spec:
  group: kubeflow.org
  version: v1alpha1
  scope: Namespaced
  names:
    kind: StudyJob
    singular: studyjob
    plural: studyjobs
  additionalPrinterColumns:
  - JSONPath: .status.condition
    name: Condition
    type: string
  - JSONPath: .metadata.creationTimestamp
    name: Age
    type: date
back to top