Skip to content

Commit ec99254

Browse files
Fix: naming: keycloack -> keycloak (#523)
1 parent c4f0a80 commit ec99254

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

docker-compose/with-keycloak/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Execute `generate_env_and_up_compose.sh` - it will initialize all require ENV VA
100100

101101
http://host.docker.internal:8081/ - Qubserhip-APIHUB UI URL
102102

103-
You will be able to login under user/user credential (set in ./keycloack/realm.json)
103+
You will be able to login under user/user credential (set in ./keycloak/realm.json)
104104

105105
## Startup with locally built images
106106

helm-templates/local-k8s-quickstart/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ If ports are busy:
120120

121121
Quickstart procedure uses official Qubership APIHUB [Helm Chart](../qubership-apihub/). Please also refer to official [Installation Notes](/docs/installation-guide.md).
122122

123-
This folder contains `postgresql` and `keycloack` Helm charts for Qubserhip APIHUB dependecies deployment.
123+
This folder contains `postgresql` and `keycloak` Helm charts for Qubserhip APIHUB dependecies deployment.
124124

125125
`qubership-apihub` folder contains prefilled `values.yaml` files with parameters values fits for deployment to local k8s cluster - so no need to care about filling values. Required secrets are generated by scripts.
126126

@@ -137,15 +137,15 @@ Deployment phases represented by scripts in `scripts` folder, so you can see wha
137137
- `1-start-kind-cluster.sh`
138138
- `2-deploy-postgres.sh`
139139
- `3-generate-secrets.sh`
140-
- `4-deploy-keycloack.sh` (optional, need for `5-deploy-apihub-with-keycloack`)
140+
- `4-deploy-keycloak.sh` (optional, need for `5-deploy-apihub-with-keycloak`)
141141
- `5-deploy-apihub.sh`
142-
- `5-deploy-apihub-with-keycloack.sh`
142+
- `5-deploy-apihub-with-keycloak.sh`
143143
- `6-patch-apihub-hosts.sh` (required for keycloak setup)
144144

145145
One-liners:
146146

147147
1. `apihub-quickstart.sh` - PostgreSQL + Pure APIHUB. Basic option
148-
1. `apihub-with-keycloack-quickstart.sh` - APIHUB with SAML and OIDC integration via Keycloak
148+
1. `apihub-with-keycloak-quickstart.sh` - APIHUB with SAML and OIDC integration via Keycloak
149149

150150

151151
## Verify Installation

helm-templates/local-k8s-quickstart/apihub-with-keycloack-quickstart.sh renamed to helm-templates/local-k8s-quickstart/apihub-with-keycloak-quickstart.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ sleep 30
66
echo "Sleep 30 seconds, wait for PG init"
77
sleep 30
88
./3-generate-secrets.sh
9-
./4-deploy-keycloack.sh
10-
echo "Sleep 150 seconds, wait for Keycloack init"
9+
./4-deploy-keycloak.sh
10+
echo "Sleep 150 seconds, wait for Keycloak init"
1111
sleep 150
12-
./5-deploy-apihub-with-keycloack.sh
12+
./5-deploy-apihub-with-keycloak.sh
1313
echo "Patch APIHUB Deployments for keycloak Ingress DNS resolution"
1414
./6-patch-apihub-hosts.sh
1515
cd ..

helm-templates/local-k8s-quickstart/qubership-apihub/with-keycloack-local-k8s-values.yaml renamed to helm-templates/local-k8s-quickstart/qubership-apihub/with-keycloak-local-k8s-values.yaml

File renamed without changes.

helm-templates/local-k8s-quickstart/qubership-apihub/with-keycloack-local-secrets.yaml.template renamed to helm-templates/local-k8s-quickstart/qubership-apihub/with-keycloak-local-secrets.yaml.template

File renamed without changes.

helm-templates/local-k8s-quickstart/scripts/3-generate-secrets.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rm -f private_key.pem
3737
rm -f certificate.pem
3838

3939
envsubst < ../qubership-apihub/local-secrets.yaml.template > ../qubership-apihub/local-secrets.yaml
40-
envsubst < ../qubership-apihub/with-keycloack-local-secrets.yaml.template > ../qubership-apihub/with-keycloack-local-secrets.yaml
40+
envsubst < ../qubership-apihub/with-keycloak-local-secrets.yaml.template > ../qubership-apihub/with-keycloak-local-secrets.yaml
4141
envsubst < ../keycloak/files/realm.json.template > ../keycloak/files/realm.json
4242

4343
echo "APIHUB_ADMIN_EMAIL = $APIHUB_ADMIN_EMAIL"

helm-templates/local-k8s-quickstart/scripts/4-deploy-keycloack.sh renamed to helm-templates/local-k8s-quickstart/scripts/4-deploy-keycloak.sh

File renamed without changes.

helm-templates/local-k8s-quickstart/scripts/5-deploy-apihub-with-keycloack.sh renamed to helm-templates/local-k8s-quickstart/scripts/5-deploy-apihub-with-keycloak.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
echo "---Start APIHUB deploy using Helm---"
2-
helm install apihub -n qubership-apihub --create-namespace -f ../qubership-apihub/with-keycloack-local-k8s-values.yaml -f ../qubership-apihub/with-keycloack-local-secrets.yaml ../../qubership-apihub
2+
helm install apihub -n qubership-apihub --create-namespace -f ../qubership-apihub/with-keycloak-local-k8s-values.yaml -f ../qubership-apihub/with-keycloak-local-secrets.yaml ../../qubership-apihub
33
echo "---Complete APIHUB deploy using Helm---"

0 commit comments

Comments
 (0)