Skip to content

Commit

Permalink
operator function-mesh (0.15.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
streamnativebot authored Aug 16, 2023
1 parent f5b14a8 commit ba74437
Show file tree
Hide file tree
Showing 18 changed files with 21,890 additions and 0 deletions.
25 changes: 25 additions & 0 deletions operators/function-mesh/0.15.0/bundle.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM scratch

# Core bundle labels.
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=function-mesh
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.13.0+git
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3

# Labels for testing.
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/

# Copy files to locations specified by labels.
COPY bundle/manifests /manifests/
COPY bundle/metadata /metadata/
COPY bundle/tests/scorecard /tests/scorecard/
# Certified Openshift required labels
LABEL com.redhat.openshift.versions="v4.8-v4.11"
LABEL com.redhat.delivery.operator.bundle=true
LABEL com.redhat.delivery.backport=true
LABEL operators.operatorframework.io.bundle.channel.default.v1="alpha"
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
cert-manager.io/inject-ca-from: default/function-mesh-serving-cert
controller-gen.kubebuilder.io/version: v0.9.2
creationTimestamp: null
name: connectorcatalogs.compute.functionmesh.io
spec:
conversion:
strategy: Webhook
webhook:
clientConfig:
service:
name: webhook-service
namespace: default
path: /convert
port: 443
conversionReviewVersions:
- v1
- v1beta1
group: compute.functionmesh.io
names:
kind: ConnectorCatalog
listKind: ConnectorCatalogList
plural: connectorcatalogs
singular: connectorcatalog
scope: Cluster
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
connectorDefinitions:
items:
properties:
defaultSchemaType:
type: string
defaultSerdeClassName:
type: string
description:
type: string
id:
type: string
imageRegistry:
type: string
imageRepository:
type: string
imageTag:
type: string
jarFullName:
type: string
name:
type: string
sinkClass:
type: string
sinkConfigClass:
type: string
sinkConfigFieldDefinitions:
items:
properties:
attributes:
additionalProperties:
type: string
type: object
fieldName:
type: string
typeName:
type: string
required:
- fieldName
- typeName
type: object
type: array
sinkTypeClassName:
type: string
sourceClass:
type: string
sourceConfigClass:
type: string
sourceConfigFieldDefinitions:
items:
properties:
attributes:
additionalProperties:
type: string
type: object
fieldName:
type: string
typeName:
type: string
required:
- fieldName
- typeName
type: object
type: array
sourceTypeClassName:
type: string
typeClassName:
type: string
version:
type: string
required:
- id
type: object
type: array
x-kubernetes-list-map-keys:
- id
x-kubernetes-list-type: map
required:
- connectorDefinitions
type: object
status:
type: object
type: object
served: true
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
Loading

0 comments on commit ba74437

Please sign in to comment.