Skip to content

Commit c93f758

Browse files
committed
chore: Update keycloak auth URL
1 parent ab89e3a commit c93f758

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

event-service/src/main/resources/application.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ quarkus:
1818
policy: authenticated
1919
auth-mechanism: bearer
2020
oidc:
21-
auth-server-url: ${KEYCLOAK_URL:http://localhost:8000/auth/realms/timepicker}
21+
auth-server-url: ${KEYCLOAK_URL:http://localhost:8000/realms/timepicker}
2222
application-type: service
2323
client-id: timepicker-backend
2424
credentials:

frontend/src/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const apiHost = process.env.VUE_APP_AUTH_PATH || "ENV_AUTH_PATH"
1616

1717
Vue.use(VueKeycloak, {
1818
config: {
19-
url: `${apiHost}/auth`,
19+
url: apiHost,
2020
realm: 'timepicker',
2121
clientId: 'timepicker-frontend'
2222
},

k8s/configs/event-service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ spec:
7777
- name: KAFKA_BOOTSTRAP_SERVERS
7878
value: redpanda-cluster.default.svc.cluster.local:9092
7979
- name: KEYCLOAK_URL
80-
value: https://auth.kuzznya.space/auth/realms/timepicker
80+
value: https://auth.kuzznya.space/realms/timepicker
8181
- name: KEYCLOAK_SECRET
8282
valueFrom:
8383
secretKeyRef:

k8s/configs/vote-service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ spec:
7777
- name: KAFKA_BOOTSTRAP_SERVERS
7878
value: redpanda-cluster.default.svc.cluster.local:9092
7979
- name: KEYCLOAK_URL
80-
value: https://auth.kuzznya.space/auth/realms/timepicker
80+
value: https://auth.kuzznya.space/realms/timepicker
8181
- name: KEYCLOAK_SECRET
8282
valueFrom:
8383
secretKeyRef:

k8s/configs/websocket-service.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ spec:
7070
- name: KAFKA_BOOTSTRAP_SERVERS
7171
value: redpanda-cluster.default.svc.cluster.local:9092
7272
- name: KEYCLOAK_URL
73-
value: https://auth.kuzznya.space/auth/realms/timepicker
73+
value: https://auth.kuzznya.space/realms/timepicker
7474
- name: KEYCLOAK_SECRET
7575
valueFrom:
7676
secretKeyRef:

vote-service/src/main/resources/application.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ quarkus:
1818
policy: authenticated
1919
auth-mechanism: bearer
2020
oidc:
21-
auth-server-url: ${KEYCLOAK_URL:http://localhost:8000/auth/realms/timepicker}
21+
auth-server-url: ${KEYCLOAK_URL:http://localhost:8000/realms/timepicker}
2222
application-type: service
2323
client-id: timepicker-backend
2424
credentials:

websocket-service/src/main/resources/application.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ quarkus:
2121
policy: authenticated
2222
auth-mechanism: bearer
2323
oidc:
24-
auth-server-url: ${KEYCLOAK_URL:http://localhost:8000/auth/realms/timepicker}
24+
auth-server-url: ${KEYCLOAK_URL:http://localhost:8000/realms/timepicker}
2525
application-type: service
2626
client-id: timepicker-backend
2727
credentials:

0 commit comments

Comments
 (0)