2019-10-22 14:37:58 -06:00
|
|
|
{{- if .Values.installCRD }}
|
2019-02-13 17:14:36 -05:00
|
|
|
# Define a "gateway" custom resource definition
|
|
|
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
|
|
|
kind: CustomResourceDefinition
|
|
|
|
|
metadata:
|
|
|
|
|
name: gateways.argoproj.io
|
|
|
|
|
spec:
|
|
|
|
|
group: argoproj.io
|
|
|
|
|
names:
|
|
|
|
|
kind: Gateway
|
|
|
|
|
listKind: GatewayList
|
|
|
|
|
plural: gateways
|
|
|
|
|
singular: gateway
|
2020-01-30 03:20:02 +01:00
|
|
|
shortNames:
|
|
|
|
|
- gw
|
2019-02-13 17:14:36 -05:00
|
|
|
scope: Namespaced
|
2020-01-30 03:20:02 +01:00
|
|
|
version: "v1alpha1"
|
2019-10-22 14:37:58 -06:00
|
|
|
{{- end }}
|