Skip to content
This repository has been archived by the owner on Apr 17, 2019. It is now read-only.

Commit

Permalink
Merge pull request #647 from bprashanth/ing_docs
Browse files Browse the repository at this point in the history
Clarify firewall rule doc.
  • Loading branch information
bprashanth committed Mar 28, 2016
2 parents 9e57f96 + 61c03a7 commit 569ab62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ingress/controllers/gce/BETA_LIMITATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ $ gcloud compute firewall-rules create allow-130-211-0-0-22 \

Where `130.211.0.0/22` is the source range of the GCE L7, `$NODE_PORT` is the node port your Service is exposed on, i.e:
```console
$ export NODE_PORT=$(kubectl get -o jsonpath="{.spec.ports[0].nodePort}" services echoheadersx)
$ kubectl get -o jsonpath="{.spec.ports[0].nodePort}" services ${SERVICE_NAME}
```

and `$TAG` is a list of GKE instance tags, i.e:
and `$TAG` is an optional list of GKE instance tags, i.e:
```console
$ export TAG=$(basename `gcloud container clusters describe ${CLUSTER_NAME} --zone ${ZONE} | grep gke | awk '{print $2}'` | sed -e s/group/node/)
$ kubectl get nodes | awk '{print $1}' | tail -n +2 | grep -Po 'gke-[0-9,a-z]+-[0-9,a-z]+-node' | uniq
```

## Static and Ephemeral IPs
Expand Down

0 comments on commit 569ab62

Please sign in to comment.