Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 1 | {{- if not .Values.runAsStatefulSet }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 2 | apiVersion: apps/v1 |
| 3 | kind: Deployment |
| 4 | metadata: |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 5 | labels: |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 6 | {{- include "prometheus-pushgateway.defaultLabels" . | nindent 4 }} |
| 7 | name: {{ include "prometheus-pushgateway.fullname" . }} |
| 8 | namespace: {{ template "prometheus-pushgateway.namespace" . }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 9 | spec: |
| 10 | replicas: {{ .Values.replicaCount }} |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 11 | {{- with .Values.strategy }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 12 | strategy: |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 13 | {{- toYaml . | nindent 4 }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 14 | {{- end }} |
| 15 | selector: |
| 16 | matchLabels: |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 17 | {{- include "prometheus-pushgateway.selectorLabels" . | nindent 6 }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 18 | template: |
| 19 | metadata: |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 20 | {{- with .Values.podAnnotations }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 21 | annotations: |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 22 | {{- toYaml . | nindent 8 }} |
| 23 | {{- end }} |
| 24 | labels: |
| 25 | {{- include "prometheus-pushgateway.defaultLabels" . | nindent 8 }} |
Mohammed Naser | 9ad0d46 | 2023-01-15 20:36:37 -0500 | [diff] [blame] | 26 | spec: |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 27 | {{- include "prometheus-pushgateway.podSpec" . | nindent 6 }} |
| 28 | {{- end }} |