Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
feat(multicluster): crd only
Browse files Browse the repository at this point in the history
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.
63 changes: 63 additions & 0 deletions charts/osm/crds/multiclusterservice.yaml
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

0 comments on commit fb05f90

Please sign in to comment.