From 640b94ab36d353e01d147daeafd06c594e0cfac8 Mon Sep 17 00:00:00 2001 From: Sebastian Plattner Date: Mon, 3 Jul 2023 15:27:04 +0200 Subject: [PATCH] fix expose command section --- content/en/docs/exposing-a-service/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/exposing-a-service/_index.md b/content/en/docs/exposing-a-service/_index.md index 20a0c559..cea7c3c8 100644 --- a/content/en/docs/exposing-a-service/_index.md +++ b/content/en/docs/exposing-a-service/_index.md @@ -37,9 +37,9 @@ And then apply the file with: {{% param cliToolName %}} apply -f svc-web-go.yaml --namespace ``` -There is also am imperative command to create a service and expose your application which can be used instead of the yaml file with the `{{% param cliToolName %}} apply ...` y command +There is also am imperative command to create a service and expose your application which can be used instead of the yaml file with the `{{% param cliToolName %}} apply ...` command -```bash +``` {{% param cliToolName %}} expose deployment example-web-go --type=ClusterIP --name=example-web-go --port=5000 --target-port=5000 --namespace ```