Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
317f534e47
commit
236250deba
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,22 +0,0 @@
|
|||
{{- if and .Values.coreDns.enabled .Values.coreDns.service.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-coredns
|
||||
namespace: {{ .Values.coreDns.namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: {{ template "kube-prometheus.fullname" . }}-coredns
|
||||
spec:
|
||||
clusterIP: None
|
||||
ports:
|
||||
- name: http-metrics
|
||||
port: {{ .Values.coreDns.service.port }}
|
||||
protocol: TCP
|
||||
targetPort: {{ .Values.coreDns.service.targetPort }}
|
||||
selector:
|
||||
{{- if .Values.coreDns.service.selector }}
|
||||
{{ toYaml .Values.coreDns.service.selector | indent 4 }}
|
||||
{{- else}}
|
||||
k8s-app: kube-dns
|
||||
{{- end}}
|
||||
{{- end }}
|
|
@ -1,29 +0,0 @@
|
|||
{{- if .Values.coreDns.enabled }}
|
||||
apiVersion: monitoring.coreos.com/v1
|
||||
kind: ServiceMonitor
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-coredns
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: {{ template "kube-prometheus.fullname" . }}-coredns
|
||||
spec:
|
||||
jobLabel: k8s-app
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/component: {{ template "kube-prometheus.fullname" . }}-coredns
|
||||
namespaceSelector:
|
||||
matchNames:
|
||||
- {{ .Values.coreDns.namespace }}
|
||||
endpoints:
|
||||
- port: http-metrics
|
||||
{{- if .Values.coreDns.serviceMonitor.interval}}
|
||||
interval: {{ .Values.coreDns.serviceMonitor.interval }}
|
||||
{{- end }}
|
||||
bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
|
||||
{{- if .Values.coreDns.serviceMonitor.metricRelabelings }}
|
||||
metricRelabelings: {{- include "tc.v1.common.tplvalues.render" (dict "value" .Values.coreDns.serviceMonitor.metricRelabelings "context" $) | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- if .Values.coreDns.serviceMonitor.relabelings }}
|
||||
relabelings: {{- include "tc.v1.common.tplvalues.render" (dict "value" .Values.coreDns.serviceMonitor.relabelings "context" $) | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -1,35 +0,0 @@
|
|||
{{- if .Values.kubeApiServer.enabled }}
|
||||
apiVersion: monitoring.coreos.com/v1
|
||||
kind: ServiceMonitor
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-apiserver
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: apiserver
|
||||
spec:
|
||||
jobLabel: component
|
||||
selector:
|
||||
matchLabels:
|
||||
component: apiserver
|
||||
provider: kubernetes
|
||||
namespaceSelector:
|
||||
matchNames:
|
||||
- default
|
||||
endpoints:
|
||||
- port: https
|
||||
scheme: https
|
||||
tlsConfig:
|
||||
caFile: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
|
||||
serverName: kubernetes
|
||||
insecureSkipVerify: true
|
||||
bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
|
||||
{{- if .Values.kubeApiServer.serviceMonitor.interval }}
|
||||
interval: {{ .Values.kubeApiServer.serviceMonitor.interval }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubeApiServer.serviceMonitor.metricRelabelings }}
|
||||
metricRelabelings: {{- include "tc.v1.common.tplvalues.render" ( dict "value" .Values.kubeApiServer.serviceMonitor.metricRelabelings "context" $) | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubeApiServer.serviceMonitor.relabelings }}
|
||||
relabelings: {{- toYaml .Values.kubeApiServer.serviceMonitor.relabelings | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -1,18 +0,0 @@
|
|||
{{- if and .Values.kubeControllerManager.enabled .Values.kubeControllerManager.endpoints }}
|
||||
apiVersion: v1
|
||||
kind: Endpoints
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-kube-controller-manager
|
||||
namespace: {{ .Values.kubeControllerManager.namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: kube-controller-manager
|
||||
subsets:
|
||||
- addresses:
|
||||
{{- range .Values.kubeControllerManager.endpoints }}
|
||||
- ip: {{ . }}
|
||||
{{- end }}
|
||||
ports:
|
||||
- name: http-metrics
|
||||
port: {{ .Values.kubeControllerManager.service.port }}
|
||||
protocol: TCP
|
||||
{{- end }}
|
|
@ -1,25 +0,0 @@
|
|||
{{- if and .Values.kubeControllerManager.enabled .Values.kubeControllerManager.service.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-kube-controller-manager
|
||||
namespace: {{ .Values.kubeControllerManager.namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: {{ template "kube-prometheus.fullname" . }}-kube-controller-manager
|
||||
spec:
|
||||
clusterIP: None
|
||||
ports:
|
||||
- name: http-metrics
|
||||
port: {{ .Values.kubeControllerManager.service.port }}
|
||||
protocol: TCP
|
||||
targetPort: {{ .Values.kubeControllerManager.service.targetPort }}
|
||||
{{- if .Values.kubeControllerManager.endpoints }}{{- else }}
|
||||
selector:
|
||||
{{- if .Values.kubeControllerManager.service.selector }}
|
||||
{{ toYaml .Values.kubeControllerManager.service.selector | indent 4 }}
|
||||
{{- else}}
|
||||
component: kube-controller-manager
|
||||
{{- end}}
|
||||
{{- end }}
|
||||
type: ClusterIP
|
||||
{{- end }}
|
|
@ -1,40 +0,0 @@
|
|||
{{- if .Values.kubeControllerManager.enabled }}
|
||||
apiVersion: monitoring.coreos.com/v1
|
||||
kind: ServiceMonitor
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-kube-controller-manager
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: {{ template "kube-prometheus.fullname" . }}-kube-controller-manager
|
||||
spec:
|
||||
jobLabel: component
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/component: {{ template "kube-prometheus.fullname" . }}-kube-controller-manager
|
||||
namespaceSelector:
|
||||
matchNames:
|
||||
- {{ .Values.kubeControllerManager.namespace }}
|
||||
endpoints:
|
||||
- port: http-metrics
|
||||
{{- if .Values.kubeControllerManager.serviceMonitor.interval }}
|
||||
interval: {{ .Values.kubeControllerManager.serviceMonitor.interval }}
|
||||
{{- end }}
|
||||
bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
|
||||
{{- if .Values.kubeControllerManager.serviceMonitor.https }}
|
||||
scheme: https
|
||||
tlsConfig:
|
||||
caFile: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
|
||||
{{- if .Values.kubeControllerManager.serviceMonitor.insecureSkipVerify }}
|
||||
insecureSkipVerify: {{ .Values.kubeControllerManager.serviceMonitor.insecureSkipVerify }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubeControllerManager.serviceMonitor.serverName }}
|
||||
serverName: {{ .Values.kubeControllerManager.serviceMonitor.serverName }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubeControllerManager.serviceMonitor.metricRelabelings }}
|
||||
metricRelabelings: {{- include "tc.v1.common.tplvalues.render" (dict "value" .Values.kubeControllerManager.serviceMonitor.metricRelabelings "context" $) | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubeControllerManager.serviceMonitor.relabelings }}
|
||||
relabelings: {{- include "tc.v1.common.tplvalues.render" (dict "value" .Values.kubeControllerManager.serviceMonitor.relabelings "context" $) | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -1,18 +0,0 @@
|
|||
{{- if and .Values.kubeScheduler.enabled .Values.kubeScheduler.endpoints }}
|
||||
apiVersion: v1
|
||||
kind: Endpoints
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-kube-scheduler
|
||||
namespace: {{ .Values.kubeScheduler.namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: kube-scheduler
|
||||
subsets:
|
||||
- addresses:
|
||||
{{- range .Values.kubeScheduler.endpoints }}
|
||||
- ip: {{ . }}
|
||||
{{- end }}
|
||||
ports:
|
||||
- name: http-metrics
|
||||
port: {{ .Values.kubeScheduler.service.port }}
|
||||
protocol: TCP
|
||||
{{- end }}
|
|
@ -1,25 +0,0 @@
|
|||
{{- if and .Values.kubeScheduler.enabled .Values.kubeScheduler.service.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-kube-scheduler
|
||||
namespace: {{ .Values.kubeScheduler.namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: {{ template "kube-prometheus.fullname" . }}-kube-scheduler
|
||||
spec:
|
||||
clusterIP: None
|
||||
ports:
|
||||
- name: http-metrics
|
||||
port: {{ .Values.kubeScheduler.service.port}}
|
||||
protocol: TCP
|
||||
targetPort: {{ .Values.kubeScheduler.service.targetPort}}
|
||||
{{- if .Values.kubeScheduler.endpoints }}{{- else }}
|
||||
selector:
|
||||
{{- if .Values.kubeScheduler.service.selector }}
|
||||
{{ toYaml .Values.kubeScheduler.service.selector | indent 4 }}
|
||||
{{- else}}
|
||||
component: kube-scheduler
|
||||
{{- end}}
|
||||
{{- end }}
|
||||
type: ClusterIP
|
||||
{{- end -}}
|
|
@ -1,40 +0,0 @@
|
|||
{{- if .Values.kubeScheduler.enabled }}
|
||||
apiVersion: monitoring.coreos.com/v1
|
||||
kind: ServiceMonitor
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-kube-scheduler
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: {{ template "kube-prometheus.fullname" . }}-kube-scheduler
|
||||
spec:
|
||||
jobLabel: component
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/component: {{ template "kube-prometheus.fullname" . }}-kube-scheduler
|
||||
namespaceSelector:
|
||||
matchNames:
|
||||
- {{ .Values.kubeScheduler.namespace }}
|
||||
endpoints:
|
||||
- port: http-metrics
|
||||
{{- if .Values.kubeScheduler.serviceMonitor.interval }}
|
||||
interval: {{ .Values.kubeScheduler.serviceMonitor.interval }}
|
||||
{{- end }}
|
||||
bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
|
||||
{{- if .Values.kubeScheduler.serviceMonitor.https }}
|
||||
scheme: https
|
||||
tlsConfig:
|
||||
caFile: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
|
||||
{{- if .Values.kubeScheduler.serviceMonitor.insecureSkipVerify }}
|
||||
insecureSkipVerify: {{ .Values.kubeScheduler.serviceMonitor.insecureSkipVerify }}
|
||||
{{- end}}
|
||||
{{- if .Values.kubeScheduler.serviceMonitor.serverName }}
|
||||
serverName: {{ .Values.kubeScheduler.serviceMonitor.serverName }}
|
||||
{{- end}}
|
||||
{{- end}}
|
||||
{{- if .Values.kubeScheduler.serviceMonitor.metricRelabelings }}
|
||||
metricRelabelings: {{- include "tc.v1.common.tplvalues.render" (dict "value" .Values.kubeScheduler.serviceMonitor.metricRelabelings "context" $) | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubeScheduler.serviceMonitor.relabelings }}
|
||||
metricRelabelings: {{- include "tc.v1.common.tplvalues.render" (dict "value" .Values.kubeScheduler.serviceMonitor.relabelings "context" $) | nindent 6 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -1,85 +0,0 @@
|
|||
{{- if .Values.kubelet.enabled }}
|
||||
apiVersion: monitoring.coreos.com/v1
|
||||
kind: ServiceMonitor
|
||||
metadata:
|
||||
name: {{ template "kube-prometheus.fullname" . }}-kubelet
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels: {{- include "kube-prometheus.labels" . | nindent 4 }}
|
||||
app.kubernetes.io/component: kubelet
|
||||
spec:
|
||||
jobLabel: k8s-app
|
||||
selector:
|
||||
matchLabels:
|
||||
k8s-app: kubelet
|
||||
namespaceSelector:
|
||||
matchNames:
|
||||
- {{ .Values.kubelet.namespace }}
|
||||
endpoints:
|
||||
{{- if .Values.kubelet.serviceMonitor.https }}
|
||||
- port: https-metrics
|
||||
scheme: https
|
||||
tlsConfig:
|
||||
caFile: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
|
||||
serverName: kubernetes
|
||||
insecureSkipVerify: true
|
||||
bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
|
||||
honorLabels: true
|
||||
{{- if .Values.kubelet.serviceMonitor.interval }}
|
||||
interval: {{ .Values.kubelet.serviceMonitor.interval }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubelet.serviceMonitor.metricRelabelings }}
|
||||
metricRelabelings: {{- include "tc.v1.common.tplvalues.render" ( dict "value" .Values.kubelet.serviceMonitor.metricRelabelings "context" $) | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubelet.serviceMonitor.relabelings }}
|
||||
relabelings: {{- toYaml .Values.kubelet.serviceMonitor.relabelings | nindent 8 }}
|
||||
{{- end }}
|
||||
- port: https-metrics
|
||||
path: /metrics/cadvisor
|
||||
scheme: https
|
||||
tlsConfig:
|
||||
caFile: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
|
||||
serverName: kubernetes
|
||||
insecureSkipVerify: true
|
||||
bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
|
||||
honorLabels: true
|
||||
{{- if .Values.kubelet.serviceMonitor.interval }}
|
||||
interval: {{ .Values.kubelet.serviceMonitor.interval }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubelet.serviceMonitor.cAdvisorMetricRelabelings }}
|
||||
metricRelabelings: {{- include "tc.v1.common.tplvalues.render" ( dict "value" .Values.kubelet.serviceMonitor.cAdvisorMetricRelabelings "context" $) | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubelet.serviceMonitor.cAdvisorRelabelings }}
|
||||
relabelings: {{- toYaml .Values.kubelet.serviceMonitor.cAdvisorRelabelings | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- else }}
|
||||
- port: http-metrics
|
||||
scheme: http
|
||||
tlsConfig:
|
||||
insecureSkipVerify: false
|
||||
honorLabels: true
|
||||
{{- if .Values.kubelet.serviceMonitor.interval }}
|
||||
interval: {{ .Values.kubelet.serviceMonitor.interval }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubelet.serviceMonitor.metricRelabelings }}
|
||||
metricRelabelings: {{- include "tc.v1.common.tplvalues.render" ( dict "value" .Values.kubelet.serviceMonitor.metricRelabelings "context" $) | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubelet.serviceMonitor.relabelings }}
|
||||
relabelings: {{- toYaml .Values.kubelet.serviceMonitor.relabelings | nindent 8 }}
|
||||
{{- end }}
|
||||
- port: http-metrics
|
||||
path: /metrics/cadvisor
|
||||
scheme: http
|
||||
tlsConfig:
|
||||
insecureSkipVerify: false
|
||||
honorLabels: true
|
||||
{{- if .Values.kubelet.serviceMonitor.interval }}
|
||||
interval: {{ .Values.kubelet.serviceMonitor.interval }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubelet.serviceMonitor.cAdvisorMetricRelabelings }}
|
||||
metricRelabelings: {{- include "tc.v1.common.tplvalues.render" ( dict "value" .Values.kubelet.serviceMonitor.cAdvisorMetricRelabelings "context" $) | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.kubelet.serviceMonitor.cAdvisorRelabelings }}
|
||||
relabelings: {{- toYaml .Values.kubelet.serviceMonitor.cAdvisorRelabelings | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -41,6 +41,10 @@ title: Changelog
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -94,6 +98,3 @@ title: Changelog
|
|||
|
||||
|
||||
## [prometheus-16.4.4](https://github.com/truecharts/charts/compare/prometheus-16.4.3...prometheus-16.4.4) (2024-02-04)
|
||||
|
||||
|
||||
## [prometheus-16.4.3](https://github.com/truecharts/charts/compare/prometheus-16.4.2...prometheus-16.4.3) (2024-02-03)
|
|
@ -4,30 +4,23 @@ annotations:
|
|||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/category: metrics
|
||||
truecharts.org/max_helm_version: "3.14"
|
||||
truecharts.org/min_helm_version: "3.12"
|
||||
truecharts.org/min_helm_version: "3.11"
|
||||
truecharts.org/train: enterprise
|
||||
apiVersion: v2
|
||||
appVersion: 2.49.1
|
||||
appVersion: 2.50.1
|
||||
dependencies:
|
||||
- name: common
|
||||
version: 18.0.3
|
||||
version: 18.1.2
|
||||
repository: oci://tccr.io/truecharts
|
||||
condition: ""
|
||||
alias: ""
|
||||
tags: []
|
||||
import-values: []
|
||||
- name: node-exporter
|
||||
version: 6.3.0
|
||||
repository: oci://tccr.io/truecharts
|
||||
condition: exporters.enabled,exporters.node-exporter.enabled
|
||||
alias: ""
|
||||
tags: []
|
||||
import-values: []
|
||||
- name: kube-state-metrics
|
||||
version: 6.3.0
|
||||
repository: oci://tccr.io/truecharts
|
||||
condition: exporters.enabled,exporters.kube-state-metrics.enabled
|
||||
alias: ""
|
||||
- name: kube-prometheus-stack
|
||||
version: 56.9.0
|
||||
repository: oci://ghcr.io/prometheus-community/charts
|
||||
condition: ""
|
||||
alias: kps
|
||||
tags: []
|
||||
import-values: []
|
||||
deprecated: false
|
||||
|
@ -36,7 +29,7 @@ home: https://truecharts.org/charts/enterprise/prometheus
|
|||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/prometheus.png
|
||||
keywords:
|
||||
- metrics
|
||||
kubeVersion: ">=1.24.0-0"
|
||||
kubeVersion: '>=1.24.0-0'
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
email: info@truecharts.org
|
||||
|
@ -46,8 +39,8 @@ sources:
|
|||
- https://github.com/prometheus-community/helm-charts
|
||||
- https://github.com/prometheus-operator/kube-prometheus
|
||||
- https://github.com/truecharts/charts/tree/master/charts/enterprise/prometheus
|
||||
- https://hub.docker.com/r/bitnami/prometheus
|
||||
- https://quay.io/thanos/thanos
|
||||
- https://hub.docker.com/r/bitnami/alertmanager
|
||||
- https://quay.io/thanos/thanos
|
||||
- https://hub.docker.com/r/bitnami/prometheus
|
||||
type: application
|
||||
version: 17.4.1
|
||||
version: 17.6.0
|
Binary file not shown.
Binary file not shown.
|
@ -1,12 +1,12 @@
|
|||
image:
|
||||
repository: bitnami/prometheus
|
||||
tag: 2.50.0@sha256:5c06e840a870a4a279406f0d0a73c3ca33fcf0adf6464153e273206118be0c29
|
||||
tag: 2.50.1@sha256:d4f5af2ea07aaa34cb1335cc0053c03e4e327977afdbdf4261b5afb3ce50febe
|
||||
thanosImage:
|
||||
repository: quay.io/thanos/thanos
|
||||
tag: v0.34.1@sha256:567346c3f6ff2927c2c6c0daad977b2213f62d45eca54d48afd19e6deb902181
|
||||
alertmanagerImage:
|
||||
repository: bitnami/alertmanager
|
||||
tag: 0.26.0@sha256:9e7e46e5a8fa16d7c67bcae3fc7fcd96e19958459c6dbee487bf538867a0465c
|
||||
tag: 0.27.0@sha256:f8798a69650f772e507c5dff8c9352e77c4f9c5d9d4ebff04a0a31377da9730b
|
||||
global:
|
||||
labels: {}
|
||||
workload:
|
||||
|
@ -54,6 +54,124 @@ grafana:
|
|||
scrapeInterval: "30s"
|
||||
uid: "prometheus"
|
||||
|
||||
kps:
|
||||
## Install Prometheus Operator CRDs
|
||||
##
|
||||
crds:
|
||||
enabled: false
|
||||
|
||||
## Manages Prometheus and Alertmanager components
|
||||
##
|
||||
prometheusOperator:
|
||||
enabled: false
|
||||
|
||||
##
|
||||
global:
|
||||
rbac:
|
||||
create: true
|
||||
|
||||
## Create default rules for monitoring the cluster
|
||||
##
|
||||
defaultRules:
|
||||
create: true
|
||||
|
||||
windowsMonitoring:
|
||||
## Deploys the windows-exporter and Windows-specific dashboards and rules (job name must be 'windows-exporter')
|
||||
enabled: false
|
||||
|
||||
## Configuration for prometheus-windows-exporter
|
||||
## ref: https://github.com/prometheus-community/helm-charts/tree/main/charts/prometheus-windows-exporter
|
||||
##
|
||||
prometheus-windows-exporter:
|
||||
## Enable ServiceMonitor and set Kubernetes label to use as a job label
|
||||
##
|
||||
prometheus:
|
||||
monitor:
|
||||
enabled: false
|
||||
|
||||
## Configuration for alertmanager
|
||||
## ref: https://prometheus.io/docs/alerting/alertmanager/
|
||||
##
|
||||
alertmanager:
|
||||
## Deploy alertmanager
|
||||
##
|
||||
enabled: false
|
||||
|
||||
## Using default values from https://github.com/grafana/helm-charts/blob/main/charts/grafana/values.yaml
|
||||
##
|
||||
grafana:
|
||||
enabled: false
|
||||
forceDeployDashboards: true
|
||||
defaultDashboardsEnabled: true
|
||||
|
||||
## Flag to disable all the kubernetes component scrapers
|
||||
##
|
||||
kubernetesServiceMonitors:
|
||||
enabled: true
|
||||
|
||||
## Component scraping the kube api server
|
||||
##
|
||||
kubeApiServer:
|
||||
enabled: true
|
||||
|
||||
## Component scraping the kubelet and kubelet-hosted cAdvisor
|
||||
##
|
||||
kubelet:
|
||||
enabled: true
|
||||
|
||||
## Component scraping the kube controller manager
|
||||
##
|
||||
kubeControllerManager:
|
||||
enabled: true
|
||||
|
||||
## Component scraping coreDns. Use either this or kubeDns
|
||||
##
|
||||
coreDns:
|
||||
enabled: true
|
||||
|
||||
## Component scraping kubeDns. Use either this or coreDns
|
||||
##
|
||||
kubeDns:
|
||||
enabled: false
|
||||
|
||||
## Component scraping etcd
|
||||
##
|
||||
kubeEtcd:
|
||||
enabled: true
|
||||
|
||||
## Component scraping kube scheduler
|
||||
##
|
||||
kubeScheduler:
|
||||
enabled: true
|
||||
|
||||
## Component scraping kube proxy
|
||||
##
|
||||
kubeProxy:
|
||||
enabled: false
|
||||
|
||||
## Component scraping kube state metrics
|
||||
##
|
||||
kubeStateMetrics:
|
||||
enabled: true
|
||||
|
||||
## dontDeploy node exporter as a daemonset to all nodes
|
||||
##
|
||||
nodeExporter:
|
||||
enabled: true
|
||||
|
||||
## dont Deploy a Prometheus instance
|
||||
##
|
||||
prometheus:
|
||||
enabled: false
|
||||
|
||||
## Configuration for thanosRuler
|
||||
## ref: https://thanos.io/tip/components/rule.md/
|
||||
##
|
||||
thanosRuler:
|
||||
## Dont Deploy thanosRuler
|
||||
##
|
||||
enabled: false
|
||||
|
||||
service:
|
||||
main:
|
||||
selectorLabels:
|
||||
|
@ -205,8 +323,10 @@ serviceAccount:
|
|||
main:
|
||||
enabled: true
|
||||
primary: true
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
|
||||
probes:
|
||||
# -- Liveness probe configuration
|
||||
# @default -- See below
|
||||
|
@ -856,6 +976,7 @@ prometheus:
|
|||
## @param prometheus.portName Port name used for the pods and governing service. This defaults to web
|
||||
##
|
||||
portName: main
|
||||
|
||||
####
|
||||
## Alert Manager Config
|
||||
####
|
||||
|
@ -1133,245 +1254,7 @@ alertmanager:
|
|||
## @param alertmanager.configSelector Namespaces to be selected for AlertmanagerConfig discovery. If nil, only check own namespace. This defaults to {}
|
||||
##
|
||||
configSelector: {}
|
||||
####
|
||||
## Exporters
|
||||
####
|
||||
|
||||
## @section Exporters
|
||||
|
||||
## Exporters
|
||||
##
|
||||
exporters:
|
||||
node-exporter:
|
||||
## @param exporters.node-exporter.enabled Enable node-exporter
|
||||
##
|
||||
enabled: true
|
||||
kube-state-metrics:
|
||||
## @param exporters.kube-state-metrics.enabled Enable kube-state-metrics
|
||||
##
|
||||
enabled: true
|
||||
## @param kube-state-metrics [object] Node Exporter deployment configuration
|
||||
##
|
||||
kube-state-metrics:
|
||||
serviceMonitor:
|
||||
enabled: true
|
||||
honorLabels: true
|
||||
## Component scraping for kubelet and kubelet hosted cAdvisor
|
||||
##
|
||||
kubelet:
|
||||
## @param kubelet.enabled Create a ServiceMonitor to scrape kubelet service
|
||||
##
|
||||
enabled: true
|
||||
## @param kubelet.namespace Namespace where kubelet service is deployed. Related configuration `operator.kubeletService.namespace`
|
||||
##
|
||||
namespace: kube-system
|
||||
serviceMonitor:
|
||||
## @param kubelet.serviceMonitor.https Enable scraping of the kubelet over HTTPS
|
||||
##
|
||||
https: true
|
||||
## @param kubelet.serviceMonitor.interval Scrape interval (use by default, falling back to Prometheus' default)
|
||||
## ref: https://github.com/prometheus-operator/prometheus-operator/blob/master/Documentation/api.md#endpoint
|
||||
##
|
||||
interval: ""
|
||||
## @param kubelet.serviceMonitor.metricRelabelings Metric relabeling
|
||||
## ref: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs
|
||||
##
|
||||
metricRelabelings: []
|
||||
## @param kubelet.serviceMonitor.relabelings Relabel configs
|
||||
## ref: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config
|
||||
##
|
||||
relabelings: []
|
||||
## @param kubelet.serviceMonitor.cAdvisorMetricRelabelings Metric relabeling for scraping cAdvisor
|
||||
## ref: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs
|
||||
##
|
||||
cAdvisorMetricRelabelings: []
|
||||
## @param kubelet.serviceMonitor.cAdvisorRelabelings Relabel configs for scraping cAdvisor
|
||||
## ref: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs
|
||||
##
|
||||
cAdvisorRelabelings: []
|
||||
## Component scraping the kube-apiserver
|
||||
##
|
||||
kubeApiServer:
|
||||
## @param kubeApiServer.enabled Create a ServiceMonitor to scrape kube-apiserver service
|
||||
##
|
||||
enabled: true
|
||||
serviceMonitor:
|
||||
## @param kubeApiServer.serviceMonitor.interval Scrape interval. If not set, the Prometheus default scrape interval is used.
|
||||
## ref: https://github.com/prometheus-operator/prometheus-operator/blob/master/Documentation/api.md#endpoint
|
||||
##
|
||||
interval: ""
|
||||
## @param kubeApiServer.serviceMonitor.metricRelabelings Metric relabeling
|
||||
## ref: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs
|
||||
##
|
||||
metricRelabelings: []
|
||||
## @param kubeApiServer.serviceMonitor.relabelings Relabel configs
|
||||
## ref: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config
|
||||
##
|
||||
relabelings: []
|
||||
## Component scraping the kube-controller-manager
|
||||
##
|
||||
kubeControllerManager:
|
||||
## @param kubeControllerManager.enabled Create a ServiceMonitor to scrape kube-controller-manager service
|
||||
##
|
||||
enabled: false
|
||||
## @param kubeControllerManager.endpoints If your kube controller manager is not deployed as a pod, specify IPs it can be found on
|
||||
## endpoints:
|
||||
## - 10.141.4.22
|
||||
## - 10.141.4.23
|
||||
## - 10.141.4.24
|
||||
##
|
||||
endpoints: []
|
||||
## @param kubeControllerManager.namespace Namespace where kube-controller-manager service is deployed.
|
||||
##
|
||||
namespace: kube-system
|
||||
## Service ports and selector information
|
||||
## @param kubeControllerManager.service.enabled Whether or not to create a Service object for kube-controller-manager
|
||||
## @param kubeControllerManager.service.port Listening port of the kube-controller-manager Service object
|
||||
## @param kubeControllerManager.service.targetPort Port to target on the kube-controller-manager Pods. This should be the port that kube-controller-manager is exposing metrics on
|
||||
## @param kubeControllerManager.service.selector Optional PODs Label selector for the service
|
||||
##
|
||||
service:
|
||||
enabled: true
|
||||
port: 10252
|
||||
targetPort: 10252
|
||||
## selector:
|
||||
## component: kube-controller-manager
|
||||
##
|
||||
selector: {}
|
||||
serviceMonitor:
|
||||
## @param kubeControllerManager.serviceMonitor.interval Scrape interval (use by default, falling back to Prometheus' default)
|
||||
## ref: https://github.com/prometheus-operator/prometheus-operator/blob/master/Documentation/api.md#endpoint
|
||||
##
|
||||
interval: ""
|
||||
## @param kubeControllerManager.serviceMonitor.https Enable scraping kube-controller-manager over https
|
||||
## Requires proper certs (not self-signed) and delegated authentication/authorization checks
|
||||
##
|
||||
https: false
|
||||
## @param kubeControllerManager.serviceMonitor.insecureSkipVerify Skip TLS certificate validation when scraping
|
||||
##
|
||||
insecureSkipVerify: ""
|
||||
## @param kubeControllerManager.serviceMonitor.serverName Name of the server to use when validating TLS certificate
|
||||
serverName: ""
|
||||
## @param kubeControllerManager.serviceMonitor.metricRelabelings Metric relabeling
|
||||
## ref: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs
|
||||
##
|
||||
metricRelabelings: []
|
||||
## @param kubeControllerManager.serviceMonitor.relabelings Relabel configs
|
||||
## ref: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config
|
||||
##
|
||||
relabelings: []
|
||||
## Component scraping kube scheduler
|
||||
##
|
||||
kubeScheduler:
|
||||
## @param kubeScheduler.enabled Create a ServiceMonitor to scrape kube-scheduler service
|
||||
##
|
||||
enabled: false
|
||||
## @param kubeScheduler.endpoints If your kube scheduler is not deployed as a pod, specify IPs it can be found on
|
||||
## endpoints:
|
||||
## - 10.141.4.22
|
||||
## - 10.141.4.23
|
||||
## - 10.141.4.24
|
||||
##
|
||||
endpoints: []
|
||||
## @param kubeScheduler.namespace Namespace where kube-scheduler service is deployed.
|
||||
##
|
||||
namespace: kube-system
|
||||
## If using kubeScheduler.endpoints only the port and targetPort are used
|
||||
## @param kubeScheduler.service.enabled Whether or not to create a Service object for kube-scheduler
|
||||
## @param kubeScheduler.service.port Listening port of the kube scheduler Service object
|
||||
## @param kubeScheduler.service.targetPort Port to target on the kube scheduler Pods. This should be the port that kube scheduler is exposing metrics on
|
||||
## @param kubeScheduler.service.selector Optional PODs Label selector for the service
|
||||
##
|
||||
service:
|
||||
enabled: true
|
||||
port: 10251
|
||||
targetPort: 10251
|
||||
## selector:
|
||||
## component: kube-scheduler
|
||||
##
|
||||
selector: {}
|
||||
serviceMonitor:
|
||||
## @param kubeScheduler.serviceMonitor.interval Scrape interval (use by default, falling back to Prometheus' default)
|
||||
##
|
||||
interval: ""
|
||||
## @param kubeScheduler.serviceMonitor.https Enable scraping kube-scheduler over https
|
||||
## Requires proper certs (not self-signed) and delegated authentication/authorization checks
|
||||
##
|
||||
https: false
|
||||
## @param kubeScheduler.serviceMonitor.insecureSkipVerify Skip TLS certificate validation when scraping
|
||||
##
|
||||
insecureSkipVerify: ""
|
||||
## @param kubeScheduler.serviceMonitor.serverName Name of the server to use when validating TLS certificate
|
||||
##
|
||||
serverName: ""
|
||||
## @param kubeScheduler.serviceMonitor.metricRelabelings Metric relabeling
|
||||
## metricRelabelings:
|
||||
## - action: keep
|
||||
## regex: 'kube_(daemonset|deployment|pod|namespace|node|statefulset).+'
|
||||
## sourceLabels: [__name__]
|
||||
##
|
||||
metricRelabelings: []
|
||||
## @param kubeScheduler.serviceMonitor.relabelings Relabel configs
|
||||
## relabelings:
|
||||
## - sourceLabels: [__meta_kubernetes_pod_node_name]
|
||||
## separator: ;
|
||||
## regex: ^(.*)$
|
||||
## targetLabel: nodename
|
||||
## replacement: $1
|
||||
## action: replace
|
||||
##
|
||||
relabelings: []
|
||||
## Component scraping coreDns
|
||||
##
|
||||
coreDns:
|
||||
## @param coreDns.enabled Create a ServiceMonitor to scrape coredns service
|
||||
##
|
||||
enabled: true
|
||||
## @param coreDns.namespace Namespace where core dns service is deployed.
|
||||
##
|
||||
namespace: kube-system
|
||||
## Create a ServiceMonitor to scrape coredns service
|
||||
## @param coreDns.service.enabled Whether or not to create a Service object for coredns
|
||||
## @param coreDns.service.port Listening port of the coredns Service object
|
||||
## @param coreDns.service.targetPort Port to target on the coredns Pods. This should be the port that coredns is exposing metrics on
|
||||
## @param coreDns.service.selector Optional PODs Label selector for the service
|
||||
##
|
||||
service:
|
||||
enabled: true
|
||||
port: 9153
|
||||
targetPort: 9153
|
||||
## selector:
|
||||
## component: kube-dns
|
||||
##
|
||||
selector: {}
|
||||
serviceMonitor:
|
||||
## @param coreDns.serviceMonitor.interval Scrape interval. If not set, the Prometheus default scrape interval is used.
|
||||
##
|
||||
interval: ""
|
||||
## @param coreDns.serviceMonitor.metricRelabelings Metric relabel configs to apply to samples before ingestion.
|
||||
## metricRelabelings:
|
||||
## - action: keep
|
||||
## regex: 'kube_(daemonset|deployment|pod|namespace|node|statefulset).+'
|
||||
## sourceLabels: [__name__]
|
||||
##
|
||||
metricRelabelings: []
|
||||
## @param coreDns.serviceMonitor.relabelings Relabel configs to apply to samples before ingestion.
|
||||
## relabelings:
|
||||
## - sourceLabels: [__meta_kubernetes_pod_node_name]
|
||||
## separator: ;
|
||||
## regex: ^(.*)$
|
||||
## targetLabel: nodename
|
||||
## replacement: $1
|
||||
## action: replace
|
||||
##
|
||||
relabelings: []
|
||||
## Component scraping the kube-proxy
|
||||
##
|
||||
kubeProxy:
|
||||
## @param kubeProxy.enabled Create a ServiceMonitor to scrape the kube-proxy Service
|
||||
##
|
||||
enabled: false
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
||||
updated: true
|
|
@ -0,0 +1,37 @@
|
|||
annotations:
|
||||
max_scale_version: 24.04.0
|
||||
min_scale_version: 23.10.0
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/category: home-automation
|
||||
truecharts.org/max_helm_version: "3.14"
|
||||
truecharts.org/min_helm_version: "3.11"
|
||||
truecharts.org/train: incubator
|
||||
apiVersion: v2
|
||||
appVersion: 1.10.0
|
||||
dependencies:
|
||||
- name: common
|
||||
version: 18.1.5
|
||||
repository: oci://tccr.io/truecharts
|
||||
condition: ""
|
||||
alias: ""
|
||||
tags: []
|
||||
import-values: []
|
||||
deprecated: false
|
||||
description: The Wyoming integration of openWakeWord
|
||||
home: https://truecharts.org/charts/incubator/wyoming-openwakeword
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/wyoming-openwakeword.png
|
||||
keywords:
|
||||
- wyoming-openwakeword
|
||||
kubeVersion: ">=1.24.0-0"
|
||||
maintainers:
|
||||
- name: TrueCharts
|
||||
email: info@truecharts.org
|
||||
url: https://truecharts.org
|
||||
name: wyoming-openwakeword
|
||||
sources:
|
||||
- https://github.com/home-assistant/addons/tree/master/openwakeword
|
||||
- https://github.com/rhasspy/wyoming-openwakeword/
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/wyoming-openwakeword
|
||||
- https://hub.docker.com/r/rhasspy/wyoming-openwakeword
|
||||
type: application
|
||||
version: 0.0.3
|
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
title: README
|
||||
---
|
||||
|
||||
## General Info
|
||||
|
||||
TrueCharts can be installed as both _normal_ Helm Charts or as Apps on TrueNAS SCALE.
|
||||
However only installations using the TrueNAS SCALE Apps system are supported.
|
||||
|
||||
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/wyoming-openwakeword)
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
|
||||
|
||||
## Support
|
||||
|
||||
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
|
||||
- See the [Website](https://truecharts.org)
|
||||
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
|
||||
|
||||
---
|
||||
|
||||
## Sponsor TrueCharts
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
|
||||
_All Rights Reserved - The TrueCharts Project_
|
|
@ -0,0 +1,8 @@
|
|||
The Wyoming integration of openWakeWord
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/wyoming-openwakeword](https://truecharts.org/charts/incubator/wyoming-openwakeword)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,25 @@
|
|||
image:
|
||||
repository: rhasspy/wyoming-openwakeword
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 1.10.0@sha256:951b823c38403a9f10445a370d3dace3da4c38f64c6579dfbc5af0c10098f1b8
|
||||
|
||||
wyoming_openwakeword:
|
||||
model: ok_nabu
|
||||
preload_model: true
|
||||
custom_model:
|
||||
path: ""
|
||||
threshold: "0.5"
|
||||
trigger_level: 1
|
||||
debug: false
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 10400
|
||||
protocol: tcp
|
||||
targetPort: 10400
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: false
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,21 @@
|
|||
{{- define "wyoming-openwakeword.args" -}}
|
||||
{{- $openwakeword := .Values.wyoming_openwakeword -}}
|
||||
args:
|
||||
- --model
|
||||
- {{ $openwakeword.model | quote }}
|
||||
{{- if $openwakeword.preload_model }}
|
||||
- --preload-model
|
||||
- {{ $openwakeword.model | quote }}
|
||||
{{- end }}
|
||||
{{- if $openwakeword.custom_model.path }}
|
||||
- --custom-model-dir
|
||||
- {{ $openwakeword.custom_model.path | quote }}
|
||||
{{- end }}
|
||||
{{- if $openwakeword.debug }}
|
||||
- --debug
|
||||
{{- end }}
|
||||
- --threshold
|
||||
- {{ $openwakeword.threshold | quote }}
|
||||
- --trigger-level
|
||||
- {{ $openwakeword.trigger_level | quote }}
|
||||
{{- end -}}
|
|
@ -0,0 +1,8 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{- $newArgs := (include "wyoming-openwakeword.args" . | fromYaml) }}
|
||||
{{- $_ := set .Values.workload.main.podSpec.containers.main "args" $newArgs.args -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,30 @@
|
|||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
||||
# OWNERS file for Kubernetes
|
||||
OWNERS
|
||||
# helm-docs templates
|
||||
*.gotmpl
|
||||
# docs folder
|
||||
/docs
|
||||
# icon
|
||||
icon.png
|
|
@ -19,6 +19,10 @@ title: Changelog
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [nocodb-12.3.6](https://github.com/truecharts/charts/compare/nocodb-12.3.5...nocodb-12.3.6) (2024-02-03)
|
||||
|
||||
### Chore
|
||||
|
@ -94,6 +98,3 @@ title: Changelog
|
|||
|
||||
|
||||
## [nocodb-12.2.8](https://github.com/truecharts/charts/compare/nocodb-12.2.7...nocodb-12.2.8) (2024-01-02)
|
||||
|
||||
### Chore
|
||||
|
|
@ -4,13 +4,13 @@ annotations:
|
|||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/category: productivity
|
||||
truecharts.org/max_helm_version: "3.14"
|
||||
truecharts.org/min_helm_version: "3.12"
|
||||
truecharts.org/min_helm_version: "3.11"
|
||||
truecharts.org/train: stable
|
||||
apiVersion: v2
|
||||
appVersion: 0.204.1
|
||||
appVersion: 0.204.4
|
||||
dependencies:
|
||||
- name: common
|
||||
version: 18.0.2
|
||||
version: 18.1.2
|
||||
repository: oci://tccr.io/truecharts
|
||||
condition: ""
|
||||
alias: ""
|
||||
|
@ -40,4 +40,4 @@ sources:
|
|||
- https://github.com/truecharts/charts/tree/master/charts/stable/nocodb
|
||||
- https://hub.docker.com/r/nocodb/nocodb
|
||||
type: application
|
||||
version: 13.1.3
|
||||
version: 13.2.2
|
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
image:
|
||||
repository: nocodb/nocodb
|
||||
tag: 0.204.1@sha256:e31df0ff3e365dd8dea7c76bcad458fa01eb986eaa3540acf273c2f135c08eb3
|
||||
tag: 0.204.4@sha256:806a276dad127f2260d542a8ad43d6ec90d9bd37ce4a701a9b209d4a6b1dc992
|
||||
pullPolicy: IfNotPresent
|
||||
securityContext:
|
||||
container:
|
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue