Browse Source

Get rid of some unneeded API version checks, remove extraArgs which we
ended up not using

Kris Moore 4 years ago
parent
commit
18086737bd
1 changed files with 0 additions and 17 deletions
  1. 0 17
      charts/ipfs/1.0.0/templates/_helpers.tpl

+ 0 - 17
charts/ipfs/1.0.0/templates/_helpers.tpl

@@ -35,23 +35,15 @@ Create chart name and version as used by the chart label.
 Return the appropriate apiVersion for deployment.
 */}}
 {{- define "ipfs.deployment.apiVersion" -}}
-{{- if semverCompare "<1.9-0" .Capabilities.KubeVersion.Version -}}
-{{- print "apps/v1beta2" -}}
-{{- else -}}
 {{- print "apps/v1" -}}
 {{- end -}}
-{{- end -}}
 
 {{/*
 Return the appropriate apiVersion for statefulset.
 */}}
 {{- define "ipfs.statefulset.apiVersion" -}}
-{{- if semverCompare "<1.17-0" .Capabilities.KubeVersion.Version -}}
-{{- print "apps/v1beta2" -}}
-{{- else -}}
 {{- print "apps/v1" -}}
 {{- end -}}
-{{- end -}}
 
 {{/*
 Determine secret name.
@@ -73,12 +65,3 @@ Determine name for scc role and rolebinding
 {{- define "ipfs.sccRoleName" -}}
 {{- printf "%s-%s" "scc" (include "ipfs.fullname" .) | trunc 63 | trimSuffix "-" -}}
 {{- end -}}
-
-{{/*
-Properly format optional additional arguments to IPFS binary
-*/}}
-{{- define "ipfs.extraArgs" -}}
-{{- range .Values.extraArgs -}}
-{{ " " }}{{ . }}
-{{- end -}}
-{{- end -}}