Fix curl arguments (#8062)

`-O` conflicts with `-o`.
This commit is contained in:
Yecheng Fu
2018-04-12 21:34:57 +08:00
committed by k8s-ci-robot
parent f1a96cc24f
commit 3a7de9b1d6
@@ -124,11 +124,11 @@ Finally, add the same parameters into the API server start parameters.
Note that you may need to adapt the sample commands based on the hardware Note that you may need to adapt the sample commands based on the hardware
architecture and cfssl version you are using. architecture and cfssl version you are using.
curl -LO https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 -o cfssl curl -L https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 -o cfssl
chmod +x cfssl chmod +x cfssl
curl -LO https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 -o cfssljson curl -L https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 -o cfssljson
chmod +x cfssljson chmod +x cfssljson
curl -LO https://pkg.cfssl.org/R1.2/cfssl-certinfo_linux-amd64 -o cfssl-certinfo curl -L https://pkg.cfssl.org/R1.2/cfssl-certinfo_linux-amd64 -o cfssl-certinfo
chmod +x cfssl-certinfo chmod +x cfssl-certinfo
1. Create a directory to hold the artifacts and initialize cfssl: 1. Create a directory to hold the artifacts and initialize cfssl: