adding argo-events-chart (#9)

This commit is contained in:
Matthew Magaldi 2018-08-03 04:18:31 -04:00 committed by Jesse Suen
parent 1fed7f37cf
commit ab5f2edf9d
15 changed files with 256 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{{- define "sensor-crd-json" }}
{
"apiVersion": "apiextensions.k8s.io/v1beta1",
"kind": "CustomResourceDefinition",
"metadata": {
"name": "sensors.argoproj.io"
},
"spec": {
"group": "argoproj.io",
"names": {
"kind": "Sensor",
"listKind": "SensorList",
"plural": "sensors",
"singular": "sensor",
},
"scope": "Namespaced",
"version": "v1alpha1"
}
}
{{- end}}