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

Commit a574826

Browse files
authored
Merge pull request #50 from integr8ly/fix-label-selector
Fix label selector
2 parents a8e03c1 + 735835c commit a574826

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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.13
6+
TAG ?= 0.0.14
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.13
18+
image: quay.io/integreatly/application-monitoring-operator:0.0.14
1919
ports:
2020
- containerPort: 60000
2121
name: metrics

templates/grafana-operator.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ spec:
88
selector:
99
matchLabels:
1010
name: {{ .GrafanaOperatorName }}
11-
matchLabels:
12-
app: "syndesis"
1311
template:
1412
metadata:
1513
labels:

templates/grafana.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,5 @@ spec:
4545
dashboardLabelSelector:
4646
- matchLabels:
4747
monitoring-key: {{ .MonitoringKey }}
48+
- matchLabels:
49+
app: syndesis

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.13"
4+
Version = "0.0.14"
55
)

0 commit comments

Comments
 (0)