From f64b37289dfeb30d389be9e8f3a96c006f397e80 Mon Sep 17 00:00:00 2001 From: Steve Kriss Date: Mon, 18 Mar 2019 10:57:28 -0600 Subject: [PATCH] add -L flag to curl commands Signed-off-by: Steve Kriss --- docs/migrating-to-velero.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/migrating-to-velero.md b/docs/migrating-to-velero.md index 3b55da9cd..47573fcbc 100644 --- a/docs/migrating-to-velero.md +++ b/docs/migrating-to-velero.md @@ -36,14 +36,14 @@ kubectl scale --namespace heptio-ark deployment/ark --replicas 0 ARCH="amd64" # Download the velero client/example tarball to and unpack -curl https://github.com/heptio/velero/releases/download/v0.11.0/velero-v0.11.0-${OS}-${ARCH}.tar.gz --output velero-v0.11.0-${OS}-${ARCH}.tar.gz +curl -L https://github.com/heptio/velero/releases/download/v0.11.0/velero-v0.11.0-${OS}-${ARCH}.tar.gz --output velero-v0.11.0-${OS}-${ARCH}.tar.gz tar xvf velero-v0.11.0-${OS}-${ARCH}.tar.gz # Create the prerequisite CRDs and namespace kubectl apply -f config/common/00-prereqs.yaml # Download and unpack the crd-migrator tool -curl https://github.com/vmware/crd-migration-tool/releases/download/v1.0.0/crd-migration-tool-v1.0.0-${OS}-${ARCH}.tar.gz --output crd-migration-tool-v1.0.0-${OS}-${ARCH}.tar.gz +curl -L https://github.com/vmware/crd-migration-tool/releases/download/v1.0.0/crd-migration-tool-v1.0.0-${OS}-${ARCH}.tar.gz --output crd-migration-tool-v1.0.0-${OS}-${ARCH}.tar.gz tar xvf crd-migration-tool-v1.0.0-${OS}-${ARCH}.tar.gz # Run the tool against your cluster. @@ -79,4 +79,4 @@ kubectl delete crds -l component=ark kubectl delete clusterrolebindings -l component=ark ``` -[1]: https://heptio.github.io/velero/v0.10.0/upgrading-to-v0.10 \ No newline at end of file +[1]: https://heptio.github.io/velero/v0.10.0/upgrading-to-v0.10