From 219c85e5d293febe481a12936f7e0fdc8764298c Mon Sep 17 00:00:00 2001 From: Sergey Beryozkin Date: Thu, 15 Jun 2023 12:49:32 +0100 Subject: [PATCH] Fix service name in the OpenShift guide --- docs/src/main/asciidoc/deploying-to-openshift.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/deploying-to-openshift.adoc b/docs/src/main/asciidoc/deploying-to-openshift.adoc index 57cd554a455e2..cd15c8fddf5d6 100644 --- a/docs/src/main/asciidoc/deploying-to-openshift.adoc +++ b/docs/src/main/asciidoc/deploying-to-openshift.adoc @@ -115,7 +115,7 @@ So unless you've used the `quarkus.openshift.route.expose` config property to ex .Expose The Service - OpenShift CLI Example [source,bash,subs=attributes+] ---- -oc expose svc/greeting <1> +oc expose svc/openshift-quickstart <1> oc get routes <2> curl http:///hello <3> ----