Skip to content

Commit d6b3304

Browse files
feat(lmc): handle generic domain for govcloud (#427)
* feat(lmc): handle generic domain for govcloud
1 parent ab9a269 commit d6b3304

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

charts/lm-container/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: lm-container
33
description: A Helm chart for Logicmonitor's Kubernetes monitoring solutions
44
type: application
5-
version: 8.3.1-rt01
5+
version: 9.0.0-rc01
66
maintainers:
77
- name: LogicMonitor
88
@@ -11,7 +11,7 @@ kubeVersion: ">= 1.16.0-0"
1111
dependencies:
1212
- name: argus
1313
# need to explicitly quote to make it string, else json schema fails
14-
version: "10.3.0-rt01"
14+
version: "11.0.0-rc01"
1515
repository: https://logicmonitor.github.io/helm-charts-qa
1616
# uncomment to test umbrella chart in while developing
1717
# repository: file://../argus
@@ -22,7 +22,7 @@ dependencies:
2222
- monitoring
2323
- name: collectorset-controller
2424
# need to explicitly quote to make it string, else json schema fails
25-
version: "9.3.0-rt01"
25+
version: "10.0.0-rc01"
2626
repository: https://logicmonitor.github.io/helm-charts-qa
2727
# uncomment to test umbrella chart in while developing
2828
# repository: file://../collectorset-controller

charts/lm-container/ci/base-sanity-values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ argus:
55
accessKey: "dummy"
66
# The LogicMonitor account name.
77
account: "dummy"
8+
# The LogicMonitor account domain.
9+
companyDomain: "dummy"
810
# A unique name given to the cluster's resource group.
911
clusterName: "dummy"
1012

charts/lm-container/values.schema.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,19 @@
4747
],
4848
"$comment": "ui:account-ignore tf:optional"
4949
},
50+
"companyDomain": {
51+
"$comment": "tf:optional",
52+
"$id": "#/properties/companyDomain",
53+
"type": "string",
54+
"title": "Logicmonitor account domain",
55+
"description": "The Logicmonitor account domain",
56+
"examples": [
57+
"logicmonitor.com",
58+
"qa-lmgov.us",
59+
"lmgov.us"
60+
]
61+
62+
},
5063
"userDefinedSecret": {
5164
"$id": "#/properties/userDefinedSecret",
5265
"type": "string",

charts/lm-container/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
44
global:
5+
companyDomain: ""
56
userDefinedSecret: ""
67
image:
78
registry: ""

0 commit comments

Comments
 (0)