From f6e975daab7d64cdf4728a2c39e1de9b5b31911d Mon Sep 17 00:00:00 2001
From: merle <sebastien.merle@stritzinger.com>
Date: Mon, 10 Jul 2023 01:48:24 -0700
Subject: [PATCH] Update documentation and fix identation

---
 manifests/teservice.yaml          | 6 ++++--
 src/te/apps/epce/src/epce_sup.erl | 8 ++++----
 src/te/tutorial/2-6-te-demo.md    | 1 -
 3 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/manifests/teservice.yaml b/manifests/teservice.yaml
index 701a5f52f..d27bd42c7 100644
--- a/manifests/teservice.yaml
+++ b/manifests/teservice.yaml
@@ -22,6 +22,8 @@ spec:
       app: teservice
   template:
     metadata:
+      annotations:
+        config.linkerd.io/skip-inbound-ports: "4189"
       labels:
         app: teservice
     spec:
@@ -50,8 +52,8 @@ spec:
           exec:
             command: ["/tfte/bin/tfte", "status"]
         livenessProbe:
-          grpc:
-            port: 11010
+          exec:
+            command: ["/tfte/bin/tfte", "status"]
         resources:
           requests:
             cpu: 250m
diff --git a/src/te/apps/epce/src/epce_sup.erl b/src/te/apps/epce/src/epce_sup.erl
index f04e9697e..9341201c0 100644
--- a/src/te/apps/epce/src/epce_sup.erl
+++ b/src/te/apps/epce/src/epce_sup.erl
@@ -23,10 +23,10 @@ start_link() ->
 
 init([]) ->
     SupFlags = #{
-    	strategy => one_for_all,
-		intensity => 0,
-		period => 1
-	},
+        strategy => one_for_all,
+        intensity => 0,
+        period => 1
+    },
     TEDSpec = #{
         id => ?TED_WORKER,
         start => {?TED_WORKER, start_link, []},
diff --git a/src/te/tutorial/2-6-te-demo.md b/src/te/tutorial/2-6-te-demo.md
index 778d62e06..9b345203b 100644
--- a/src/te/tutorial/2-6-te-demo.md
+++ b/src/te/tutorial/2-6-te-demo.md
@@ -79,7 +79,6 @@
 ### Run the Test-Bed
 
 First load the [teraflow configuration file](~/tfs-ctrl/src/te/tests/topology-descriptors.json) using the webui.
-The first time the configuration is loaded may partialy fail because it tries to load the topology before the devices and links, but a second load should work.
 
 In first console:
     $ cd ~/testbed
-- 
GitLab