Skip to content

Commit

Permalink
Fix connection string params
Browse files Browse the repository at this point in the history
solsson committed Dec 23, 2020
1 parent a6da2e8 commit 44dfc71
Showing 2 changed files with 4 additions and 9 deletions.
7 changes: 3 additions & 4 deletions base/kc-deployment.yaml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ kind: Deployment
metadata:
name: kc
spec:
replicas: 1
replicas: 3
strategy:
type: RollingUpdate
rollingUpdate:
@@ -24,8 +24,7 @@ spec:
- name: keycloak
image: yolean/keycloakx
args:
# Development with 1 replicas
- --cluster=local
- -Djgroups.dns.query=jgroups-dns-ping
env:
- name: KC_DB_USERNAME
value: keycloak
@@ -39,7 +38,7 @@ spec:
- name: KC_DB_URL_DATABASE
value: keycloak
- name: KC_DB_URL_PROPERTIES
value: characterEncoding=UTF-8
value: "?characterEncoding=UTF-8"
ports:
- name: http
containerPort: 8080
6 changes: 1 addition & 5 deletions base/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
namespace: keycloakxdev
bases:
#- ../base-mysql
- ../base-secret
- ../conf
resources:
- jgroups-dns-ping-service.yaml
- kc-deployment.yaml
secretGenerator:
- name: keycloak
literals:
- sqlpassword=EXAMPLE

0 comments on commit 44dfc71

Please sign in to comment.