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

Commit 9b8ec8c

Browse files
authored
Merge pull request #147 from integr8ly/INTLY-6634
label alertmanager service
2 parents 46c0b4c + 26c0af5 commit 9b8ec8c

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ NAMESPACE ?= application-monitoring
33
PROJECT ?= application-monitoring-operator
44
REG=quay.io
55
SHELL=/bin/bash
6-
TAG ?= 0.0.29
6+
TAG ?= 0.0.30
77
PKG=github.com/integr8ly/application-monitoring-operator
88
TEST_DIRS?=$(shell sh -c "find $(TOP_SRC_DIRS) -name \\*_test.go -exec dirname {} \\; | sort | uniq")
99
TEST_POD_NAME=application-monitoring-operator-test

deploy/operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: application-monitoring-operator
1616
containers:
1717
- name: application-monitoring-operator
18-
image: quay.io/integreatly/application-monitoring-operator:0.0.29
18+
image: quay.io/integreatly/application-monitoring-operator:0.0.30
1919
ports:
2020
- containerPort: 60000
2121
name: metrics

templates/alertmanager-service.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ metadata:
55
namespace: {{ .Namespace }}
66
annotations:
77
service.alpha.openshift.io/serving-cert-secret-name: alertmanager-k8s-tls
8+
labels:
9+
application-monitoring: "true"
810
spec:
911
ports:
1012
- name: web

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package version
22

33
var (
4-
Version = "0.0.29"
4+
Version = "0.0.30"
55
)

0 commit comments

Comments
 (0)