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/06/09 01:28:13 UTC

[trafficserver-ingress-controller] branch master updated: Updated README to remove deprecated command

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 3fa355c  Updated README to remove deprecated command
     new e8ee08e  Merge pull request #4 from rishabhc/k8s-version-update
3fa355c is described below

commit 3fa355c6d383ac1c2309a1b83755e0044202efb7
Author: Rishabh Chhabra <Rishabh Chhabra>
AuthorDate: Mon Jun 8 16:36:13 2020 -0500

    Updated README to remove deprecated command
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 8d5be13..fc86e46 100644
--- a/README.md
+++ b/README.md
@@ -107,7 +107,7 @@ Once you have cloned the project repo and started Docker and Kubernetes, in the
     - Create a namespace for ATS pod
 6. `$ 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
-7. `$ kubectl create secret tls tls-secret --key tls.key --cert tls.crt -n trafficserver-test --dry-run -o yaml | kubectl apply -f -`
+7. `$ 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
 5. `$ kubectl apply -f k8s/traffic-server/`
     -  will define a new [kubernetes namespace](https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/) named `trafficserver-test` and deploy a single ATS pod to said namespace. The ATS pod is also where the ingress controller lives. Additionally, this will expose your local machine's port `30000` to the outside world.