Skip to content

Commit 0c1956e

Browse files
authored
Merge pull request #39 from saady/update-readme
Update readme with steps on how to get service cidr and pods cidr within google cloud
2 parents 9aab522 + f9ed398 commit 0c1956e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,23 @@ Generate the initial Certificate Revocation List. This file needs to be updated
2222
$ docker run --user=$(id -u) -e EASYRSA_CRL_DAYS=180 -v $PWD:/etc/openvpn -ti ptlange/openvpn easyrsa gen-crl
2323
```
2424

25+
26+
Getting service_cidr and pod_cidr within google cloud:
27+
28+
service_cidr:
29+
30+
```
31+
gcloud container clusters describe <your clustername> | grep servicesIpv4Cidr
32+
```
33+
34+
pod_cidr:
35+
36+
```
37+
gcloud container clusters describe <your clustername> | grep clusterIpv4Cidr
38+
```
39+
2540
Deploy the VPN server (namespace needs to exist already):
41+
2642
```
2743
$ ./kube/deploy.sh
2844
Usage: ./kube/deploy.sh <namespace> <OpenVPN URL> <service cidr> <pod cidr>

0 commit comments

Comments
 (0)