Skip to content

Commit

Permalink
operator dapr-kubernetes-operator (0.0.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
lburgazzoli authored Sep 28, 2023
1 parent 632c2d5 commit 92ec332
Show file tree
Hide file tree
Showing 9 changed files with 1,529 additions and 0 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
creationTimestamp: null
labels:
app.kubernetes.io/part-of: dapr
name: components.dapr.io
spec:
group: dapr.io
names:
categories:
- all
- dapr
kind: Component
plural: components
singular: component
scope: Namespaced
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
description: Component describes an Dapr component type
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
auth:
description: Auth represents authentication details for the component
properties:
secretStore:
type: string
required:
- secretStore
type: object
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
scopes:
items:
type: string
type: array
spec:
description: ComponentSpec is the spec for a component
properties:
ignoreErrors:
type: boolean
initTimeout:
type: string
metadata:
items:
description: MetadataItem is a name/value pair for a metadata
properties:
name:
type: string
secretKeyRef:
description: SecretKeyRef is a reference to a secret holding
the value for the metadata item. Name is the secret name,
and key is the field in the secret.
properties:
key:
type: string
name:
type: string
required:
- key
- name
type: object
value:
x-kubernetes-preserve-unknown-fields: true
required:
- name
type: object
type: array
type:
type: string
version:
type: string
required:
- metadata
- type
- version
type: object
type: object
served: true
storage: true
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
Loading

0 comments on commit 92ec332

Please sign in to comment.