feat(helm): use apps/v1 as deployment apiVersion (#4725)

Use 'apps/v1' as the apiVersion field for the deployment.yaml written
by the 'helm create' command, rather than the deprecated 'apps/v1beta2'.

Signed-off-by: Arash Deshmeh <adeshmeh@ca.ibm.com>
pull/4207/head^2
adshmh 7 years ago committed by Sebastien Plisson
parent 79ebe1ae3e
commit 4e9bbcab5e

@ -163,7 +163,7 @@ spec:
{{- end }}
`
const defaultDeployment = `apiVersion: apps/v1beta2
const defaultDeployment = `apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "<CHARTNAME>.fullname" . }}

Loading…
Cancel
Save