Add back examples for Kubernetes and Openshift to the quickstarts
Closes #20635
This commit is contained in:
parent
47a304bea2
commit
9ad295a3bc
2 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@ As a first step, create the Keycloak deployment and service by entering the foll
|
|||
|
||||
[source,bash,subs="attributes+"]
|
||||
----
|
||||
kubectl create -f https://raw.githubusercontent.com/keycloak/keycloak-quickstarts/latest/kubernetes-examples/keycloak.yaml
|
||||
kubectl create -f https://raw.githubusercontent.com/keycloak/keycloak-quickstarts/latest/kubernetes/keycloak.yaml
|
||||
----
|
||||
|
||||
This command starts Keycloak on Kubernetes and creates an initial admin user with the username `admin` and password
|
||||
|
@ -45,7 +45,7 @@ Now create an Ingress for Keycloak by entering the following command:
|
|||
|
||||
[source,bash,subs="attributes+"]
|
||||
----
|
||||
wget -q -O - https://raw.githubusercontent.com/keycloak/keycloak-quickstarts/latest/kubernetes-examples/keycloak-ingress.yaml | \
|
||||
wget -q -O - https://raw.githubusercontent.com/keycloak/keycloak-quickstarts/latest/kubernetes/keycloak-ingress.yaml | \
|
||||
sed "s/KEYCLOAK_HOST/keycloak.$(minikube ip).nip.io/" | \
|
||||
kubectl create -f -
|
||||
----
|
||||
|
|
|
@ -48,7 +48,7 @@ oc new-project keycloak
|
|||
+
|
||||
[source,bash,subs="attributes+"]
|
||||
----
|
||||
oc process -f https://raw.githubusercontent.com/keycloak/keycloak-quickstarts/latest/openshift-examples/keycloak.yaml \
|
||||
oc process -f https://raw.githubusercontent.com/keycloak/keycloak-quickstarts/latest/openshift/keycloak.yaml \
|
||||
-p KEYCLOAK_ADMIN=admin \
|
||||
-p KEYCLOAK_ADMIN_PASSWORD=admin \
|
||||
-p NAMESPACE=keycloak \
|
||||
|
|
Loading…
Reference in a new issue