Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Azure Container Instances guidance #20

Merged
merged 31 commits into from
Dec 5, 2023
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9259b57
Update Dockerfile & draft doc update
jonathanalgar Oct 5, 2023
2319f96
Make FAQ
jonathanalgar Oct 5, 2023
83f8d13
tweaks
jonathanalgar Oct 6, 2023
9ff57e9
add more detail
jonathanalgar Oct 6, 2023
992a0b8
revision
jonathanalgar Oct 6, 2023
7f0d07d
Reverse Dockerfile update
jonathanalgar Oct 9, 2023
2993d67
Reverse Dockerfile update
jonathanalgar Oct 9, 2023
2138d30
Added info on how to run with a command line.
joaomvalentim Oct 17, 2023
d7e7ce2
Update README.md
jonathanalgar Oct 20, 2023
20d86fb
remove ACI section
jonathanalgar Dec 5, 2023
b47f1b0
fix documentation in entry point
bmartins-unit Nov 29, 2023
aab19b1
Add ACI guidance back to seperate FAQ.md
jonathanalgar Dec 5, 2023
743f94f
fix format
jonathanalgar Dec 5, 2023
d2df891
Update Dockerfile & draft doc update
jonathanalgar Oct 5, 2023
af4f690
Make FAQ
jonathanalgar Oct 5, 2023
bf36764
tweaks
jonathanalgar Oct 6, 2023
f384fa7
add more detail
jonathanalgar Oct 6, 2023
d35ea7f
revision
jonathanalgar Oct 6, 2023
e9b59a0
Reverse Dockerfile update
jonathanalgar Oct 9, 2023
760cad1
Reverse Dockerfile update
jonathanalgar Oct 9, 2023
9d07d06
Added info on how to run with a command line.
joaomvalentim Oct 17, 2023
3a5f285
Update README.md
jonathanalgar Oct 20, 2023
a845651
remove ACI section
jonathanalgar Dec 5, 2023
82ad02d
fix documentation in entry point
bmartins-unit Nov 29, 2023
b425954
Add ACI guidance back to seperate FAQ.md
jonathanalgar Dec 5, 2023
c5521d3
fix format
jonathanalgar Dec 5, 2023
4c7aef9
Merge branch 'update-azure-aci-guidance' of https://github.com/OutSys…
jonathanalgar Dec 5, 2023
3421a9f
fix Dockerfile
jonathanalgar Dec 5, 2023
97a370f
Fix Dockerfile
jonathanalgar Dec 5, 2023
1021c47
Add whitespace so no diff
jonathanalgar Dec 5, 2023
4939eb8
fix Dockerfile
jonathanalgar Dec 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tweaks
  • Loading branch information
jonathanalgar committed Dec 5, 2023
commit 83f8d1346f00af7ee5bcd3ec5e7e7369e3ee4cc3
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Use the **Token** and **Address** to form the `outsystemscc` command to run. For

In this example, you create a tunnel to the endpoint `192.168.0.3:8393`, a REST API service running on IP address `192.168.0.3`. The endpoint is available to consume by apps running in the connected stage at `secure-gateway:8081`.

> :bulb: If you want to run `outsystemscc` on Azure Container Instances, [see the FAQs](#how-do-i-run-outsystemscc-on-azure-container-instances).
> :bulb: If you want to run `outsystemscc` on Azure Container Instances, [see the FAQs](#how-do-i-run-outsystemscc-on-azure-container-instances) for guidance.

You can create a tunnel to connect multiple endpoints to the same Private Gateway. To do this, run multiple instances of `outsystemscc` or pass in multiple remotes (`R:<local-port>:<remote-host>:<remote-port>`) to the same instance. In the latter case, for example:

Expand Down Expand Up @@ -214,11 +214,11 @@ The command to create a new container with the [Azure CLI](https://learn.microso

#### Network configuration

* **Outbound Access to Internet:** Ensure that the Azure Resource Group in which you are deploying outsystemscc has outbound access to the Internet. This is crucial for `outsystemscc` to communicate with your ODC organization. You may need to configure your Network Security Groups (NSGs), Azure Firewall, or whichever network security solution you have in place to allow outbound connections. It's advisable to work with your network administrator to verify the outbound connectivity.
* **Outbound Access to Internet:** Ensure that the Azure Resource Group in which you are deploying `outsystemscc` has outbound access to the Internet. This is crucial for `outsystemscc` to communicate with your ODC organization. You may need to configure your Network Security Groups (NSGs), Azure Firewall, or whichever network security solution you have in place to allow outbound connections. It's advisable to work with your network administrator to verify the outbound connectivity.

* **Access to Endpoints:** Additionally, ensure that the network configuration allows traffic from the Azure Container Instance to the internal endpoints you wish to connect to. This may involve configuring your Virtual Network (VNet), Subnets, and Network Security Groups (NSGs) to allow the necessary traffic. If there are firewalls or other network devices blocking traffic, you'll need to configure them accordingly.

* **Testing Connectivity:** It's a good practice to test the network connectivity before deploying `outsystemscc``. You can use tools like [Azure Network Watcher](https://docs.microsoft.com/en-us/azure/network-watcher/network-watcher-monitoring-overview) or even basic network troubleshooting tools like ping and traceroute to verify connectivity.
* **Testing Connectivity:** It's a good practice to test the network connectivity before deploying `outsystemscc`. You can use tools like [Azure Network Watcher](https://docs.microsoft.com/en-us/azure/network-watcher/network-watcher-monitoring-overview) or even basic network troubleshooting tools like ping and traceroute to verify connectivity.

* **Monitoring and Logging:** Implement monitoring and logging to get insights into the network traffic and to troubleshoot any connectivity issues. Azure provides various monitoring and logging tools like [Azure Monitor](https://docs.microsoft.com/en-us/azure/azure-monitor/overview) and [Azure Log Analytics](https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/log-analytics-tutorial) which can be invaluable for diagnosing network-related issues.

Expand Down