This repository was archived by the owner on Apr 24, 2023. It is now read-only.
File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ CONSUMER_NAMESPACES=${NAMESPACE}
4
4
PROJECT =keycloak-operator
5
5
REG =quay.io
6
6
SHELL =/bin/bash
7
- TAG =v1.9.0
7
+ TAG =v1.9.1
8
8
PKG =github.com/integr8ly/keycloak-operator
9
9
TEST_DIRS? =$(shell sh -c "find $(TOP_SRC_DIRS ) -name \\* _test.go -exec dirname {} \\; | sort | uniq")
10
10
TEST_POD_NAME =keycloak-operator-test
Original file line number Diff line number Diff line change 14
14
spec :
15
15
containers :
16
16
- name : keycloak-operator
17
- image : quay.io/integreatly/keycloak-operator:v1.9.0
17
+ image : quay.io/integreatly/keycloak-operator:v1.9.1
18
18
ports :
19
19
- containerPort : 60000
20
20
name : metrics
Original file line number Diff line number Diff line change 86
86
Keycloak instance in namespace {{ $labels.namespace }} has not
87
87
been available for the last 5 minutes.
88
88
expr : >
89
- (1 - absent(kube_pod_status_ready{namespace="sso ", condition="true"}
89
+ (1 - absent(kube_pod_status_ready{namespace="[[ .Namespace ]] ", condition="true"}
90
90
* on (pod) group_left (label_deploymentConfig)
91
91
kube_pod_labels{label_deploymentConfig="sso"})) == 0 or
92
92
probe_success{service="rhsso-ui"} == 0
@@ -121,7 +121,7 @@ spec:
121
121
RH SSO database in namespace {{ $labels.namespace }} is not
122
122
available for the last 5 minutes.
123
123
expr : >
124
- (1 - absent(kube_pod_status_ready{namespace="sso ", condition="true"}
124
+ (1 - absent(kube_pod_status_ready{namespace="[[ .Namespace ]] ", condition="true"}
125
125
* on (pod) group_left (label_deploymentConfig)
126
126
kube_pod_labels{label_deploymentConfig="sso-postgresql"})) == 0
127
127
for : 5m
Original file line number Diff line number Diff line change 6
6
restartPolicy : Never
7
7
containers :
8
8
- name : keycloak-operator-test
9
- image : quay.io/integreatly/keycloak-operator:v1.9.0
9
+ image : quay.io/integreatly/keycloak-operator:v1.9.1
10
10
imagePullPolicy : Always
11
11
command : ["/go-test.sh"]
12
12
env :
Original file line number Diff line number Diff line change 1
1
package version
2
2
3
3
var (
4
- Version = "1.9.0 "
4
+ Version = "1.9.1 "
5
5
)
You can’t perform that action at this time.
0 commit comments