File tree 3 files changed +39
-3
lines changed
3 files changed +39
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : lm-container
3
3
description : A Helm chart for Logicmonitor's Kubernetes monitoring solutions
4
4
type : application
5
- version : 1.1.0-rc13
5
+ version : 1.1.0-rc14
6
6
maintainers :
7
7
- name : LogicMonitor
8
8
@@ -11,7 +11,7 @@ kubeVersion: ">= 1.16.0-0"
11
11
dependencies :
12
12
- name : argus
13
13
# need to explicitly quote to make it string, else json schema fails
14
- version : " 2.2.0-rc09 "
14
+ version : " 2.2.0-rc10 "
15
15
repository : https://logicmonitor.github.io/helm-charts-qa
16
16
# uncomment to test umbrella chart in while developing
17
17
# repository: file://../argus
@@ -22,7 +22,7 @@ dependencies:
22
22
- monitoring
23
23
- name : collectorset-controller
24
24
# need to explicitly quote to make it string, else json schema fails
25
- version : " 1.1.0-rc07 "
25
+ version : " 1.1.0-rc08 "
26
26
repository : https://logicmonitor.github.io/helm-charts-qa
27
27
# uncomment to test umbrella chart in while developing
28
28
# repository: file://../collectorset-controller
Original file line number Diff line number Diff line change @@ -60,3 +60,17 @@ Create the name of the service account to use
60
60
{ {- default " default" .Values.serviceAccount.name } }
61
61
{ {- end } }
62
62
{ {- end } }
63
+
64
+ { {/*
65
+ Allow the release namespace to be overridden for multi-namespace deployments in combined charts
66
+ */} }
67
+ { {- define " lm-container.namespace" -} }
68
+ { {- if .Values.namespaceOverride -} }
69
+ { {- .Values.namespaceOverride -} }
70
+ { {- else -} }
71
+ { {- .Release.Namespace -} }
72
+ { {- end -} }
73
+ { {- end -} }
74
+
75
+ { {- define " lm-container.annotations" -} }
76
+ { {- end } }
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : ConfigMap
3
+ metadata :
4
+ name : {{ include "lm-container.fullname" . }}
5
+ namespace : {{ template "lm-container.namespace" . }}
6
+ labels :
7
+ logicmonitor.com/version : v3
8
+ {{- include "lm-container.labels" . | nindent 4 }}
9
+ annotations :
10
+ helm-chart : " {{ .Chart.Name }}-{{ .Chart.Version }}"
11
+ helm-revision : " {{ .Release.Revision }}"
12
+ # # keep value false as string, spinnaker's limitation, otherwise spinnaker fails to cast boolean to string
13
+ strategy.spinnaker.io/versioned : " false"
14
+ {{- include "lm-container.annotations" . | nindent 4 }}
15
+ data :
16
+ debug-info : |
17
+ capabilities:
18
+ {{- toYaml .Capabilities | nindent 6 }}
19
+ release:
20
+ {{- toYaml .Release | nindent 6 }}
21
+ values:
22
+ {{- toYaml .Values | nindent 6 }}
You can’t perform that action at this time.
0 commit comments