You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ki...@apache.org on 2020/11/05 06:58:17 UTC

[trafficserver-ingress-controller] branch master updated: Update TUTORIAL.md (#49)

This is an automated email from the ASF dual-hosted git repository.

kichan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new e9fdac0  Update TUTORIAL.md (#49)
e9fdac0 is described below

commit e9fdac03fc39c0147946383eedc436a2670a7d42
Author: Kit Chan <ki...@apache.org>
AuthorDate: Wed Nov 4 22:58:11 2020 -0800

    Update TUTORIAL.md (#49)
---
 docs/TUTORIAL.md | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/docs/TUTORIAL.md b/docs/TUTORIAL.md
index 5aeb710..ec5316f 100644
--- a/docs/TUTORIAL.md
+++ b/docs/TUTORIAL.md
@@ -64,13 +64,9 @@ Once you have cloned the project repo and started Docker and Minikube, in the te
   - Step 8 builds an image for fluentd. This is for log collection.
 
 9. `$ kubectl create namespace trafficserver-test`
-    - Create a namespace for ATS pod
 10. `$ openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout tls.key -out tls.crt -subj "/CN=atssvc/O=atssvc"`
-    - Create a self-signed certificate
 11. `$ kubectl create secret tls tls-secret --key tls.key --cert tls.crt -n trafficserver-test --dry-run=client -o yaml | kubectl apply -f -`
-    - Create a secret in the namespace just created
 12. `$ kubectl apply -f k8s/configmaps/fluentd-configmap.yaml`
-    - Create config map for fluentd
 13. `$ kubectl apply -f k8s/traffic-server/`
 
 - Now we have an ATS running inside the cluster. 
@@ -81,7 +77,7 @@ Once you have cloned the project repo and started Docker and Minikube, in the te
 
 #### Setting Up Backend Applications
 
-The following steps can be executed in any order, thus list numbers are not used.
+The following steps can be executed in any order
 
 - `$ kubectl apply -f k8s/apps/`
   - creates namespaces `trafficserver-test-2` and `trafficserver-test-3` if not already exist