-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathkeycloak-custom-template.yaml
140 lines (135 loc) · 3.43 KB
/
keycloak-custom-template.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
apiVersion: v1
kind: List
items:
- apiVersion: image.openshift.io/v1
kind: ImageStream
metadata:
name: keycloak
spec:
lookupPolicy:
local: false
tags:
- name: latest
from:
kind: DockerImage
# Hardcoded image is used only here, tests use one from KeycloakContainer
name: quay.io/keycloak/keycloak:26.0
- apiVersion: apps/v1
kind: Deployment
metadata:
name: ${SERVICE_NAME}
spec:
replicas: 1
selector:
matchLabels:
name: keycloak
strategy:
type: Recreate
template:
metadata:
labels:
name: keycloak
name: keycloak
spec:
containers:
- name: keycloak
args: [ "start-dev", "--import-realm"]
env:
- name: X509_CA_BUNDLE
value: /var/run/secrets/kubernetes.io/serviceaccount/service-ca.crt
- name: JGROUPS_ENCRYPT_PROTOCOL
value: ASYM_ENCRYPT
- name: JGROUPS_CLUSTER_PASSWORD
value: test-jgroups-password
- name: JGROUPS_PING_PROTOCOL
value: openshift.DNS_PING
- name: OPENSHIFT_DNS_PING_SERVICE_NAME
value: keycloak-ping
- name: OPENSHIFT_DNS_PING_SERVICE_PORT
value: "8888"
image: image-registry.openshift-image-registry.svc:5000/${CURRENT_NAMESPACE}/keycloak:latest
imagePullPolicy: Always
ports:
- containerPort: 8778
name: jolokia
protocol: TCP
- containerPort: 8080
name: http
protocol: TCP
- containerPort: 8443
name: https
protocol: TCP
- containerPort: 8888
name: ping
protocol: TCP
resources:
limits:
memory: 1Gi
volumeMounts:
- mountPath: /etc/x509/https
name: keycloak-cert-https-volume
readOnly: true
- mountPath: /etc/x509/jgroups
name: keycloak-cert-jgroups-volume
readOnly: true
terminationGracePeriodSeconds: 75
volumes:
- name: keycloak-cert-https-volume
secret:
secretName: keycloak-cert-https-secret
- name: keycloak-cert-jgroups-volume
secret:
secretName: keycloak-cert-jgroups-secret
- apiVersion: v1
kind: Service
metadata:
name: keycloak
annotations:
service.alpha.openshift.io/serving-cert-secret-name: keycloak-cert-https-secret
spec:
ports:
- port: 8443
targetPort: 8443
selector:
name: keycloak
- apiVersion: v1
kind: Service
metadata:
name: keycloak-ping
annotations:
service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
service.alpha.openshift.io/serving-cert-secret-name: keycloak-cert-jgroups-secret
spec:
clusterIP: None
ports:
- name: ping
port: 8888
selector:
name: keycloak
- apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: keycloak
spec:
to:
name: keycloak
tls:
termination: reencrypt
# for test purposes, it's easier to use plain HTTP instead of HTTPS
- apiVersion: v1
kind: Service
metadata:
name: keycloak-plain
spec:
ports:
- port: 8080
targetPort: 8080
selector:
name: keycloak
- apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: keycloak-plain
spec:
to:
name: keycloak-plain