Skip to content
This repository was archived by the owner on Apr 19, 2023. It is now read-only.

Commit 58339ac

Browse files
authored
Merge pull request #149 from CathalOConnorRH/MGDAPI-236
MGDAPI-236
2 parents 4f6c9dc + 0f0850b commit 58339ac

File tree

6 files changed

+15
-0
lines changed

6 files changed

+15
-0
lines changed

deploy/crds/applicationmonitoring.integreatly.org_applicationmonitorings_crd.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,10 @@ spec:
608608
type: object
609609
alertmanagerInstanceNamespaces:
610610
type: string
611+
description: The key under which additional scrape configs are stored within the secret
612+
priorityClassName:
613+
type: string
614+
description: Priority Class Name
611615
labelSelector:
612616
minLength: 1
613617
type: string

deploy/examples/ApplicationMonitoring.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ spec:
1111
prometheusInstanceNamespaces: application-monitoring
1212
alertmanagerInstanceNamespaces: application-monitoring
1313
selfSignedCerts: true
14+
priorityClassName: "rhoam-pod-priority"
15+

pkg/apis/applicationmonitoring/v1alpha1/applicationmonitoring_types.go

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ type ApplicationMonitoringSpec struct {
1717
LabelSelector string `json:"labelSelector"`
1818
AdditionalScrapeConfigSecretName string `json:"additionalScrapeConfigSecretName,omitempty"`
1919
AdditionalScrapeConfigSecretKey string `json:"additionalScrapeConfigSecretKey,omitempty"`
20+
PriorityClassName string `json:"priorityClassName,omitempty"`
2021
PrometheusRetention string `json:"prometheusRetention,omitempty"`
2122
PrometheusStorageRequest string `json:"prometheusStorageRequest,omitempty"`
2223
PrometheusInstanceNamespaces string `json:"prometheusInstanceNamespaces,omitempty"`

pkg/controller/applicationmonitoring/templateHelper.go

+2
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ type Parameters struct {
9595
ImageBlackboxExporter string
9696
ImageTagBlackboxExporter string
9797
BlackboxTargets []applicationmonitoring.BlackboxtargetData
98+
PriorityClassName string
9899
PrometheusRetention string
99100
PrometheusStorageRequest string
100101
PrometheusInstanceNamespaces string
@@ -158,6 +159,7 @@ func newTemplateHelper(cr *applicationmonitoring.ApplicationMonitoring, extraPar
158159
ImageTagPrometheus: "4.2",
159160
ImageBlackboxExporter: "quay.io/prometheus/blackbox-exporter",
160161
ImageTagBlackboxExporter: "v0.14.0",
162+
PriorityClassName: cr.Spec.PriorityClassName,
161163
PrometheusRetention: cr.Spec.PrometheusRetention,
162164
PrometheusStorageRequest: cr.Spec.PrometheusStorageRequest,
163165
PrometheusInstanceNamespaces: cr.Spec.PrometheusInstanceNamespaces,

templates/alertmanager.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ spec:
4949
secrets:
5050
- alertmanager-k8s-tls
5151
- alertmanager-k8s-proxy
52+
{{- if .PriorityClassName }}
53+
priorityClassName: {{.PriorityClassName}}
54+
{{- end }}
5255
{{- if .Affinity }}
5356
affinity:
5457
{{ .Affinity | indent 4 }}

templates/prometheus.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ spec:
9090
additionalScrapeConfigs:
9191
name: {{ .ScrapeConfigSecretName }}
9292
key: integreatly.yaml
93+
{{- if .PriorityClassName}}
94+
priorityClassName: {{.PriorityClassName}}
95+
{{- end}}
9396
{{- if .PrometheusStorageRequest}}
9497
storage:
9598
volumeClaimTemplate:

0 commit comments

Comments
 (0)