Skip to content

Commit

Permalink
feat(release lmc): release lmc-chart 4.1.0 (#100)
Browse files Browse the repository at this point in the history
Co-authored-by: Shubhashri Shirode <[email protected]>
  • Loading branch information
shubhashri12 and lmshubhashri authored Jun 21, 2023
1 parent 18213bc commit 8fcfafb
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 5 deletions.
6 changes: 3 additions & 3 deletions charts/lm-container/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: lm-container
description: A Helm chart for Logicmonitor's Kubernetes monitoring solutions
type: application
version: 4.0.0
version: 4.1.0
maintainers:
- name: LogicMonitor
email: [email protected]
Expand All @@ -11,7 +11,7 @@ kubeVersion: ">= 1.16.0-0"
dependencies:
- name: argus
# need to explicitly quote to make it string, else json schema fails
version: "5.6.0"
version: "6.0.0"
repository: https://logicmonitor.github.io/helm-charts
# uncomment to test umbrella chart in while developing
# repository: file://../argus
Expand All @@ -22,7 +22,7 @@ dependencies:
- monitoring
- name: collectorset-controller
# need to explicitly quote to make it string, else json schema fails
version: "5.0.0"
version: "5.1.0"
repository: https://logicmonitor.github.io/helm-charts
# uncomment to test umbrella chart in while developing
# repository: file://../collectorset-controller
Expand Down
64 changes: 62 additions & 2 deletions charts/lm-container/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,85 @@
"$id": "#/properties/global",
"description": "Global Properties",
"type": "object",
"properties": {
"accessID": {
"$id": "#/properties/accessID",
"type": "string",
"title": "Logicmonitor API Token accessID",
"description": "The LogicMonitor API key ID.\nNOTE: Ensure to add surrounding double quotes to avoid special character parsing errors.",
"default": "",
"examples": [
""
],
"$comment": "ui:accessId-ignore tf:optional"
},
"accessKey": {
"$id": "#/properties/accessKey",
"type": "string",
"title": "Logicmonitor API Token accessKey",
"description": "The LogicMonitor API key.\nNOTE: Ensure to add surrounding double quotes to avoid special character parsing errors.",
"default": "",
"examples": [
""
],
"$comment": "ui:accessKey-ignore tf:optional"
},
"account": {
"$id": "#/properties/account",
"type": "string",
"title": "Logicmonitor account name",
"description": "The LogicMonitor account name.nValue should be trimmed from URL \"___.logicmonitor.com\"\nexample: lmqauat.logicmonitor.com then \"lmqauat\" must be a valid value.",
"default": "",
"examples": [
"lmqauat"
],
"$comment": "ui:account-ignore tf:optional"
}
},
"additionalProperties": true
},
"argus": {
"$id": "#/properties/argus",
"description": "Argus Helm Chart Configurations",
"title": "Argus Configurations, check https://artifacthub.io/packages/helm/logicmonitor-helm-charts/argus?modal=values-schema for schema",
"description": "Argus Helm Chart Configurations, for detailed schema visit https://artifacthub.io/packages/helm/logicmonitor-helm-charts/argus?modal=values-schema",
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable Argus chart installation",
"default": true,
"$id": "#/properties/argus/properties/enabled"
},
"clusterName": {
"$id": "#/properties/clusterName",
"type": "string",
"title": "Friendly Cluster Name",
"description": "The unique name to give to the cluster's resource group.\nNOTE: You must not change the name once the application is deployed in the cluster. If changed, breaks correlation at multiple places\nexample: Organised Resource group name of Kubernetes resource tree, is generated as \"Kubernetes Cluster: <clusterName>\"",
"default": "",
"examples": [
""
],
"$comment": "ui:clusterName tf:"
},
"clusterTreeParentID": {
"$id": "#/properties/clusterTreeParentID",
"type": "integer",
"title": "The clusterTreeParentID",
"description": "clusterTreeParentID is a parent static resource group ID under which the organised Kubernetes resource tree gets created.\nA static resource group with the mentioned ID should exit beforehand.",
"default": 1,
"minimum": 1,
"examples": [
1
],
"$comment": "ui:clusterGroupID tf:optional"
}
},
"additionalProperties": true
},
"collectorset-controller": {
"$id": "#/properties/collectorset-controller",
"description": "Collectorset Controller Helm Chart Configurations",
"title": "Collectorset Controller Configurations, check https://artifacthub.io/packages/helm/logicmonitor-helm-charts/collectorset-controller?modal=values-schema for schema",
"description": "Collectorset Controller Helm Chart Configurations for detailed schema visit https://artifacthub.io/packages/helm/logicmonitor-helm-charts/collectorset-controller?modal=values-schema",
"type": "object",
"properties": {
"enabled": {
Expand Down

0 comments on commit 8fcfafb

Please sign in to comment.