Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-10-26 08:47:37 +00:00
parent 99f8d864b3
commit 2fb05c3b66
13 changed files with 41 additions and 42 deletions

View File

@ -1,8 +0,0 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.common.loader.init" . }}
{{/* Render secret */}}
{{- include "meshcentral.secret" . }}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}

View File

@ -2,6 +2,19 @@
## [meshcentral-5.0.6](https://github.com/truecharts/charts/compare/meshcentral-5.0.5...meshcentral-5.0.6) (2022-10-26)
### Chore
- Auto-update chart README [skip ci]
### Fix
- http port and probe ([#4196](https://github.com/truecharts/charts/issues/4196))
## [meshcentral-5.0.5](https://github.com/truecharts/charts/compare/meshcentral-5.0.4...meshcentral-5.0.5) (2022-10-26)
### Chore
@ -84,16 +97,3 @@
## [meshcentral-4.0.15](https://github.com/truecharts/charts/compare/meshcentral-4.0.14...meshcentral-4.0.15) (2022-10-12)
### Chore
- Auto-update chart README [skip ci]
- update helm general non-major ([#4071](https://github.com/truecharts/charts/issues/4071))
## [meshcentral-4.0.14](https://github.com/truecharts/charts/compare/meshcentral-4.0.13...meshcentral-4.0.14) (2022-10-07)
### Chore
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://charts.truecharts.org/
version: 2.0.40
digest: sha256:d4f7a8e0a0b71397241720094b69aaafad84c580c21f86c83d521e03affddb20
generated: "2022-10-26T05:55:14.709833308Z"
generated: "2022-10-26T08:45:50.815482597Z"

View File

@ -2,7 +2,7 @@ apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: meshcentral
appVersion: "1.0.90"
version: 5.0.5
version: 5.0.6
description: MeshCentral is a full computer management web site
type: application
deprecated: false

View File

@ -938,21 +938,11 @@ meshcentral:
# - When set, limits what OIDC groups are mirrored into MeshCentral user groups.
filter: []
probes:
liveness:
type: HTTPS
path: /health.ashx
readiness:
type: HTTPS
path: /health.ashx
startup:
type: HTTPS
path: /health.ashx
service:
main:
ports:
main:
# - Set this to HTTP if certs are served by a proxy
protocol: HTTPS
port: 10205
# mps:
@ -997,7 +987,7 @@ persistence:
enabled: true
type: secret
readOnly: true
# defaultMode: "0600"
defaultMode: "0600"
objectName: '{{ include "tc.common.names.fullname" . }}-secret'
mountPath: /opt/meshcentral/meshcentral-config
items:

View File

@ -724,7 +724,7 @@ questions:
label: Port Type
schema:
type: string
default: HTTPS
default: HTTP
enum:
- value: HTTP
description: HTTP

View File

@ -20,7 +20,6 @@
{{/* Inject some values */}}
{{- $_ := set $config "$schema" "http://info.meshcentral.com/downloads/meshcentral-config-schema.json" }}
{{- $_ := set $config "__comment__" "This file is generated dynamically at install time, do not attempt to modify it. On next start it will be re-generated" }}
{{- if not (hasKey $config "settings") }}
{{- $_ := set $config "settings" dict }}
@ -66,7 +65,6 @@ data:
{{- end }}
{{/* Prunes keys that start with _ */}}
{{- define "prune.keys" }}
{{- $values := . }}
{{- range $k, $v := $values }}
@ -88,7 +86,6 @@ data:
{{/* Prunes keys that start with _ */}}
{{/* Renames tcdefaultdomain variable to "" as this is the key used by MeshCentral */}}
{{/* but SCALE GUI does not handle it well */}}
{{- define "prune.keys.scale" }}
{{- $values := . }}
{{- if (hasKey $values "domains") }}
@ -104,9 +101,6 @@ data:
{{- $_ := unset $values $k }}
{{- end }}
{{- end }}
{{- if eq $k "browserPing" }}
{{- $_ := set $values "__browserPing" (printf "%v-%v" (kindOf $v) (typeOf $v)) }}
{{- end }}
{{- if or (eq (kindOf $v) "float64") (eq (kindOf $v) "int64") }}
{{- if eq (int $v) -99 }}
{{- $_ := unset $values $k }}

View File

@ -0,0 +1,23 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.common.loader.init" . }}
{{/* Render secret */}}
{{- include "meshcentral.secret" . }}
{{- define "meshcentral.probes" -}}
probes:
liveness:
type: {{ .Values.service.main.ports.main.protocol }}
path: /health.ashx
readiness:
type: {{ .Values.service.main.ports.main.protocol }}
path: /health.ashx
startup:
type: {{ .Values.service.main.ports.main.protocol }}
path: /health.ashx
{{- end -}}
{{- $_ := mergeOverwrite .Values (include "meshcentral.probes" . | fromYaml) -}}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}