mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 21:30:35 +00:00
This will be used to store and report the cluster-local engine status. Signed-off-by: Stephen Kitt <skitt@redhat.com>
44 lines
866 B
YAML
44 lines
866 B
YAML
{{- if .Values.crd.create -}}
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: clusters.submariner.io
|
|
annotations:
|
|
"helm.sh/hook": crd-install
|
|
spec:
|
|
group: submariner.io
|
|
version: v1
|
|
names:
|
|
kind: Cluster
|
|
plural: clusters
|
|
scope: Namespaced
|
|
---
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: endpoints.submariner.io
|
|
annotations:
|
|
"helm.sh/hook": crd-install
|
|
spec:
|
|
group: submariner.io
|
|
version: v1
|
|
names:
|
|
kind: Endpoint
|
|
plural: endpoints
|
|
scope: Namespaced
|
|
---
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: gateways.submariner.io
|
|
annotations:
|
|
"helm.sh/hook": crd-install
|
|
spec:
|
|
group: submariner.io
|
|
version: v1
|
|
names:
|
|
kind: Gateway
|
|
plural: gateways
|
|
scope: Namespaced
|
|
{{- end -}}
|