From 91b621a64c0053c3fab912b721893415885d102b Mon Sep 17 00:00:00 2001 From: Matteo Croce Date: Thu, 3 Oct 2019 18:40:44 +0200 Subject: [PATCH] BASH syntax highlighting --- docs/03-compute-resources.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/03-compute-resources.md b/docs/03-compute-resources.md index a30c520..8063c82 100644 --- a/docs/03-compute-resources.md +++ b/docs/03-compute-resources.md @@ -98,7 +98,7 @@ The compute instances in this lab will be provisioned using [Ubuntu Server](http Create three compute instances which will host the Kubernetes control plane: -``` +```sh for i in 0 1 2; do gcloud compute instances create controller-${i} \ --async \ @@ -122,7 +122,7 @@ Each worker instance requires a pod subnet allocation from the Kubernetes cluste Create three compute instances which will host the Kubernetes worker nodes: -``` +```sh for i in 0 1 2; do gcloud compute instances create worker-${i} \ --async \