This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: timmyreilly <[email protected]> adding comments for license info Signed-off-by: timmyreilly <[email protected]> adding comment for naming details of MeshClusterService Signed-off-by: timmyreilly <[email protected]> removing multicluster detail from crd to be placed in autogen docs Signed-off-by: timmyreilly <[email protected]>
- Loading branch information
timmyreilly
committed
Jun 10, 2021
1 parent
3e62fd0
commit fb05f90
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
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,63 @@ | ||
# Custom Resource Definition (CRD) for OSM's multicluster config specification. | ||
# | ||
# Copyright Open Service Mesh authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: multiclusterservices.config.openservicemesh.io | ||
spec: | ||
group: config.openservicemesh.io | ||
scope: Namespaced # osm-system is the required namespace | ||
names: | ||
kind: MultiClusterService | ||
shortNames: | ||
- mcs | ||
plural: multiclusterservices | ||
singular: multiclusterservice | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
properties: | ||
spec: | ||
type: object | ||
required: | ||
- serviceAccount | ||
- clusters | ||
properties: | ||
serviceAccount: | ||
type: string | ||
clusters: | ||
description: The clusters the service accounts are hosted on. | ||
type: array | ||
items: | ||
type: object | ||
required: | ||
- address | ||
- name | ||
properties: | ||
address: | ||
description: a routable IP + port | ||
type: string | ||
name: | ||
description: Name of the remote cluster | ||
type: string | ||
certificate: | ||
description: mTLS certificates (optional) | ||
type: string |