diff --git a/documentation/modules/serving/pages/_partials/deploy-knative-resources.adoc b/documentation/modules/serving/pages/_partials/deploy-knative-resources.adoc index 4902a1b..3268ef1 100644 --- a/documentation/modules/serving/pages/_partials/deploy-knative-resources.adoc +++ b/documentation/modules/serving/pages/_partials/deploy-knative-resources.adoc @@ -96,7 +96,7 @@ kn service create prime-generator \ [.console-input] [source,bash,subs="+macros,+attributes"] ---- -{kubernetes-cli} apply -f link:{github-repo}/{basics-repo}/{service-file}[pass:[$TUTORIAL_HOME]/{basics-repo}/{service-file}] +{kubernetes-cli} apply -f link:{github-repo}/{basics-repo}/{service-file}[{basics-repo}/{service-file}] ---- -- ==== diff --git a/documentation/modules/serving/pages/basic-fundas.adoc b/documentation/modules/serving/pages/basic-fundas.adoc index 2b08c42..722ffed 100644 --- a/documentation/modules/serving/pages/basic-fundas.adoc +++ b/documentation/modules/serving/pages/basic-fundas.adoc @@ -27,7 +27,7 @@ Navigate to the tutorial chapter's folder {basics-repo}: [.console-input] [source,bash,subs="+macros,+attributes"] ---- -cd $TUTORIAL_HOME/{basics-repo} +cd $TUTORIAL_HOME ---- The following snippet shows what a Knative service YAML looks like: @@ -128,7 +128,7 @@ greeter-00001 greeter 100% 1 9m37s 3 OK / 4 Tru [TIP] ==== -* add `-oyaml` to the commands above to see more details +* add `-o yaml` to the commands above to see more details ==== [#basics-cleanup] diff --git a/documentation/modules/serving/pages/scaling.adoc b/documentation/modules/serving/pages/scaling.adoc index 672dd0a..00888cb 100644 --- a/documentation/modules/serving/pages/scaling.adoc +++ b/documentation/modules/serving/pages/scaling.adoc @@ -14,12 +14,12 @@ At the end of this chapter you will be able to: * Configure a minimum number of replicas for a service. -Navigate to the tutorial chapter's `{basics-repo}` folder: +Navigate to the tutorial folder: [source,bash,subs="attributes+,+macros"] [.console-input] ---- -cd $TUTORIAL_HOME/{basics-repo} +cd $TUTORIAL_HOME ---- [#scaling-deploy-service]