arglebargle
parent
4d187fa038
commit
8afa40b1d1
|
@ -233,7 +233,7 @@ done
|
|||
#### Windows
|
||||
|
||||
```
|
||||
@(worker-0 worker-1 worker-2) | ForEach-Object {
|
||||
@('worker-0', 'worker-1', 'worker-2') | ForEach-Object {
|
||||
New-Item $_-csr.json -Value @"
|
||||
{
|
||||
"CN": "system:node:$_",
|
||||
|
@ -260,11 +260,11 @@ $INTERNAL_IP=$(gcloud compute instances describe $_ `
|
|||
--format 'value(networkInterfaces[0].networkIP)')
|
||||
|
||||
cfssl gencert `
|
||||
-ca=ca.pem `
|
||||
-ca-key=ca-key.pem `
|
||||
-config=ca-config.json `
|
||||
-hostname=$_,$EXTERNAL_IP,$INTERNAL_IP `
|
||||
-profile=kubernetes `
|
||||
-ca ca.pem `
|
||||
-ca-key ca-key.pem `
|
||||
-config ca-config.json `
|
||||
-hostname $_,$EXTERNAL_IP,$INTERNAL_IP `
|
||||
-profile kubernetes `
|
||||
$_-csr.json | cfssljson -bare $_
|
||||
}
|
||||
```
|
||||
|
@ -343,10 +343,10 @@ cfssl gencert \
|
|||
#### Windows
|
||||
```
|
||||
cfssl gencert `
|
||||
-ca=ca.pem `
|
||||
-ca-key=ca-key.pem `
|
||||
-config=ca-config.json `
|
||||
-profile=kubernetes `
|
||||
-ca ca.pem `
|
||||
-ca-key ca-key.pem `
|
||||
-config ca-config.json `
|
||||
-profile kubernetes `
|
||||
kube-proxy-csr.json | cfssljson -bare kube-proxy
|
||||
```
|
||||
|
||||
|
@ -439,11 +439,11 @@ cfssl gencert \
|
|||
#### Windows
|
||||
```
|
||||
cfssl gencert `
|
||||
-ca=ca.pem `
|
||||
-ca-key=ca-key.pem `
|
||||
-config=ca-config.json `
|
||||
-hostname=10.32.0.1,10.240.0.10,10.240.0.11,10.240.0.12,$KUBERNETES_PUBLIC_ADDRESS,127.0.0.1,kubernetes.default `
|
||||
-profile=kubernetes `
|
||||
-ca ca.pem `
|
||||
-ca-key ca-key.pem `
|
||||
-config ca-config.json `
|
||||
-hostname 10.32.0.1,10.240.0.10,10.240.0.11,10.240.0.12,$KUBERNETES_PUBLIC_ADDRESS,127.0.0.1,kubernetes.default `
|
||||
-profile kubernetes `
|
||||
kubernetes-csr.json | cfssljson -bare kubernetes
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue