- k8s.io/api v0.28.1 - k8s.io/apiextensions-apiserver v0.28.1 - k8s.io/apimachinery v0.28.1 - k8s.io/client-go v0.28.1 - k8s.io/metrics v0.28.1 - sigs.k8s.io/controller-runtime v0.16.1 - sigs.k8s.io/controller-tools v0.13.0 Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
79 lines
3.0 KiB
YAML
79 lines
3.0 KiB
YAML
---
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
annotations:
|
|
controller-gen.kubebuilder.io/version: v0.13.0
|
|
name: timetriggers.fission.io
|
|
spec:
|
|
group: fission.io
|
|
names:
|
|
kind: TimeTrigger
|
|
listKind: TimeTriggerList
|
|
plural: timetriggers
|
|
singular: timetrigger
|
|
scope: Namespaced
|
|
versions:
|
|
- name: v1
|
|
schema:
|
|
openAPIV3Schema:
|
|
description: TimeTrigger invokes functions based on given cron schedule.
|
|
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: TimeTriggerSpec invokes the specific function at a time or
|
|
times specified by a cron string.
|
|
properties:
|
|
cron:
|
|
description: Cron schedule
|
|
type: string
|
|
functionref:
|
|
description: The reference to function
|
|
properties:
|
|
functionweights:
|
|
additionalProperties:
|
|
type: integer
|
|
description: Function Reference by weight. this map contains function
|
|
name as key and its weight as the value. This is for canary
|
|
upgrade purpose.
|
|
nullable: true
|
|
type: object
|
|
name:
|
|
description: Name of the function.
|
|
type: string
|
|
type:
|
|
description: 'Type indicates whether this function reference is
|
|
by name or selector. For now, the only supported reference type
|
|
is by "name". Future reference types: * Function by label or
|
|
annotation * Branch or tag of a versioned function * A "rolling
|
|
upgrade" from one version of a function to another Available
|
|
value: - name - function-weights'
|
|
type: string
|
|
required:
|
|
- name
|
|
- type
|
|
type: object
|
|
required:
|
|
- cron
|
|
- functionref
|
|
type: object
|
|
required:
|
|
- metadata
|
|
- spec
|
|
type: object
|
|
served: true
|
|
storage: true
|
|
subresources:
|
|
status: {}
|