_workload.tpl 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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 "common.resources.limitation" . | nindent 2 }}
  52. {{- include "volumeMountsConfiguration" . | indent 2}}
  53. tty: {{ .Values.tty }}
  54. stdin: {{ .Values.stdin }}
  55. securityContext:
  56. privileged: {{ .Values.securityContext.privileged }}
  57. {{ if .Values.securityContext.enableRunAsUser }}
  58. runAsUser: {{ .Values.securityContext.runAsUser }}
  59. runAsGroup: {{ .Values.securityContext.runAsGroup }}
  60. {{ end }}
  61. {{ if .Values.securityContext.capabilities }}
  62. capabilities:
  63. add: {{ toYaml .Values.securityContext.capabilities | nindent 8 }}
  64. {{ end }}
  65. image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default "latest" }}"
  66. imagePullPolicy: {{ .Values.image.pullPolicy }}
  67. {{- include "containerCommand" . | indent 2 }}
  68. {{- include "containerArgs" . | indent 2 }}
  69. {{- include "containerEnvVariables" . | indent 2 }}
  70. {{- include "containerLivenssProbe" . | indent 2 }}
  71. {{- include "containerPorts" . | indent 2 }}
  72. {{- include "containerResourceConfiguration" . | indent 2 }}
  73. {{- include "volumeConfiguration" . }}
  74. {{- include "dnsConfiguration" . }}
  75. {{- end }}
  76. {{/*
  77. Annotations for workload
  78. */}}
  79. {{- define "workloadAnnotations" }}
  80. rollme: {{ randAlphaNum 5 | quote }}
  81. {{- if .Values.ixExternalInterfacesConfigurationNames }}
  82. k8s.v1.cni.cncf.io/networks: {{ join ", " .Values.ixExternalInterfacesConfigurationNames }}
  83. {{- end }}
  84. {{- end }}
  85. {{/*
  86. Metadata for workload
  87. */}}
  88. {{- define "commonMetadataWorkload" }}
  89. labels:
  90. {{- include "ix-chart.selectorLabels" . | nindent 2 }}
  91. annotations:
  92. {{- include "workloadAnnotations" . | nindent 2 }}
  93. {{- end }}
  94. {{/*
  95. Deployment Spec
  96. */}}
  97. {{- define "deploymentSpec" }}
  98. strategy:
  99. {{- if and (eq .Values.updateStrategy "RollingUpdate") .Values.hostPortsList }}
  100. {{- fail "RollingUpdate is not allowed when host ports are specified" }}
  101. {{- else if and (eq .Values.updateStrategy "RollingUpdate") .Values.hostNetwork }}
  102. {{- fail "RollingUpdate is not allowed when host network is enabled" }}
  103. {{- end }}
  104. type: {{ .Values.updateStrategy }}
  105. selector:
  106. matchLabels:
  107. {{- include "ix-chart.selectorLabels" . | nindent 4 }}
  108. template:
  109. metadata:
  110. {{ include "commonMetadataWorkload" . | nindent 4 }}
  111. spec:
  112. {{- include "podSepc" . | indent 4 }}
  113. {{- end }}
  114. {{/*
  115. Job Spec Common
  116. */}}
  117. {{- define "jobSpecCommon" }}
  118. metadata:
  119. {{ include "commonMetadataWorkload" . | nindent 4 }}
  120. spec:
  121. {{- include "podSepc" . | indent 2 }}
  122. {{- end }}
  123. {{/*
  124. Job Spec
  125. */}}
  126. {{- define "jobSpec" }}
  127. template:
  128. {{ include "jobSpecCommon" . | nindent 2 }}
  129. {{- end }}
  130. {{/*
  131. CronJob Spec
  132. */}}
  133. {{- define "cronJobSpec" }}
  134. schedule: {{ include "cronExpression" .Values.cronSchedule | quote }}
  135. jobTemplate:
  136. spec:
  137. {{ include "jobSpec" . | nindent 4 }}
  138. {{- end }}