arglebargle

pull/252/head
Mike Stevenson 2017-10-24 12:48:32 -07:00
parent 4d187fa038
commit 8afa40b1d1
1 changed files with 40 additions and 40 deletions

View File

@ -233,9 +233,9 @@ done
#### Windows
```
@(worker-0 worker-1 worker-2) | ForEach-Object {
New-Item $_-csr.json -Value @"
{
@('worker-0', 'worker-1', 'worker-2') | ForEach-Object {
New-Item $_-csr.json -Value @"
{
"CN": "system:node:$_",
"key": {
"algo": "rsa",
@ -250,23 +250,23 @@ New-Item $_-csr.json -Value @"
"ST": "Oregon"
}
]
}
"@
}
"@
$EXTERNAL_IP=$(gcloud compute instances describe $_ `
$EXTERNAL_IP=$(gcloud compute instances describe $_ `
--format 'value(networkInterfaces[0].accessConfigs[0].natIP)')
$INTERNAL_IP=$(gcloud compute instances describe $_ `
$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 `
cfssl gencert `
-ca ca.pem `
-ca-key ca-key.pem `
-config ca-config.json `
-hostname $_,$EXTERNAL_IP,$INTERNAL_IP `
-profile kubernetes `
$_-csr.json | cfssljson -bare $_
}
}
```
Results:
@ -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
```