Skip to content
This repository was archived by the owner on Jan 16, 2023. It is now read-only.

Commit 4534a64

Browse files
committed
DEV-52044 Fix the comments
1 parent 569edd3 commit 4534a64

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

docs/source/content/docs/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RBAC enabled, this value should be set to false.
3030
- **imageRepository (default: `"logicmonitor/collectorset-controller"`):** The
3131
respository to use for the collectorset-controller docker image.
3232
- **imageTag:** The collectorset-controller [image tag] (https://hub.docker.com/r/logicmonitor/collectorset-controller/tags/) to use.
33-
- **proxyURL:** Http proxy url used by collectorset-controller request.
33+
- **proxyURL:** The Http/s proxy url for application request routing.
3434

3535
# Configuring Argus via the Helm Chart
3636

@@ -61,7 +61,7 @@ RBAC enabled, this value should be set to false.
6161
- **imageRepository (default: `"logicmonitor/argus"`):** The respository to use
6262
for the Argus docker image.
6363
- **imageTag:** The argus container [image tag] (https://hub.docker.com/r/logicmonitor/argus/tags/) to use.
64-
- **proxyURL:** Http proxy url used by argus request.
64+
- **proxyURL:** The Http/s proxy url for application request routing.
6565

6666

6767
# Configuring Argus Manually

docs/source/content/getting-started/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ $ helm upgrade \
3131
--set account="$ACCOUNT" \
3232
--set clusterName="$CLUSTER_NAME" \
3333
--set imageTag="$IMAGE_TAG" \
34+
--set proxyURL="$PROXY_URL" \
3435
collectorset-controller logicmonitor/collectorset-controller
3536
```
3637

@@ -54,6 +55,7 @@ Next, install Argus:
5455
--set clusterGroupID="$CLUSTER_GROUP_ID" \
5556
--set clusterName="$CLUSTER_NAME" \
5657
--set imageTag="$IMAGE_TAG" \
58+
--set proxyURL="$PROXY_URL" \
5759
--set collector.replicas="$COLLECTOR_REPLICAS" \
5860
--set collector.size="$COLLECTOR_SIZE" \
5961
argus logicmonitor/argus

pkg/argus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func newLMClientWithProxy(config *client.Config, proxyURLStr string) (*client.LM
5555
if err != nil {
5656
return nil, err
5757
}
58-
log.Infof("Use http proxy: %s://%s", proxyURL.Scheme, proxyURL.Host)
58+
log.Infof("Using http/s proxy: %s://%s", proxyURL.Scheme, proxyURL.Host)
5959
httpClient := http.Client{
6060
Transport: &http.Transport{
6161
Proxy: http.ProxyURL(proxyURL),

0 commit comments

Comments
 (0)