Skip to content

Commit 431b96d

Browse files
committed
sync web site with quarkus documentation
1 parent e75850b commit 431b96d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_guides/ap4k.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ First, we need a new project that contains the kubernetes extension. This can be
2626

2727
[source, subs=attributes+]
2828
----
29-
mvn io.quarkus:quarkus-maven-plugin:${quarkus-version}:create \
29+
mvn io.quarkus:quarkus-maven-plugin:{quarkus-version}:create \
3030
-DprojectGroupId=org.acme \
3131
-DprojectArtifactId=test \
3232
-DclassName="org.acme.rest.GreetingResource" \
@@ -126,4 +126,4 @@ An important thing to note about the `Deployment` is that is uses `yourDockerUse
126126

127127
Also the `Service` is configured to use container port `8080` (which is automatically picked up by the standard Quarkus configuration).
128128

129-
An important thing to keep in mind is that so far, all {project-name} has done is generate the `Kubernetes` resources, it has not applied them. The next section will walk you through how this can be done.
129+
An important thing to keep in mind is that so far, all {project-name} has done is generate the `Kubernetes` resources, it has not applied them. The next section will walk you through how this can be done.

_guides/kubernetes-guide.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ In this section, we are going to leverage the build mechanism of OpenShift. Run:
7272
----
7373
# To build the image on OpenShift
7474
oc new-build --binary --name=quarkus-quickstart -l app=quarkus-quickstart
75-
oc patch bc/quarkus-quickstart -p '{"spec":{"strategy":{"dockerStrategy":{"dockerfilePath":"src/main/docker/Dockerfile.native"}}}}'
75+
oc patch bc/quarkus-quickstart -p "{\"spec\":{\"strategy\":{\"dockerStrategy\":{\"dockerfilePath\":\"src/main/docker/Dockerfile.native\"}}}}"
7676
oc start-build quarkus-quickstart --from-dir=. --follow
7777
7878
# To instantiate the image

0 commit comments

Comments
 (0)