moved workflow CRD into helpers.tpl
This commit is contained in:
parent
92599031ec
commit
e24c531584
2 changed files with 20 additions and 19 deletions
|
@ -14,3 +14,23 @@ We truncate at 63 chars because some Kubernetes name fields are limited to this
|
||||||
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
||||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "workflow-crd-json" }}
|
||||||
|
{
|
||||||
|
"apiVersion": "apiextensions.k8s.io/v1beta1",
|
||||||
|
"kind": "CustomResourceDefinition",
|
||||||
|
"metadata": {
|
||||||
|
"name": "workflows.argoproj.io"
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"group": "argoproj.io",
|
||||||
|
"names": {
|
||||||
|
"kind": "Workflow",
|
||||||
|
"plural": "workflows",
|
||||||
|
"shortNames": ["wf"]
|
||||||
|
},
|
||||||
|
"scope": "Namespaced",
|
||||||
|
"version": "v1alpha1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{{- end}}
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
{{- define "workflow-crd-json" }}
|
|
||||||
{
|
|
||||||
"apiVersion": "apiextensions.k8s.io/v1beta1",
|
|
||||||
"kind": "CustomResourceDefinition",
|
|
||||||
"metadata": {
|
|
||||||
"name": "workflows.argoproj.io"
|
|
||||||
},
|
|
||||||
"spec": {
|
|
||||||
"group": "argoproj.io",
|
|
||||||
"names": {
|
|
||||||
"kind": "Workflow",
|
|
||||||
"plural": "workflows",
|
|
||||||
"shortNames": ["wf"]
|
|
||||||
},
|
|
||||||
"scope": "Namespaced",
|
|
||||||
"version": "v1alpha1"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{{- end}}
|
|
Loading…
Reference in a new issue