* Update Go packages ``` github.com/elastic/crd-ref-docs: v0.0.10 -> v0.0.12 github.com/go-git/go-git/v5: v5.11.0 -> v5.12.0 github.com/prometheus/client_golang: v1.18.0 -> v1.19.0 github.com/prometheus/common: v0.46.0 -> v0.53.0 github.com/stretchr/testify: v1.8.4 -> v1.9.0 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp: v0.48.0 -> v0.51.0 go.opentelemetry.io/contrib/propagators/autoprop: v0.48.0 -> v0.51.0 go.opentelemetry.io/otel: v1.23.1 -> v1.26.0 go.opentelemetry.io/otel/exporters/otlp/otlptrace: v1.23.1 -> v1.26.0 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc: v1.23.1 -> v1.26.0 go.opentelemetry.io/otel/sdk: v1.23.1 -> v1.26.0 go.opentelemetry.io/otel/trace: v1.23.1 -> v1.26.0 go.uber.org/zap: v1.26.0 -> v1.27.0 golang.org/x/net: v0.21.0 -> v0.25.0 google.golang.org/grpc: v1.61.1 -> v1.63.2 k8s.io/api: v0.29.2 -> v0.30.0 k8s.io/apiextensions-apiserver: v0.29.2 -> v0.30.0 k8s.io/apimachinery: v0.29.2 -> v0.30.0 k8s.io/client-go: v0.29.2 -> v0.30.0 k8s.io/code-generator: v0.29.2 -> v0.30.0 k8s.io/metrics: v0.29.2 -> v0.30.0 sigs.k8s.io/controller-runtime: v0.17.1 -> v0.18.2 sigs.k8s.io/controller-tools: v0.14.0 -> v0.15.0 ``` * update Makefile and update-codegen.sh with latest packages * Run `make all-generators` --------- Signed-off-by: Md Soharab Ansari <soharab.ansari@infracloud.io>
88 lines
3.2 KiB
YAML
88 lines
3.2 KiB
YAML
---
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
annotations:
|
|
controller-gen.kubebuilder.io/version: v0.15.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: {}
|