Agility needs access to the following public endpoints in order to work
External service | Protocol/Port | External host (IP/subnet) |
---|---|---|
| https://docs.oracle.com/en-us/iaas/tools/public_ip_ranges.json | |
| ||
AWS S3 us-west-2 |
| https://ip-ranges.amazonaws.com/ip-ranges.json |
HTTP Proxy configuration
If the network where AGILITY is running requires an HTTP proxy setup to access Internet, follow these instructions:
...
Create an override values file (options available in the AGILITY chart):
Code Block cd agility-charts vi agility-values-overrides.yaml
Update
cv.httpProxy
optionsCode Block cv: httpProxy: httpProxy: <http://example.com:3128> httpsProxy: <http://example.com:3128> noProxy: <10.0.0.0/8,172.16.0.0/12,192.168.0.0/16>
httpProxy: HTTP Proxy setting, with URL format. Regular expression:
^https?:\/\/.+$
.httpsProxy: HTTPS Proxy setting, with URL format. Regular expression:
^https?:\/\/.+$
.noProxy: No Proxy setting, comma separated list of network addresses and/or domain names.
Run the Helm command to deploy AGILITY:
Code Block helm --namespace agility upgrade --install --create-namespace agility ./agility --values agility-values-overrides.yaml
Wait until all Pods are in
Running
orCompleted
state and allRunning
items show all expected containers running underREADY
column.
Disable remote monitoring (central-monitoring.b-yond.com) and data report (AWS bucket)
AGILITY sends anonymous usage data collection to B-Yond. This can be disabled following these instructions:
...
Create an override values file (options available in the AGILITY chart):
Code Block cd agility-charts vi agility-values-overrides.yaml
Update
cv.agilityOpenTelemetry.settings.remote.enabled
option andcv.settings.sharePcapInformation
optionsCode Block cv: settings: sharePcapInformation: false agilityOpenTelemetry: settings: remote: enabled: false
Run the Helm command to deploy AGILITY:
Code Block helm --namespace agility upgrade --install --create-namespace agility ./agility --values agility-values-overrides.yaml
Wait until all Pods are in
Running
orCompleted
state and allRunning
items show all expected containers running underREADY
column.
...