Skip to content

Commit b0d65df

Browse files
committed
doc: fix minor typos in chapters 3-5
1 parent ea381de commit b0d65df

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

05-build/knative/setenv.sh.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ SOURCE_REVISION=${SOURCE_REVISION:-'master'}
1414
# The Context directory within sources repository which will be used during build
1515
CONTEXT_DIR=${CONTEXT_DIR:-'java/quarkus'}
1616
# The fully qualified image name e.g. docker.io/foo/bar:v1.0
17-
DESTINATION_IMAGE_NAME=${DESTINATION_IMAGE_NAME:'<your container registry url>'}
17+
DESTINATION_IMAGE_NAME=${DESTINATION_IMAGE_NAME:-'<your container registry url>'}

documentation/modules/ROOT/pages/03-configs-and-routes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ We need to run the service invocation in loop to see the results of traffic dist
230230
set -eu
231231
while true
232232
do
233-
http --body $IP_ADDRESS 'Host: greeter.{tutorial-namespace}.example.com'
233+
http --body $IP_ADDRESS 'Host:greeter.{tutorial-namespace}.example.com'
234234
sleep 3
235235
done;
236236
----

documentation/modules/ROOT/pages/04-scaling.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,8 @@ spec:
437437
path: /healthz
438438
----
439439

440-
<1> Will allow each service pod to handle max of 10 in-flight requests per pod before automatically scaling to new pods.
441-
<2> The deployment of this service will always have a minimum of 2 pods.
440+
<1> The deployment of this service will always have a minimum of 2 pods.
441+
<2> Will allow each service pod to handle max of 10 in-flight requests per pod before automatically scaling to new pods.
442442

443443
[#scaling-run-min-scale]
444444
[source,bash,subs="+macros,+attributes"]

0 commit comments

Comments
 (0)