Skip to content

Commit

Permalink
operator temporal-operator (0.13.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrevilain authored Jan 6, 2024
1 parent 4992010 commit f552cb9
Show file tree
Hide file tree
Showing 7 changed files with 3,891 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
app.kubernetes.io/component: webhook
app.kubernetes.io/created-by: temporal-operator
app.kubernetes.io/instance: webhook-service
app.kubernetes.io/managed-by: kustomize
app.kubernetes.io/name: service
app.kubernetes.io/part-of: temporal-operator
name: temporal-operator-webhook-service
spec:
ports:
- port: 443
protocol: TCP
targetPort: 9443
selector:
control-plane: controller-manager
status:
loadBalancer: {}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.11.3
creationTimestamp: null
name: temporalclusterclients.temporal.io
spec:
group: temporal.io
names:
kind: TemporalClusterClient
listKind: TemporalClusterClientList
plural: temporalclusterclients
singular: temporalclusterclient
scope: Namespaced
versions:
- name: v1beta1
schema:
openAPIV3Schema:
description: A TemporalClusterClient creates a new mTLS client in the targeted
temporal cluster.
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: TemporalClusterClientSpec defines the desired state of ClusterClient.
properties:
clusterRef:
description: Reference to the temporal cluster the client will get
access to.
properties:
name:
description: The name of the TemporalCluster to reference.
type: string
namespace:
description: The namespace of the TemporalCluster to reference.
Defaults to the namespace of the requested resource if omitted.
type: string
type: object
required:
- clusterRef
type: object
status:
description: TemporalClusterClientStatus defines the observed state of
ClusterClient.
properties:
secretRef:
description: Reference to the Kubernetes Secret containing the certificate
for the client.
properties:
name:
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
TODO: Add other useful fields. apiVersion, kind, uid?'
type: string
type: object
x-kubernetes-map-type: atomic
serverName:
description: ServerName is the hostname returned by the certificate.
type: string
required:
- serverName
type: object
type: object
served: true
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: null
storedVersions: null
Loading

0 comments on commit f552cb9

Please sign in to comment.