-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sebastian Hoß <[email protected]>
- Loading branch information
Showing
11 changed files
with
4,067 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,916 changes: 1,916 additions & 0 deletions
1,916
crd-catalog/theketchio/ketch/theketch.io/v1beta1/apps.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
140 changes: 140 additions & 0 deletions
140
crd-catalog/theketchio/ketch/theketch.io/v1beta1/jobs.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.6.2 | ||
name: jobs.theketch.io | ||
spec: | ||
group: theketch.io | ||
names: | ||
kind: Job | ||
listKind: JobList | ||
plural: jobs | ||
singular: job | ||
scope: Namespaced | ||
versions: | ||
- name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Job is the Schema for the jobs API | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: JobSpec defines the desired state of Job | ||
properties: | ||
backoffLimit: | ||
minimum: 0.0 | ||
type: integer | ||
completions: | ||
type: integer | ||
containers: | ||
items: | ||
description: Container represents a single container run in a Job | ||
properties: | ||
command: | ||
items: | ||
type: string | ||
type: array | ||
image: | ||
type: string | ||
name: | ||
type: string | ||
required: | ||
- command | ||
- image | ||
- name | ||
type: object | ||
type: array | ||
description: | ||
type: string | ||
failedJobsHistoryLimit: | ||
type: integer | ||
name: | ||
type: string | ||
namespace: | ||
type: string | ||
parallelism: | ||
type: integer | ||
policy: | ||
description: Policy represents the policy types a job can have | ||
properties: | ||
concurrencyPolicy: | ||
description: CronJob-specific | ||
type: string | ||
restartPolicy: | ||
description: RestartPolicy describes how the container should be restarted. Only one of the following restart policies may be specified. If none of the following policies is specified, the default one is RestartPolicyAlways. | ||
type: string | ||
type: object | ||
schedule: | ||
description: CronJob-specific | ||
type: string | ||
startingDeadlineSeconds: | ||
type: integer | ||
successfulJobsHistoryLimit: | ||
type: integer | ||
suspend: | ||
type: boolean | ||
type: | ||
type: string | ||
version: | ||
type: string | ||
required: | ||
- name | ||
- namespace | ||
- type | ||
type: object | ||
status: | ||
description: JobStatus defines the observed state of Job | ||
properties: | ||
active: | ||
description: CronJob-specific | ||
type: boolean | ||
conditions: | ||
items: | ||
description: Condition contains details for the current condition of this app. | ||
properties: | ||
lastTransitionTime: | ||
description: LastTransitionTime is the timestamp corresponding to the last status. | ||
format: date-time | ||
type: string | ||
message: | ||
description: A human readable message indicating details about why the application is in this condition. | ||
type: string | ||
status: | ||
description: Status of the condition. | ||
type: string | ||
type: | ||
description: Type of the condition. | ||
type: string | ||
required: | ||
- status | ||
- type | ||
type: object | ||
type: array | ||
lastScheduleTime: | ||
format: date-time | ||
type: string | ||
lastSuccessfulTime: | ||
format: date-time | ||
type: string | ||
required: | ||
- active | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: '' | ||
plural: '' | ||
conditions: [] | ||
storedVersions: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pub mod v1beta1; |
Oops, something went wrong.