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

Commit 385c628

Browse files
Merge pull request #90 from JameelB/add-linkonly-kcidp-type
Add linkOnly and authenticateByDefault property to kc idp typ
2 parents 93bc2ca + ef7fe65 commit 385c628

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CONSUMER_NAMESPACES=${NAMESPACE}
44
PROJECT=keycloak-operator
55
REG=quay.io
66
SHELL=/bin/bash
7-
TAG=v1.8.0
7+
TAG=v1.8.1
88
PKG=github.com/integr8ly/keycloak-operator
99
TEST_DIRS?=$(shell sh -c "find $(TOP_SRC_DIRS) -name \\*_test.go -exec dirname {} \\; | sort | uniq")
1010
TEST_POD_NAME=keycloak-operator-test

deploy/operator.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
spec:
1515
containers:
1616
- name: keycloak-operator
17-
image: quay.io/integreatly/keycloak-operator:v1.8.0
17+
image: quay.io/integreatly/keycloak-operator:v1.8.1
1818
ports:
1919
- containerPort: 60000
2020
name: metrics

deploy/test-pod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ spec:
66
restartPolicy: Never
77
containers:
88
- name: keycloak-operator-test
9-
image: quay.io/integreatly/keycloak-operator:v1.8.0
9+
image: quay.io/integreatly/keycloak-operator:v1.8.1
1010
imagePullPolicy: Always
1111
command: ["/go-test.sh"]
1212
env:

pkg/apis/aerogear/v1alpha1/types.go

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ type KeycloakIdentityProvider struct {
122122
AddReadTokenRoleOnCreate bool `json:"addReadTokenRoleOnCreate"`
123123
FirstBrokerLoginFlowAlias string `json:"firstBrokerLoginFlowAlias"`
124124
PostBrokerLoginFlowAlias string `json:"postBrokerLoginFlowAlias"`
125+
LinkOnly bool `json:"linkOnly"`
125126
Config map[string]string `json:"config"`
126127
}
127128
type KeycloakIdentityProviderPair struct {

version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package version
22

33
var (
4-
Version = "1.8.0"
4+
Version = "1.8.1"
55
)

0 commit comments

Comments
 (0)