Skip to content

Commit 2ab11b4

Browse files
committed
2 parents 664bae9 + ec99254 commit 2ab11b4

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
@@ -121,7 +121,7 @@ If ports are busy:
121121

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

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

126126
`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.
127127

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

146146
One-liners:
147147

148148
1. `apihub-quickstart.sh` - PostgreSQL + Pure APIHUB. Basic option
149-
1. `apihub-with-keycloack-quickstart.sh` - APIHUB with SAML and OIDC integration via Keycloak
149+
1. `apihub-with-keycloak-quickstart.sh` - APIHUB with SAML and OIDC integration via Keycloak
150150

151151

152152
## 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)