Files
devops-infra-helm-charts-gcp/helm-templates/opentelemetry-collector/templates/deployment.yaml
T
2026-08-26 03:39:42 +05:30

76 lines
2.6 KiB
YAML

{{- if eq .Values.mode "deployment" -}}
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "opentelemetry-collector.fullname" . }}
namespace: {{ template "opentelemetry-collector.namespace" . }}
labels:
{{- include "opentelemetry-collector.labels" . | nindent 4 }}
{{- if .Values.annotations }}
annotations:
{{- range $key, $value := .Values.annotations }}
{{- printf "%s: %s" $key (tpl $value $ | quote) | nindent 4 }}
{{- end }}
{{- end }}
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }}
{{- end }}
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
selector:
matchLabels:
{{- include "opentelemetry-collector.selectorLabels" . | nindent 6 }}
{{- include "opentelemetry-collector.component" . | nindent 6 }}
strategy:
{{- if eq .Values.rollout.strategy "RollingUpdate" }}
{{- with .Values.rollout.rollingUpdate }}
rollingUpdate:
{{- toYaml . | nindent 6 }}
{{- end }}
{{- end }}
type: {{ .Values.rollout.strategy }}
template:
metadata:
annotations:
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
{{- include "opentelemetry-collector.podAnnotations" . | nindent 8 }}
labels:
{{- include "opentelemetry-collector.selectorLabels" . | nindent 8 }}
{{- include "opentelemetry-collector.component" . | nindent 8 }}
{{- include "opentelemetry-collector.podLabels" . | nindent 8 }}
spec:
{{- with .Values.dnsPolicy }}
dnsPolicy: {{ . }}
{{- end }}
{{- with .Values.dnsConfig }}
dnsConfig:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- $podValues := deepCopy .Values }}
{{- $podData := dict "Values" $podValues "configmapSuffix" "" "isAgent" false }}
{{- include "opentelemetry-collector.pod" ($podData | mustMergeOverwrite (deepCopy .)) | nindent 6 }}
hostNetwork: {{ .Values.hostNetwork }}
{{- if .Values.schedulerName }}
schedulerName: "{{ .Values.schedulerName }}"
{{- end }}
nodeSelector:
{{- if .Values.dedicatedValue }}
dedicated: {{ include "meesho.dedicatedValue" . }}
{{- else }}
{{- with .Values.nodeSelector }}
{{ toYaml . | nindent 8 }}
{{- end }}
{{- end }}
tolerations:
{{- if .Values.dedicatedValue }}
- key: "dedicated"
operator: "Equal"
value: {{ include "meesho.dedicatedValue" . }}
effect: "NoSchedule"
{{- else }}
{{- with .Values.tolerations }}
{{ toYaml . | nindent 8 }}
{{- end }}
{{- end }}
{{- end }}