Merge "Alerta update to slience alert in Alertmanager"

This commit is contained in:
Zuul 2020-10-05 20:34:42 +00:00 committed by Gerrit Code Review
commit 1af5482e2d
3 changed files with 22 additions and 8 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v8.0.2 appVersion: v8.0.2
description: OpenStack-Helm Alerta for Alertmanager. description: OpenStack-Helm Alerta for Alertmanager.
name: alerta name: alerta
version: 0.1.2 version: 0.1.3
home: https://github.com/alerta/alerta home: https://github.com/alerta/alerta
sources: sources:
- https://github.com/alerta/alerta - https://github.com/alerta/alerta

View File

@ -20,7 +20,6 @@ kind: ConfigMap
metadata: metadata:
name: alerta-etc name: alerta-etc
data: data:
alertad.conf: | {{- include "helm-toolkit.snippets.values_template_renderer" (dict "envAll" $envAll "template" .Values.conf.alerta.alertad_conf "key" "alertad.conf") | indent 2 }}
DATABASE_URL = {{ tuple "postgresql" "internal" "admin" "postgresql" . | include "helm-toolkit.endpoints.authenticated_endpoint_uri_lookup" |quote}}
{{- include "helm-toolkit.snippets.values_template_renderer" (dict "envAll" $envAll "template" .Values.conf.alerta.alerta_webui_config "key" "config.js") | indent 2 }} {{- include "helm-toolkit.snippets.values_template_renderer" (dict "envAll" $envAll "template" .Values.conf.alerta.alerta_webui_config "key" "config.js") | indent 2 }}
{{- end }} {{- end }}

View File

@ -20,7 +20,7 @@
images: images:
tags: tags:
alerta: docker.io/alerta/alerta-web:8.0.2 alerta: docker.io/openstackhelm/alerta:8.0.2
dep_check: quay.io/airshipit/kubernetes-entrypoint:v1.0.0 dep_check: quay.io/airshipit/kubernetes-entrypoint:v1.0.0
image_repo_sync: docker.io/docker:17.07.0 image_repo_sync: docker.io/docker:17.07.0
ks_user: docker.io/openstackhelm/heat:stein-ubuntu_bionic ks_user: docker.io/openstackhelm/heat:stein-ubuntu_bionic
@ -119,6 +119,19 @@ endpoints:
port: port:
registry: registry:
node: 5000 node: 5000
alertmanager:
name: prometheus-alertmanager
namespace: null
hosts:
default: alerts-engine
host_fqdn_override:
default: null
path:
default: null
scheme: http
port:
api:
default: 9093
alerta: alerta:
name: alerta name: alerta
namespace: null namespace: null
@ -202,10 +215,12 @@ conf:
alertaAdminKey: changeme alertaAdminKey: changeme
alertaAPIKey: changeme alertaAPIKey: changeme
alertadb: alerta_db alertadb: alerta_db
alerta_configs: | alertad_conf: |
# ref: http://docs.alerta.io/en/latest/configuration.html DEBUG = True
DEBUG: false PLUGINS = ['enhance', 'forward', 'normalise', 'prometheus']
AUTH_REQUIRED: true ALERTMANAGER_SILENCE_FROM_ACK = True
ALERTMANAGER_API_URL = '{{ tuple "alertmanager" "internal" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_scheme_lookup" }}://{{ tuple "alertmanager" "internal" "api" . | include "helm-toolkit.endpoints.host_and_port_endpoint_uri_lookup" }}'
DATABASE_URL = {{ tuple "postgresql" "internal" "admin" "postgresql" . | include "helm-toolkit.endpoints.authenticated_endpoint_uri_lookup" |quote}}
alerta_webui_config: | alerta_webui_config: |
# ref: http://docs.alerta.io/en/latest/webui.html # ref: http://docs.alerta.io/en/latest/webui.html
'use strict'; 'use strict';