@leverege/build-tools 2.66.3 → 2.66.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/.swo +0 -0
- package/src/helm-charts/api-server/values-local.yaml +1 -1
- package/src/helm-charts/authz-server/values-local.yaml +1 -1
- package/src/helm-charts/cnpg-db-tsdb-basic/cluster.yaml.ovh +1 -1
- package/src/helm-charts/db-curator/values-local.yaml +2 -2
- package/src/helm-charts/elasticsearch8/helmup.plugin +2 -1
- package/src/helm-charts/fota-server/values-local.yaml +1 -1
- package/src/helm-charts/message-processor/values-local.yaml +1 -1
- package/src/helm-charts/messenger/values-local.yaml +1 -1
- package/src/helm-charts/prom-operator/helmup.plugin +12 -5
- package/src/helm-charts/prom-operator/prometheus-adapter.yaml +18 -0
- package/src/helm-charts/prom-operator/prometheus-stack.yaml.ovh +51 -10
- package/src/helm-charts/prom-operator/rules/cadvisor-rules.yaml +21 -6
- package/src/helm-charts/prom-operator/rules/kubestate-rules.yaml +4 -6
- package/src/helm-charts/prom-operator/stackdriver-exporter-gpu-rules.yaml +44 -0
- package/src/helm-charts/prom-operator/stackdriver-exporter.yaml.ovh +15 -12
- package/src/helm-charts/pubsub-pulse/values-local.yaml +1 -2
- package/src/helm-charts/redis/helmup.plugin +1 -1
- package/src/helm-charts/resource-server/values-local.yaml +1 -1
- package/src/helm-charts/rule-engine/values-local.yaml +1 -1
- package/src/helm-charts/traefik/helmup.plugin +1 -1
- package/src/helm-charts/transponder-bq/values-local.yaml +1 -1
- package/src/helm-charts/transponder-dh/values-local.yaml +1 -1
- package/src/helm-charts/transponder-rt/values-local.yaml +1 -1
- package/src/helm-charts/transponder-tsdb/values-local.yaml +1 -1
- package/src/helmup.sh +2 -1
- package/src/helm-charts/traefik/.nohelm +0 -0
package/package.json
CHANGED
package/src/.swo
ADDED
|
Binary file
|
|
@@ -18,7 +18,7 @@ spec:
|
|
|
18
18
|
postInitTemplateSQL:
|
|
19
19
|
- CREATE EXTENSION timescaledb;
|
|
20
20
|
- CREATE EXTENSION jsquery;
|
|
21
|
-
- CREATE
|
|
21
|
+
- CREATE EXTENSION pg_stat_statements;
|
|
22
22
|
- CREATE DATABASE imagine;
|
|
23
23
|
# - CREATE DATABASE app; # for the operator restores
|
|
24
24
|
# - CREATE ROLE app; # same
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
#
|
|
3
3
|
showInstalling "Elastic Search 8"
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
# *** WARNING TO FUTURE SELF *** v22 of the chart is ES v9!!!
|
|
6
|
+
[ -z "$ELASTIC_CHART_VERSION" ] && ELASTIC_CHART_VERSION="21.6.3"
|
|
6
7
|
|
|
7
8
|
OCI_CHART="oci://registry-1.docker.io/bitnamicharts/elasticsearch"
|
|
8
9
|
|
|
@@ -3,28 +3,35 @@
|
|
|
3
3
|
showInstalling "The Prometheus Operator and Components"
|
|
4
4
|
addHelmRepo prometheus-community https://prometheus-community.github.io/helm-charts
|
|
5
5
|
|
|
6
|
-
showInstalling "The Prometheus Operator (kube-prometheus-stack)"
|
|
7
|
-
[ -z "$PROMETHEUS_STACK_CHART_VERSION" ] && PROMETHEUS_STACK_CHART_VERSION="70"
|
|
8
|
-
|
|
9
6
|
NS="--namespace prometheus"
|
|
10
7
|
|
|
8
|
+
showInstalling "The Prometheus Operator (kube-prometheus-stack)"
|
|
9
|
+
[ -z "$PROMETHEUS_STACK_CHART_VERSION" ] && PROMETHEUS_STACK_CHART_VERSION="72"
|
|
10
|
+
|
|
11
11
|
# https://artifacthub.io/packages/helm/prometheus-community/kube-prometheus-stack
|
|
12
12
|
helm upgrade $NS --install prometheus-stack prometheus-community/kube-prometheus-stack \
|
|
13
13
|
--values prom-operator/prometheus-stack.yaml \
|
|
14
14
|
--version $PROMETHEUS_STACK_CHART_VERSION $HELM_WHAT
|
|
15
15
|
|
|
16
16
|
# https://artifacthub.io/packages/helm/prometheus-community/prometheus-elasticsearch-exporter
|
|
17
|
-
showInstalling "The Elasticsearch Exporter (prom-operator)"
|
|
17
|
+
showInstalling "The Elasticsearch Exporter (prom-operator ES metrics exports)"
|
|
18
18
|
[ -z "$ELASTICSEARCH_EXPORTER_CHART_VERSION" ] && ELASTICSEARCH_EXPORTER_CHART_VERSION="6"
|
|
19
19
|
helm upgrade $NS --install elasticsearch8-exporter prometheus-community/prometheus-elasticsearch-exporter \
|
|
20
20
|
--values prom-operator/elasticsearch-exporter.yaml \
|
|
21
21
|
--version $ELASTICSEARCH_EXPORTER_CHART_VERSION $HELM_WHAT
|
|
22
22
|
|
|
23
23
|
# https://artifacthub.io/packages/helm/prometheus-community/prometheus-stackdriver-exporter
|
|
24
|
-
showInstalling "The Stackdriver Exporter (prom-operator)"
|
|
24
|
+
showInstalling "The Stackdriver Exporter (prom-operator GKE metrics exports)"
|
|
25
25
|
[ -z "$STACKDRIVER_EXPORTER_CHART_VERSION" ] && STACKDRIVER_EXPORTER_CHART_VERSION="4"
|
|
26
26
|
helm upgrade $NS --install stackdriver-exporter prometheus-community/prometheus-stackdriver-exporter \
|
|
27
27
|
--values prom-operator/stackdriver-exporter.yaml \
|
|
28
28
|
--version $STACKDRIVER_EXPORTER_CHART_VERSION $HELM_WHAT
|
|
29
29
|
|
|
30
|
+
# https://artifacthub.io/packages/helm/prometheus-community/prometheus-adapter
|
|
31
|
+
showInstalling "The Prometheus Adapter (prom-operator custom HPA metrics)"
|
|
32
|
+
[ -z "$PROMETHEUS_ADAPTER_CHART_VERSION" ] && PROMETHEUS_ADAPTER_CHART_VERSION="4"
|
|
33
|
+
helm upgrade $NS --install prometheus-adapter prometheus-community/prometheus-adapter \
|
|
34
|
+
--values prom-operator/prometheus-adapter.yaml \
|
|
35
|
+
--version $PROMETHEUS_ADAPTER_CHART_VERSION $HELM_WHAT
|
|
36
|
+
|
|
30
37
|
removeHelmRepo prometheus-community
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
fullnameOverride: "prometheus-stack-adapter"
|
|
2
|
+
|
|
3
|
+
prometheus:
|
|
4
|
+
url: "http://prometheus-operated.prometheus.svc"
|
|
5
|
+
port: 9090
|
|
6
|
+
|
|
7
|
+
rules:
|
|
8
|
+
custom:
|
|
9
|
+
- seriesQuery: 'gpu_duty_cycle_percent{namespace!="",pod!=""}'
|
|
10
|
+
resources:
|
|
11
|
+
overrides:
|
|
12
|
+
namespace: {resource: "namespace"}
|
|
13
|
+
pod: {resource: "pod"}
|
|
14
|
+
name:
|
|
15
|
+
matches: "gpu_duty_cycle_percent"
|
|
16
|
+
as: "gpu_duty_cycle_percent"
|
|
17
|
+
metricsQuery: |
|
|
18
|
+
avg(gpu_duty_cycle_percent{<<.LabelMatchers>>}) by (<<.GroupBy>>)
|
|
@@ -82,7 +82,7 @@ grafana:
|
|
|
82
82
|
entryPoints:
|
|
83
83
|
- websecure
|
|
84
84
|
routes:
|
|
85
|
-
- match: Host(`${PROJECT_NAME}-
|
|
85
|
+
- match: Host(`${PROJECT_NAME}-monitoring.${HOST}.com`)
|
|
86
86
|
kind: Rule
|
|
87
87
|
services:
|
|
88
88
|
- name: prometheus-stack-grafana
|
|
@@ -114,16 +114,57 @@ alertmanager:
|
|
|
114
114
|
slack_configs:
|
|
115
115
|
- channel: "${SLACK_CHANNEL}"
|
|
116
116
|
api_url: "${SLACK_HOOK_URL}"
|
|
117
|
-
username: "${
|
|
118
|
-
fallback: "${PROJECT_NAME} - {{ .CommonAnnotations.summary }}"
|
|
119
|
-
title: "{{ range .Alerts }}{{ .Annotations.summary }}\n{{ end }}"
|
|
120
|
-
title_link: "https://bitbucket.org/leverege/sre-playbook/src/master/"
|
|
117
|
+
username: "${PROJECT_ID}"
|
|
121
118
|
send_resolved: true
|
|
119
|
+
title: '{{ .CommonLabels.alertname }} alert'
|
|
120
|
+
title_link: '#'
|
|
121
|
+
color: >-
|
|
122
|
+
{{- if eq .Status "resolved" -}}
|
|
123
|
+
good
|
|
124
|
+
{{- else if eq .CommonLabels.severity "critical" -}}
|
|
125
|
+
danger
|
|
126
|
+
{{- else if eq .CommonLabels.severity "warning" -}}
|
|
127
|
+
warning
|
|
128
|
+
{{- else if eq .CommonLabels.severity "info" -}}
|
|
129
|
+
#439FE0
|
|
130
|
+
{{- else -}}
|
|
131
|
+
#CCCCCC
|
|
132
|
+
{{- end }}
|
|
122
133
|
text: |-
|
|
123
134
|
{{ range .Alerts }}
|
|
124
|
-
|
|
125
|
-
*
|
|
126
|
-
|
|
135
|
+
{{- if eq .Status "resolved" }}
|
|
136
|
+
:white_check_mark: *Resolved:* {{ .Annotations.summary }}
|
|
137
|
+
{{- else if eq .Labels.severity "critical" }}
|
|
138
|
+
:fire: *Critical:* {{ .Annotations.summary }}
|
|
139
|
+
{{- else if eq .Labels.severity "warning" }}
|
|
140
|
+
:warning: *Warning:* {{ .Annotations.summary }}
|
|
141
|
+
{{- else if eq .Labels.severity "info" }}
|
|
142
|
+
:information_source: *Info:* {{ .Annotations.summary }}
|
|
143
|
+
{{- else }}
|
|
144
|
+
:grey_question: *Alert:* {{ .Annotations.summary }}
|
|
145
|
+
{{- end }}
|
|
146
|
+
|
|
147
|
+
*Description:* {{ .Annotations.description }}
|
|
148
|
+
|
|
149
|
+
{{- if .Annotations.runbook_url }}
|
|
150
|
+
*Runbook:* <{{ .Annotations.runbook_url }}|Open Playbook>
|
|
151
|
+
{{- end }}
|
|
152
|
+
|
|
153
|
+
{{- if .Labels.pod }}
|
|
154
|
+
*Pod Link:* *<https://console.cloud.google.com/kubernetes/pod/${GCE_REGION}/${CLUSTER_NAME}/{{ .Labels.namespace }}/{{ .Labels.pod }}?project=${PROJECT_ID}|`{{ .Labels.pod }}`>*
|
|
155
|
+
{{- end }}
|
|
156
|
+
|
|
157
|
+
*Status:* `{{ .Status }}` | *Severity:* `{{ .Labels.severity }}` {{- if .Labels.container }} *Container:* `{{ .Labels.container }}` {{- end }}
|
|
158
|
+
|
|
159
|
+
{{- if .Annotations.dashboard }}
|
|
160
|
+
*Dashboard:* <{{ .Annotations.dashboard }}|View Dashboard>
|
|
161
|
+
{{- end }}
|
|
162
|
+
|
|
163
|
+
*Labels:*
|
|
164
|
+
{{- range $k, $v := .Labels }}
|
|
165
|
+
• `{{ $k }} = {{ $v }}`
|
|
166
|
+
{{- end }}
|
|
167
|
+
---
|
|
127
168
|
{{ end }}
|
|
128
169
|
- name: slack-watchdog
|
|
129
170
|
slack_configs:
|
|
@@ -156,10 +197,10 @@ alertmanager:
|
|
|
156
197
|
group_interval: 5m
|
|
157
198
|
group_by:
|
|
158
199
|
- alertname
|
|
159
|
-
-
|
|
200
|
+
- namespace
|
|
160
201
|
receiver: slack
|
|
161
202
|
routes:
|
|
162
|
-
-
|
|
203
|
+
- match_re:
|
|
163
204
|
alertname: "Watchdog"
|
|
164
205
|
receiver: slack-watchdog
|
|
165
206
|
- match:
|
|
@@ -64,16 +64,31 @@ spec:
|
|
|
64
64
|
VALUE = {{ $value }}
|
|
65
65
|
LABELS = {{ $labels }}
|
|
66
66
|
- alert: ContainerHighThrottleRate
|
|
67
|
-
expr:
|
|
67
|
+
expr: |
|
|
68
|
+
(
|
|
69
|
+
(
|
|
70
|
+
sum by (container, pod, namespace) (increase(container_cpu_cfs_throttled_periods_total{container!=""}[5m]))
|
|
71
|
+
/
|
|
72
|
+
sum by (container, pod, namespace) (increase(container_cpu_cfs_periods_total{container!=""}[5m]))
|
|
73
|
+
)
|
|
74
|
+
and on (pod, namespace)
|
|
75
|
+
(
|
|
76
|
+
time() - kube_pod_start_time > 60
|
|
77
|
+
)
|
|
78
|
+
) > 0.3
|
|
68
79
|
for: 5m
|
|
69
80
|
labels:
|
|
70
81
|
severity: warning
|
|
82
|
+
namespace: '{{ $labels.namespace }}'
|
|
83
|
+
pod: '{{ $labels.pod }}'
|
|
84
|
+
container: '{{ $labels.container }}'
|
|
71
85
|
annotations:
|
|
72
|
-
summary:
|
|
73
|
-
description:
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
86
|
+
summary: Pod experiencing high CPU throttling
|
|
87
|
+
description: |
|
|
88
|
+
{{ $labels.pod }} was throttled
|
|
89
|
+
- Verify Kubernetes CPU resource *requests* and *limits* for the container.
|
|
90
|
+
- Check if recent pod startup or autoscaling events could explain transient throttling.
|
|
91
|
+
- Persistent throttling indicates the container needs higher CPU limits or node sizing adjustment.
|
|
77
92
|
# - alert: ContainerHighLowChangeCpuUsage
|
|
78
93
|
# expr: (abs((sum by (instance, name) (rate(container_cpu_usage_seconds_total{name!=""}[1m])) * 100) - (sum by (instance, name) (rate(container_cpu_usage_seconds_total{name!=""}[1m] offset 1m)) * 100)) or abs((sum by (instance, name) (rate(container_cpu_usage_seconds_total{name!=""}[1m])) * 100) - (sum by (instance, name) (rate(container_cpu_usage_seconds_total{name!=""}[5m] offset 1m)) * 100))) > 25
|
|
79
94
|
# for: 0m
|
|
@@ -172,8 +172,8 @@ spec:
|
|
|
172
172
|
summary: Kubernetes HPA scale inability (instance {{ $labels.instance }})
|
|
173
173
|
description: |-
|
|
174
174
|
HPA {{ $labels.namespace }}/{{ $labels.horizontalpodautoscaler }} is unable to scale
|
|
175
|
-
|
|
176
|
-
|
|
175
|
+
# VALUE = {{ $value }}
|
|
176
|
+
# LABELS = {{ $labels }}
|
|
177
177
|
- alert: KubernetesHpaMetricsUnavailability
|
|
178
178
|
expr: kube_horizontalpodautoscaler_status_condition{status="false", condition="ScalingActive"} == 1
|
|
179
179
|
for: 0m
|
|
@@ -183,8 +183,8 @@ spec:
|
|
|
183
183
|
summary: Kubernetes HPA metrics unavailability (instance {{ $labels.instance }})
|
|
184
184
|
description: |-
|
|
185
185
|
HPA {{ $labels.namespace }}/{{ $labels.horizontalpodautoscaler }} is unable to collect metrics
|
|
186
|
-
VALUE = {{ $value }}
|
|
187
186
|
LABELS = {{ $labels }}
|
|
187
|
+
# VALUE = {{ $value }}
|
|
188
188
|
- alert: KubernetesHpaScaleMaximum
|
|
189
189
|
expr: (kube_horizontalpodautoscaler_status_desired_replicas >= kube_horizontalpodautoscaler_spec_max_replicas) and (kube_horizontalpodautoscaler_spec_max_replicas > 1) and (kube_horizontalpodautoscaler_spec_min_replicas != kube_horizontalpodautoscaler_spec_max_replicas)
|
|
190
190
|
for: 2m
|
|
@@ -193,9 +193,7 @@ spec:
|
|
|
193
193
|
annotations:
|
|
194
194
|
summary: Kubernetes HPA scale maximum (instance {{ $labels.instance }})
|
|
195
195
|
description: |-
|
|
196
|
-
HPA {{ $labels.namespace }}/{{ $labels.horizontalpodautoscaler }} has hit
|
|
197
|
-
VALUE = {{ $value }}
|
|
198
|
-
LABELS = {{ $labels }}
|
|
196
|
+
HPA {{ $labels.namespace }}/{{ $labels.horizontalpodautoscaler }} has hit max replica pods of {{ $value }}
|
|
199
197
|
- alert: KubernetesHpaUnderutilized
|
|
200
198
|
expr: max(quantile_over_time(0.5, kube_horizontalpodautoscaler_status_desired_replicas[1d]) == kube_horizontalpodautoscaler_spec_min_replicas) by (horizontalpodautoscaler) > 3
|
|
201
199
|
for: 0m
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
#
|
|
2
|
+
# these custom rules exist to essentially boil down the GPU information provided
|
|
3
|
+
# by the stackdriver exporter into a form that is a little more humand readable
|
|
4
|
+
# in an attempt to keep the grafana / alert manager rules a little less "verbose"
|
|
5
|
+
#
|
|
6
|
+
# In a nutshell, we take metrics in the form of:
|
|
7
|
+
# stackdriver_k_8_s_container_kubernetes_io_container_accelerator_duty_cycle
|
|
8
|
+
# and create boiled down metrics in the form of:
|
|
9
|
+
# gpu_duty_cycle_percent
|
|
10
|
+
#
|
|
11
|
+
apiVersion: monitoring.coreos.com/v1
|
|
12
|
+
kind: PrometheusRule
|
|
13
|
+
metadata:
|
|
14
|
+
name: prometheus-stack-kube-prom-stackdriver.gpu-rules
|
|
15
|
+
namespace: prometheus
|
|
16
|
+
labels:
|
|
17
|
+
release: prometheus-stack # or whatever your Prometheus release name is
|
|
18
|
+
spec:
|
|
19
|
+
groups:
|
|
20
|
+
- name: gpu.rules
|
|
21
|
+
interval: 1m
|
|
22
|
+
rules:
|
|
23
|
+
- record: "gpu_duty_cycle_percent"
|
|
24
|
+
expr: |
|
|
25
|
+
label_replace(
|
|
26
|
+
label_replace(
|
|
27
|
+
avg by (
|
|
28
|
+
pod_name,
|
|
29
|
+
namespace_name,
|
|
30
|
+
container_name,
|
|
31
|
+
accelerator_id,
|
|
32
|
+
model,
|
|
33
|
+
make
|
|
34
|
+
) (
|
|
35
|
+
stackdriver_k_8_s_container_kubernetes_io_container_accelerator_duty_cycle
|
|
36
|
+
),
|
|
37
|
+
"namespace", "$1", "namespace_name", "(.*)"
|
|
38
|
+
),
|
|
39
|
+
"pod", "$1", "pod_name", "(.*)"
|
|
40
|
+
)
|
|
41
|
+
labels:
|
|
42
|
+
source: "stackdriver"
|
|
43
|
+
metric_type: "derived"
|
|
44
|
+
subsystem: "gpu"
|
|
@@ -8,24 +8,27 @@ stackdriver:
|
|
|
8
8
|
projectId: "${PROJECT_NAME}"
|
|
9
9
|
metrics:
|
|
10
10
|
typePrefixes: >
|
|
11
|
-
|
|
11
|
+
agent.googleapis.com/cpu/utilization,
|
|
12
|
+
agent.googleapis.com/memory/bytes_used,
|
|
13
|
+
container.googleapis.com/accelerator/duty_cycle,
|
|
14
|
+
container.googleapis.com/accelerator/memory_usage,
|
|
15
|
+
container.googleapis.com/accelerator/request_count,
|
|
16
|
+
firebasedatabase.googleapis.com/io/database_load,
|
|
17
|
+
firebasedatabase.googleapis.com/network/active_connections,
|
|
18
|
+
firebasedatabase.googleapis.com/network/sent_bytes_count,
|
|
19
|
+
kubernetes.io/container/accelerator/duty_cycle,
|
|
20
|
+
kubernetes.io/container/accelerator/memory_total,
|
|
21
|
+
kubernetes.io/container/accelerator/memory_used,
|
|
22
|
+
monitoring.googleapis.com/uptime_check/check_passed,
|
|
12
23
|
pubsub.googleapis.com/subscription/num_undelivered_messages,
|
|
24
|
+
pubsub.googleapis.com/subscription/oldest_unacked_message_age,
|
|
13
25
|
pubsub.googleapis.com/subscription/pull_ack_request_count,
|
|
14
26
|
pubsub.googleapis.com/subscription/streaming_pull_ack_request_count,
|
|
15
27
|
pubsub.googleapis.com/topic/message_sizes,
|
|
16
28
|
pubsub.googleapis.com/topic/send_request_count,
|
|
17
|
-
|
|
18
|
-
firebasedatabase.googleapis.com/network/sent_bytes_count,
|
|
19
|
-
firebasedatabase.googleapis.com/network/active_connections,
|
|
20
|
-
container.googleapis.com/accelerator/duty_cycle,
|
|
21
|
-
container.googleapis.com/accelerator/memory_usage,
|
|
22
|
-
container.googleapis.com/accelerator/request_count,
|
|
23
|
-
agent.googleapis.com/memory/bytes_used,
|
|
24
|
-
agent.googleapis.com/cpu/utilization,
|
|
29
|
+
quota.googleapis.com/allocation/usage,
|
|
25
30
|
storage.googleapis.com/network/received_bytes_count,
|
|
26
|
-
storage.googleapis.com/network/sent_bytes_count
|
|
27
|
-
monitoring.googleapis.com/uptime_check/check_passed,
|
|
28
|
-
quota.googleapis.com/allocation/usage
|
|
31
|
+
storage.googleapis.com/network/sent_bytes_count
|
|
29
32
|
|
|
30
33
|
# https://artifacthub.io/packages/helm/prometheus-community/prometheus-stackdriver-exporter?modal=values&path=serviceMonitor
|
|
31
34
|
serviceMonitor:
|
|
@@ -4,7 +4,7 @@ showInstalling "Redis"
|
|
|
4
4
|
|
|
5
5
|
OCI_CHART="oci://registry-1.docker.io/bitnamicharts/redis"
|
|
6
6
|
|
|
7
|
-
[ -z "$REDIS_CHART_VERSION" ] && REDIS_CHART_VERSION="20.13.
|
|
7
|
+
[ -z "$REDIS_CHART_VERSION" ] && REDIS_CHART_VERSION="20.13.4"
|
|
8
8
|
|
|
9
9
|
helm upgrade --install redis $OCI_CHART \
|
|
10
10
|
--values redis/values-local.yaml \
|
|
@@ -20,7 +20,7 @@ addHelmRepo traefik https://helm.traefik.io/traefik
|
|
|
20
20
|
[ -z "$TRAEFIK_CHART_VERSION" ] && TRAEFIK_CHART_VERSION="35"
|
|
21
21
|
helm upgrade --install traefik traefik/traefik \
|
|
22
22
|
--namespace $TRAEFIK_NAMESPACE --create-namespace \
|
|
23
|
-
--values traefik/values
|
|
23
|
+
--values traefik/values.yaml \
|
|
24
24
|
--version $TRAEFIK_CHART_VERSION $HELM_WHAT
|
|
25
25
|
|
|
26
26
|
removeHelmRepo traefik
|
package/src/helmup.sh
CHANGED
|
@@ -49,6 +49,7 @@ AUXILIARY=(
|
|
|
49
49
|
|
|
50
50
|
# zombie-killer re-enabled 20240801
|
|
51
51
|
SYSTEM=(
|
|
52
|
+
prom-operator
|
|
52
53
|
elasticsearch8
|
|
53
54
|
redis
|
|
54
55
|
cnpg-operator
|
|
@@ -1049,7 +1050,7 @@ CATBACKUP
|
|
|
1049
1050
|
"cnpg-operator")
|
|
1050
1051
|
installCnpgOperatorEnvironment
|
|
1051
1052
|
bootstrapLocalSetup $SERVICE
|
|
1052
|
-
|
|
1053
|
+
installCnpgCleanupCronjob
|
|
1053
1054
|
;;
|
|
1054
1055
|
|
|
1055
1056
|
"cnpg-cronjob")
|
|
File without changes
|