_workload.tpl 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. {{/*
  2. Check if workload type is a deployment
  3. */}}
  4. {{- define "workloadIsDeployment" }}
  5. {{- if eq .Values.workloadType "Deployment" }}
  6. {{- true -}}
  7. {{- else }}
  8. {{- false -}}
  9. {{- end }}
  10. {{- end }}
  11. {{/*
  12. Check if workload type is a cronjob
  13. */}}
  14. {{- define "workloadIsCronJob" }}
  15. {{- if eq .Values.workloadType "CronJob" }}
  16. {{- true -}}
  17. {{- else }}
  18. {{- false -}}
  19. {{- end }}
  20. {{- end }}
  21. {{/*
  22. Get API Version based on workload type
  23. */}}
  24. {{- define "apiVersion" -}}
  25. {{- if eq (include "workloadIsDeployment" .) "true" }}
  26. {{- printf "apps/v1" }}
  27. {{- else if eq (include "workloadIsCronJob" .) "true" }}
  28. {{- printf "batch/v1beta1" }}
  29. {{- else }}
  30. {{- printf "batch/v1" }}
  31. {{- end }}
  32. {{- end }}
  33. {{/*
  34. Get Restart policy based on workload type
  35. */}}
  36. {{- define "restartPolicy" -}}
  37. {{- if eq (include "workloadIsDeployment" .) "true" }}
  38. {{- print "Always" }}
  39. {{- else }}
  40. {{- printf "%s" .Values.jobRestartPolicy }}
  41. {{- end }}
  42. {{- end }}
  43. {{/*
  44. Pod specification
  45. */}}
  46. {{- define "podSepc" }}
  47. restartPolicy: {{ template "restartPolicy" . }}
  48. hostNetwork: {{ template "hostNetworkingConfiguration" . }}
  49. containers:
  50. - name: {{ .Chart.Name }}
  51. {{- include "volumeMountsConfiguration" . | indent 2}}
  52. tty: {{ .Values.tty }}
  53. stdin: {{ .Values.stdin }}
  54. securityContext:
  55. privileged: {{ .Values.securityContext.privileged }}
  56. {{ if .Values.securityContext.capabilities }}
  57. capabilities:
  58. add: {{ toYaml .Values.securityContext.capabilities | nindent 8 }}
  59. {{ end }}
  60. image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default "latest" }}"
  61. imagePullPolicy: {{ .Values.image.pullPolicy }}
  62. {{- include "containerCommand" . | indent 2 }}
  63. {{- include "containerArgs" . | indent 2 }}
  64. {{- include "containerEnvVariables" . | indent 2 }}
  65. {{- include "containerLivenssProbe" . | indent 2 }}
  66. {{- include "containerPorts" . | indent 2 }}
  67. {{- include "containerResourceConfiguration" . | indent 2 }}
  68. {{- include "volumeConfiguration" . }}
  69. {{- include "dnsConfiguration" . }}
  70. {{- end }}
  71. {{/*
  72. Annotations for workload
  73. */}}
  74. {{- define "workloadAnnotations" }}
  75. rollme: {{ randAlphaNum 5 | quote }}
  76. {{- if .Values.ixExternalInterfacesConfigurationNames }}
  77. k8s.v1.cni.cncf.io/networks: {{ join ", " .Values.ixExternalInterfacesConfigurationNames }}
  78. {{- end }}
  79. {{- end }}
  80. {{/*
  81. Metadata for workload
  82. */}}
  83. {{- define "commonMetadataWorkload" }}
  84. labels:
  85. {{- include "ix-chart.selectorLabels" . | nindent 2 }}
  86. annotations:
  87. {{- include "workloadAnnotations" . | nindent 2 }}
  88. {{- end }}
  89. {{/*
  90. Deployment Spec
  91. */}}
  92. {{- define "deploymentSpec" }}
  93. strategy:
  94. {{- if and (eq .Values.updateStrategy "RollingUpdate") .Values.hostPortsList }}
  95. {{- fail "RollingUpdate is not allowed when host ports are specified" }}
  96. {{- else if and (eq .Values.updateStrategy "RollingUpdate") .Values.hostNetwork }}
  97. {{- fail "RollingUpdate is not allowed when host network is enabled" }}
  98. {{- end }}
  99. type: {{ .Values.updateStrategy }}
  100. selector:
  101. matchLabels:
  102. {{- include "ix-chart.selectorLabels" . | nindent 4 }}
  103. template:
  104. metadata:
  105. {{ include "commonMetadataWorkload" . | nindent 4 }}
  106. spec:
  107. {{- include "podSepc" . | indent 4 }}
  108. {{- end }}
  109. {{/*
  110. Job Spec Common
  111. */}}
  112. {{- define "jobSpecCommon" }}
  113. metadata:
  114. {{ include "commonMetadataWorkload" . | nindent 4 }}
  115. spec:
  116. {{- include "podSepc" . | indent 2 }}
  117. {{- end }}
  118. {{/*
  119. Job Spec
  120. */}}
  121. {{- define "jobSpec" }}
  122. template:
  123. {{ include "jobSpecCommon" . | nindent 2 }}
  124. {{- end }}
  125. {{/*
  126. CronJob Spec
  127. */}}
  128. {{- define "cronJobSpec" }}
  129. schedule: {{ include "cronExpression" .Values.cronSchedule | quote }}
  130. jobTemplate:
  131. spec:
  132. {{ include "jobSpec" . | nindent 4 }}
  133. {{- end }}