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

Commit

Permalink
Merge pull request #78 from integr8ly/INTLY-3134
Browse files Browse the repository at this point in the history
fix self monitoring
  • Loading branch information
pb82 authored Aug 29, 2019
2 parents 137081a + 76ecaf8 commit 37344c3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ NAMESPACE ?= application-monitoring
PROJECT ?= application-monitoring-operator
REG=quay.io
SHELL=/bin/bash
TAG ?= 0.0.23
TAG ?= 0.0.24
PKG=github.com/integr8ly/application-monitoring-operator
TEST_DIRS?=$(shell sh -c "find $(TOP_SRC_DIRS) -name \\*_test.go -exec dirname {} \\; | sort | uniq")
TEST_POD_NAME=application-monitoring-operator-test
Expand Down
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
serviceAccountName: application-monitoring-operator
containers:
- name: application-monitoring-operator
image: quay.io/integreatly/application-monitoring-operator:0.0.23
image: quay.io/integreatly/application-monitoring-operator:0.0.24
ports:
- containerPort: 60000
name: metrics
Expand Down
4 changes: 3 additions & 1 deletion templates/grafana-servicemonitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ metadata:
spec:
endpoints:
- port: grafana
scheme: http
scheme: https
tlsConfig:
insecureSkipVerify: true
selector:
matchLabels:
application-monitoring: 'true'
3 changes: 3 additions & 0 deletions templates/prometheus-servicemonitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ metadata:
spec:
endpoints:
- port: web
scheme: https
tlsConfig:
insecureSkipVerify: true
selector:
matchLabels:
application-monitoring: 'true'
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "0.0.23"
Version = "0.0.24"
)

0 comments on commit 37344c3

Please sign in to comment.