-
Notifications
You must be signed in to change notification settings - Fork 600
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4992010
commit f552cb9
Showing
7 changed files
with
3,891 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
...tors/temporal-operator/0.13.1/manifests/temporal-operator-webhook-service_v1_service.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: {} |
660 changes: 660 additions & 0 deletions
660
operators/temporal-operator/0.13.1/manifests/temporal-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
83 changes: 83 additions & 0 deletions
83
operators/temporal-operator/0.13.1/manifests/temporal.io_temporalclusterclients.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.