Skip to content

Commit

Permalink
docs: a firewall rule needs to be created when deploying Orchard to G…
Browse files Browse the repository at this point in the history
…CE (#983)
  • Loading branch information
edigaryev authored Dec 24, 2024
1 parent 6dd43ab commit 876271d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/orchard/deploying-controller.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ gcloud compute addresses create orchard-ip --region=us-central1
export ORCHARD_IP=$(gcloud compute addresses describe orchard-ip --format='value(address)' --region=us-central1)
```

Once we have the IP address, we can create a new instance with Orchard Controller running inside a container:
Then, ensure that there exist a firewall rule targeting `https-server` tag and allowing access to TCP port 443. If that's not the case, create one:

```shell
gcloud compute firewall-rules create default-allow-https --direction=INGRESS --priority=1000 --network=default --action=ALLOW --rules=tcp:443 --source-ranges=0.0.0.0/0 --target-tags=https-server
```

Once we have the IP address and the firewall rule set up, we can create a new instance with Orchard Controller running inside a container:

```bash
gcloud compute instances create-with-container orchard-controller \
Expand Down

0 comments on commit 876271d

Please sign in to comment.