diff --git a/class/defaults.yml b/class/defaults.yml index a3d1716aa..590a0b949 100644 --- a/class/defaults.yml +++ b/class/defaults.yml @@ -55,7 +55,7 @@ parameters: appcat: registry: ghcr.io repository: vshn/appcat - tag: v4.94.1 + tag: v4.95.0 functionAppcat: registry: ${appcat:images:appcat:registry} repository: ${appcat:images:appcat:repository} diff --git a/component/vshn_alerting.jsonnet b/component/vshn_alerting.jsonnet index e94f31385..b37da6edf 100644 --- a/component/vshn_alerting.jsonnet +++ b/component/vshn_alerting.jsonnet @@ -8,7 +8,7 @@ local genGenericAlertingRule(serviceName) = { apiVersion: 'monitoring.coreos.com/v1', kind: 'PrometheusRule', metadata: { - name: 'vshn-' + std.asciiLower(serviceName) + '-sla', + name: 'vshn-' + std.asciiLower(serviceName) + '-new-sla', namespace: params.slos.namespace, labels: { syn_team: 'schedar', @@ -22,7 +22,7 @@ local genGenericAlertingRule(serviceName) = { name: 'appcat-' + std.asciiLower(serviceName) + '-sla-target', rules: [ { - alert: 'vshn-' + std.asciiLower(serviceName) + '-sla', + alert: 'vshn-' + std.asciiLower(serviceName) + '-new-sla', // this query can be read as: if the rate of probes that are not successful is higher than 0.2 in the last 5 minutes and in the last minute, then alert // rate works on per second basis, so 0.2 means 20% of the probes are failing, which for 5 minutes is 1 minute and for 1 minute is 45 seconds expr: 'rate(appcat_probes_seconds_count{reason!="success", service="' + serviceName + '", ha="false", maintenance="false"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="' + serviceName + '", ha="false", maintenance="false"}[1m]) > 0.75', @@ -37,7 +37,7 @@ local genGenericAlertingRule(serviceName) = { }, }, { - alert: 'vshn-' + std.asciiLower(serviceName) + '-sla-ha', + alert: 'vshn-' + std.asciiLower(serviceName) + '-new-sla-ha', // this query can be read as: if the rate of probes that are not successful is higher than 0.2 in the last 5 minutes and in the last minute, then alert // rate works on per second basis, so 0.2 means 20% of the probes are failing, which for 5 minutes is 1 minute and for 1 minute is 45 seconds expr: 'rate(appcat_probes_seconds_count{reason!="success", service="' + serviceName + '", ha="true"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="' + serviceName + '", ha="true"}[1m]) > 0.75', diff --git a/tests/golden/apiserver/appcat/appcat/10_function_appcat.yaml b/tests/golden/apiserver/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/apiserver/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/apiserver/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/apiserver/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/apiserver/appcat/appcat/apiserver/30_deployment.yaml index 320f066be..5fac33273 100644 --- a/tests/golden/apiserver/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/apiserver/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/billing/appcat/appcat/10_function_appcat.yaml b/tests/golden/billing/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/billing/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/billing/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/billing/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/billing/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/billing/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/billing/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/billing/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml b/tests/golden/billing/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml index cd9c7dd7d..e5e7208fd 100644 --- a/tests/golden/billing/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml +++ b/tests/golden/billing/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml @@ -36,7 +36,7 @@ spec: value: "false" - name: APPCAT_SLI_VSHNMARIADB value: "false" - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/10_function_appcat.yaml b/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml b/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml index cd9c7dd7d..e5e7208fd 100644 --- a/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml +++ b/tests/golden/cloudscale-metrics-collector-cloud/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml @@ -36,7 +36,7 @@ spec: value: "false" - name: APPCAT_SLI_VSHNMARIADB value: "false" - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/10_function_appcat.yaml b/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml b/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml index cd9c7dd7d..e5e7208fd 100644 --- a/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml +++ b/tests/golden/cloudscale-metrics-collector-managed/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml @@ -36,7 +36,7 @@ spec: value: "false" - name: APPCAT_SLI_VSHNMARIADB value: "false" - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/cloudscale/appcat/appcat/10_function_appcat.yaml b/tests/golden/cloudscale/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/cloudscale/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/cloudscale/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/cloudscale/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/cloudscale/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/cloudscale/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/cloudscale/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/controllers/appcat/appcat/10_function_appcat.yaml b/tests/golden/controllers/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/controllers/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/controllers/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/controllers/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/controllers/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/controllers/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/controllers/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/controllers/appcat/appcat/controllers/appcat/30_deployment.yaml b/tests/golden/controllers/appcat/appcat/controllers/appcat/30_deployment.yaml index 84297f215..a7f3c4093 100644 --- a/tests/golden/controllers/appcat/appcat/controllers/appcat/30_deployment.yaml +++ b/tests/golden/controllers/appcat/appcat/controllers/appcat/30_deployment.yaml @@ -23,7 +23,7 @@ spec: env: - name: PLANS_NAMESPACE value: syn-appcat - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/defaults/appcat/appcat/10_function_appcat.yaml b/tests/golden/defaults/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/defaults/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/defaults/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/defaults/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/defaults/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/defaults/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/defaults/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/defaults/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml b/tests/golden/defaults/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml index cd9c7dd7d..e5e7208fd 100644 --- a/tests/golden/defaults/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml +++ b/tests/golden/defaults/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml @@ -36,7 +36,7 @@ spec: value: "false" - name: APPCAT_SLI_VSHNMARIADB value: "false" - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/10_function_appcat.yaml b/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml b/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml index cd9c7dd7d..e5e7208fd 100644 --- a/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml +++ b/tests/golden/exoscale-metrics-collector-cloud/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml @@ -36,7 +36,7 @@ spec: value: "false" - name: APPCAT_SLI_VSHNMARIADB value: "false" - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/10_function_appcat.yaml b/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml b/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml index cd9c7dd7d..e5e7208fd 100644 --- a/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml +++ b/tests/golden/exoscale-metrics-collector-managed/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml @@ -36,7 +36,7 @@ spec: value: "false" - name: APPCAT_SLI_VSHNMARIADB value: "false" - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/exoscale/appcat/appcat/10_function_appcat.yaml b/tests/golden/exoscale/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/exoscale/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/exoscale/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/exoscale/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/exoscale/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/exoscale/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/exoscale/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/minio/appcat/appcat/10_function_appcat.yaml b/tests/golden/minio/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/minio/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/minio/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/minio/appcat/appcat/21_composition_vshn_minio.yaml b/tests/golden/minio/appcat/appcat/21_composition_vshn_minio.yaml index b1e3662fc..445d51160 100644 --- a/tests/golden/minio/appcat/appcat/21_composition_vshn_minio.yaml +++ b/tests/golden/minio/appcat/appcat/21_composition_vshn_minio.yaml @@ -38,7 +38,7 @@ spec: emailAlertingSmtpFromAddress: myuser@example.com emailAlertingSmtpHost: smtp.eu.mailgun.org:465 emailAlertingSmtpUsername: myuser@example.com - imageTag: v4.94.1 + imageTag: v4.95.0 isOpenshift: 'false' maintenanceSA: helm-based-service-maintenance minioChartRepository: https://charts.min.io diff --git a/tests/golden/minio/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/minio/appcat/appcat/apiserver/30_deployment.yaml index 320f066be..5fac33273 100644 --- a/tests/golden/minio/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/minio/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/minio/appcat/appcat/controllers/appcat/30_deployment.yaml b/tests/golden/minio/appcat/appcat/controllers/appcat/30_deployment.yaml index 84297f215..a7f3c4093 100644 --- a/tests/golden/minio/appcat/appcat/controllers/appcat/30_deployment.yaml +++ b/tests/golden/minio/appcat/appcat/controllers/appcat/30_deployment.yaml @@ -23,7 +23,7 @@ spec: env: - name: PLANS_NAMESPACE value: syn-appcat - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/minio/appcat/appcat/sla_reporter/01_cronjob.yaml b/tests/golden/minio/appcat/appcat/sla_reporter/01_cronjob.yaml index 1d9d4057a..c366623a8 100644 --- a/tests/golden/minio/appcat/appcat/sla_reporter/01_cronjob.yaml +++ b/tests/golden/minio/appcat/appcat/sla_reporter/01_cronjob.yaml @@ -30,7 +30,7 @@ spec: envFrom: - secretRef: name: appcat-sla-reports-creds - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 name: sla-reporter resources: limits: diff --git a/tests/golden/minio/appcat/appcat/sli_exporter/90_minio_Opsgenie.yaml b/tests/golden/minio/appcat/appcat/sli_exporter/90_minio_Opsgenie.yaml index e8da7ddfe..b76850848 100644 --- a/tests/golden/minio/appcat/appcat/sli_exporter/90_minio_Opsgenie.yaml +++ b/tests/golden/minio/appcat/appcat/sli_exporter/90_minio_Opsgenie.yaml @@ -5,13 +5,13 @@ metadata: syn: 'true' syn_component: appcat syn_team: schedar - name: vshn-minio-sla + name: vshn-minio-new-sla namespace: appcat-slos spec: groups: - name: appcat-minio-sla-target rules: - - alert: vshn-minio-sla + - alert: vshn-minio-new-sla expr: rate(appcat_probes_seconds_count{reason!="success", service="minio", ha="false", maintenance="false"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="minio", ha="false", maintenance="false"}[1m]) > 0.75 @@ -24,7 +24,7 @@ spec: syn: 'true' syn_component: appcat syn_team: schedar - - alert: vshn-minio-sla-ha + - alert: vshn-minio-new-sla-ha expr: rate(appcat_probes_seconds_count{reason!="success", service="minio", ha="true"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="minio", ha="true"}[1m]) > 0.75 diff --git a/tests/golden/minio/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml b/tests/golden/minio/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml index c5bb9fede..72194b73d 100644 --- a/tests/golden/minio/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml +++ b/tests/golden/minio/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml @@ -36,7 +36,7 @@ spec: value: "false" - name: APPCAT_SLI_VSHNMARIADB value: "false" - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/openshift/appcat/appcat/10_function_appcat.yaml b/tests/golden/openshift/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/openshift/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/openshift/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/openshift/appcat/appcat/21_composition_vshn_postgres.yaml b/tests/golden/openshift/appcat/appcat/21_composition_vshn_postgres.yaml index 44e59f75b..cd1863695 100644 --- a/tests/golden/openshift/appcat/appcat/21_composition_vshn_postgres.yaml +++ b/tests/golden/openshift/appcat/appcat/21_composition_vshn_postgres.yaml @@ -40,7 +40,7 @@ spec: emailAlertingSmtpHost: smtp.eu.mailgun.org:465 emailAlertingSmtpUsername: myuser@example.com externalDatabaseConnectionsEnabled: 'false' - imageTag: v4.94.1 + imageTag: v4.95.0 initContainers: '{"clusterReconciliationCycle": {"limits": {"cpu": "300m", "memory": "200Mi"}, "requests": {"cpu": "100m", "memory": "100Mi"}}, "pgbouncerAuthFile": {"limits": {"cpu": "300m", "memory": "500Mi"}, "requests": {"cpu": "100m", diff --git a/tests/golden/openshift/appcat/appcat/21_composition_vshn_redis.yaml b/tests/golden/openshift/appcat/appcat/21_composition_vshn_redis.yaml index 96e0eb8cf..8f2f6ce05 100644 --- a/tests/golden/openshift/appcat/appcat/21_composition_vshn_redis.yaml +++ b/tests/golden/openshift/appcat/appcat/21_composition_vshn_redis.yaml @@ -569,7 +569,7 @@ spec: emailAlertingSmtpFromAddress: myuser@example.com emailAlertingSmtpHost: smtp.eu.mailgun.org:465 emailAlertingSmtpUsername: myuser@example.com - imageTag: v4.94.1 + imageTag: v4.95.0 isOpenshift: 'true' maintenanceSA: helm-based-service-maintenance ownerGroup: vshn.appcat.vshn.io diff --git a/tests/golden/openshift/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/openshift/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/openshift/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/openshift/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/openshift/appcat/appcat/sli_exporter/90_VSHNPostgreSQL_Opsgenie.yaml b/tests/golden/openshift/appcat/appcat/sli_exporter/90_VSHNPostgreSQL_Opsgenie.yaml index b6f8cd589..da5a2cdad 100644 --- a/tests/golden/openshift/appcat/appcat/sli_exporter/90_VSHNPostgreSQL_Opsgenie.yaml +++ b/tests/golden/openshift/appcat/appcat/sli_exporter/90_VSHNPostgreSQL_Opsgenie.yaml @@ -5,13 +5,13 @@ metadata: syn: 'true' syn_component: appcat syn_team: schedar - name: vshn-vshnpostgresql-sla + name: vshn-vshnpostgresql-new-sla namespace: appcat-slos spec: groups: - name: appcat-vshnpostgresql-sla-target rules: - - alert: vshn-vshnpostgresql-sla + - alert: vshn-vshnpostgresql-new-sla expr: rate(appcat_probes_seconds_count{reason!="success", service="VSHNPostgreSQL", ha="false", maintenance="false"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="VSHNPostgreSQL", ha="false", maintenance="false"}[1m]) > 0.75 @@ -24,7 +24,7 @@ spec: syn: 'true' syn_component: appcat syn_team: schedar - - alert: vshn-vshnpostgresql-sla-ha + - alert: vshn-vshnpostgresql-new-sla-ha expr: rate(appcat_probes_seconds_count{reason!="success", service="VSHNPostgreSQL", ha="true"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="VSHNPostgreSQL", ha="true"}[1m]) > 0.75 diff --git a/tests/golden/openshift/appcat/appcat/sli_exporter/90_VSHNRedis_Opsgenie.yaml b/tests/golden/openshift/appcat/appcat/sli_exporter/90_VSHNRedis_Opsgenie.yaml index dca58fa2e..1bf021908 100644 --- a/tests/golden/openshift/appcat/appcat/sli_exporter/90_VSHNRedis_Opsgenie.yaml +++ b/tests/golden/openshift/appcat/appcat/sli_exporter/90_VSHNRedis_Opsgenie.yaml @@ -5,13 +5,13 @@ metadata: syn: 'true' syn_component: appcat syn_team: schedar - name: vshn-vshnredis-sla + name: vshn-vshnredis-new-sla namespace: appcat-slos spec: groups: - name: appcat-vshnredis-sla-target rules: - - alert: vshn-vshnredis-sla + - alert: vshn-vshnredis-new-sla expr: rate(appcat_probes_seconds_count{reason!="success", service="VSHNRedis", ha="false", maintenance="false"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="VSHNRedis", ha="false", maintenance="false"}[1m]) > 0.75 @@ -24,7 +24,7 @@ spec: syn: 'true' syn_component: appcat syn_team: schedar - - alert: vshn-vshnredis-sla-ha + - alert: vshn-vshnredis-new-sla-ha expr: rate(appcat_probes_seconds_count{reason!="success", service="VSHNRedis", ha="true"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="VSHNRedis", ha="true"}[1m]) > 0.75 diff --git a/tests/golden/openshift/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml b/tests/golden/openshift/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml index 1b239e8f7..f4c64875b 100644 --- a/tests/golden/openshift/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml +++ b/tests/golden/openshift/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml @@ -36,7 +36,7 @@ spec: value: "false" - name: APPCAT_SLI_VSHNMARIADB value: "false" - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/vshn/appcat/appcat/10_function_appcat.yaml b/tests/golden/vshn/appcat/appcat/10_function_appcat.yaml index ec06aa09e..408a4ec07 100644 --- a/tests/golden/vshn/appcat/appcat/10_function_appcat.yaml +++ b/tests/golden/vshn/appcat/appcat/10_function_appcat.yaml @@ -3,6 +3,6 @@ kind: Function metadata: name: function-appcat spec: - package: ghcr.io/vshn/appcat:v4.94.1-func + package: ghcr.io/vshn/appcat:v4.95.0-func runtimeConfigRef: name: function-appcat diff --git a/tests/golden/vshn/appcat/appcat/21_composition_vshn_keycloak.yaml b/tests/golden/vshn/appcat/appcat/21_composition_vshn_keycloak.yaml index ea69268c0..351b5a3d4 100644 --- a/tests/golden/vshn/appcat/appcat/21_composition_vshn_keycloak.yaml +++ b/tests/golden/vshn/appcat/appcat/21_composition_vshn_keycloak.yaml @@ -38,7 +38,7 @@ spec: emailAlertingSmtpFromAddress: myuser@example.com emailAlertingSmtpHost: smtp.eu.mailgun.org:465 emailAlertingSmtpUsername: myuser@example.com - imageTag: v4.94.1 + imageTag: v4.95.0 ingress_annotations: | nginx.ingress.kubernetes.io/backend-protocol: HTTPS cert-manager.io/cluster-issuer: letsencrypt-staging diff --git a/tests/golden/vshn/appcat/appcat/21_composition_vshn_mariadb.yaml b/tests/golden/vshn/appcat/appcat/21_composition_vshn_mariadb.yaml index 7638ae215..0c4c2f3e9 100644 --- a/tests/golden/vshn/appcat/appcat/21_composition_vshn_mariadb.yaml +++ b/tests/golden/vshn/appcat/appcat/21_composition_vshn_mariadb.yaml @@ -38,7 +38,7 @@ spec: emailAlertingSmtpFromAddress: myuser@example.com emailAlertingSmtpHost: smtp.eu.mailgun.org:465 emailAlertingSmtpUsername: myuser@example.com - imageTag: v4.94.1 + imageTag: v4.95.0 isOpenshift: 'false' maintenanceSA: helm-based-service-maintenance mode: standalone diff --git a/tests/golden/vshn/appcat/appcat/21_composition_vshn_nextcloud.yaml b/tests/golden/vshn/appcat/appcat/21_composition_vshn_nextcloud.yaml index 79f5d4923..a0954cbc6 100644 --- a/tests/golden/vshn/appcat/appcat/21_composition_vshn_nextcloud.yaml +++ b/tests/golden/vshn/appcat/appcat/21_composition_vshn_nextcloud.yaml @@ -38,7 +38,7 @@ spec: emailAlertingSmtpFromAddress: myuser@example.com emailAlertingSmtpHost: smtp.eu.mailgun.org:465 emailAlertingSmtpUsername: myuser@example.com - imageTag: v4.94.1 + imageTag: v4.95.0 ingress_annotations: | cert-manager.io/cluster-issuer: letsencrypt-staging nginx.ingress.kubernetes.io/enable-cors: "true" diff --git a/tests/golden/vshn/appcat/appcat/21_composition_vshn_postgres.yaml b/tests/golden/vshn/appcat/appcat/21_composition_vshn_postgres.yaml index efe4fa1ed..fd5c347fd 100644 --- a/tests/golden/vshn/appcat/appcat/21_composition_vshn_postgres.yaml +++ b/tests/golden/vshn/appcat/appcat/21_composition_vshn_postgres.yaml @@ -40,7 +40,7 @@ spec: emailAlertingSmtpHost: smtp.eu.mailgun.org:465 emailAlertingSmtpUsername: myuser@example.com externalDatabaseConnectionsEnabled: 'true' - imageTag: v4.94.1 + imageTag: v4.95.0 initContainers: '{"clusterReconciliationCycle": {"limits": {"cpu": "300m", "memory": "200Mi"}, "requests": {"cpu": "100m", "memory": "100Mi"}}, "pgbouncerAuthFile": {"limits": {"cpu": "300m", "memory": "500Mi"}, "requests": {"cpu": "100m", diff --git a/tests/golden/vshn/appcat/appcat/21_composition_vshn_redis.yaml b/tests/golden/vshn/appcat/appcat/21_composition_vshn_redis.yaml index 2dc2a024b..09fdfa748 100644 --- a/tests/golden/vshn/appcat/appcat/21_composition_vshn_redis.yaml +++ b/tests/golden/vshn/appcat/appcat/21_composition_vshn_redis.yaml @@ -595,7 +595,7 @@ spec: emailAlertingSmtpFromAddress: myuser@example.com emailAlertingSmtpHost: smtp.eu.mailgun.org:465 emailAlertingSmtpUsername: myuser@example.com - imageTag: v4.94.1 + imageTag: v4.95.0 isOpenshift: 'false' maintenanceSA: helm-based-service-maintenance ownerGroup: vshn.appcat.vshn.io diff --git a/tests/golden/vshn/appcat/appcat/apiserver/30_deployment.yaml b/tests/golden/vshn/appcat/appcat/apiserver/30_deployment.yaml index 1c350d37a..3bf410629 100644 --- a/tests/golden/vshn/appcat/appcat/apiserver/30_deployment.yaml +++ b/tests/golden/vshn/appcat/appcat/apiserver/30_deployment.yaml @@ -29,7 +29,7 @@ spec: - --secure-port=9443 - --tls-cert-file=/apiserver.local.config/certificates/tls.crt - --tls-private-key-file=/apiserver.local.config/certificates/tls.key - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: failureThreshold: 3 httpGet: diff --git a/tests/golden/vshn/appcat/appcat/controllers/appcat/30_deployment.yaml b/tests/golden/vshn/appcat/appcat/controllers/appcat/30_deployment.yaml index 84297f215..a7f3c4093 100644 --- a/tests/golden/vshn/appcat/appcat/controllers/appcat/30_deployment.yaml +++ b/tests/golden/vshn/appcat/appcat/controllers/appcat/30_deployment.yaml @@ -23,7 +23,7 @@ spec: env: - name: PLANS_NAMESPACE value: syn-appcat - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz diff --git a/tests/golden/vshn/appcat/appcat/sla_reporter/01_cronjob.yaml b/tests/golden/vshn/appcat/appcat/sla_reporter/01_cronjob.yaml index c25be0be9..1551f82b7 100644 --- a/tests/golden/vshn/appcat/appcat/sla_reporter/01_cronjob.yaml +++ b/tests/golden/vshn/appcat/appcat/sla_reporter/01_cronjob.yaml @@ -30,7 +30,7 @@ spec: envFrom: - secretRef: name: appcat-sla-reports-creds - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 name: sla-reporter resources: limits: diff --git a/tests/golden/vshn/appcat/appcat/sli_exporter/90_VSHNPostgreSQL_Opsgenie.yaml b/tests/golden/vshn/appcat/appcat/sli_exporter/90_VSHNPostgreSQL_Opsgenie.yaml index b6f8cd589..da5a2cdad 100644 --- a/tests/golden/vshn/appcat/appcat/sli_exporter/90_VSHNPostgreSQL_Opsgenie.yaml +++ b/tests/golden/vshn/appcat/appcat/sli_exporter/90_VSHNPostgreSQL_Opsgenie.yaml @@ -5,13 +5,13 @@ metadata: syn: 'true' syn_component: appcat syn_team: schedar - name: vshn-vshnpostgresql-sla + name: vshn-vshnpostgresql-new-sla namespace: appcat-slos spec: groups: - name: appcat-vshnpostgresql-sla-target rules: - - alert: vshn-vshnpostgresql-sla + - alert: vshn-vshnpostgresql-new-sla expr: rate(appcat_probes_seconds_count{reason!="success", service="VSHNPostgreSQL", ha="false", maintenance="false"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="VSHNPostgreSQL", ha="false", maintenance="false"}[1m]) > 0.75 @@ -24,7 +24,7 @@ spec: syn: 'true' syn_component: appcat syn_team: schedar - - alert: vshn-vshnpostgresql-sla-ha + - alert: vshn-vshnpostgresql-new-sla-ha expr: rate(appcat_probes_seconds_count{reason!="success", service="VSHNPostgreSQL", ha="true"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="VSHNPostgreSQL", ha="true"}[1m]) > 0.75 diff --git a/tests/golden/vshn/appcat/appcat/sli_exporter/90_VSHNRedis_Opsgenie.yaml b/tests/golden/vshn/appcat/appcat/sli_exporter/90_VSHNRedis_Opsgenie.yaml index dca58fa2e..1bf021908 100644 --- a/tests/golden/vshn/appcat/appcat/sli_exporter/90_VSHNRedis_Opsgenie.yaml +++ b/tests/golden/vshn/appcat/appcat/sli_exporter/90_VSHNRedis_Opsgenie.yaml @@ -5,13 +5,13 @@ metadata: syn: 'true' syn_component: appcat syn_team: schedar - name: vshn-vshnredis-sla + name: vshn-vshnredis-new-sla namespace: appcat-slos spec: groups: - name: appcat-vshnredis-sla-target rules: - - alert: vshn-vshnredis-sla + - alert: vshn-vshnredis-new-sla expr: rate(appcat_probes_seconds_count{reason!="success", service="VSHNRedis", ha="false", maintenance="false"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="VSHNRedis", ha="false", maintenance="false"}[1m]) > 0.75 @@ -24,7 +24,7 @@ spec: syn: 'true' syn_component: appcat syn_team: schedar - - alert: vshn-vshnredis-sla-ha + - alert: vshn-vshnredis-new-sla-ha expr: rate(appcat_probes_seconds_count{reason!="success", service="VSHNRedis", ha="true"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="VSHNRedis", ha="true"}[1m]) > 0.75 diff --git a/tests/golden/vshn/appcat/appcat/sli_exporter/90_keycloak_Opsgenie.yaml b/tests/golden/vshn/appcat/appcat/sli_exporter/90_keycloak_Opsgenie.yaml index 67ffcbd22..c1a42d57f 100644 --- a/tests/golden/vshn/appcat/appcat/sli_exporter/90_keycloak_Opsgenie.yaml +++ b/tests/golden/vshn/appcat/appcat/sli_exporter/90_keycloak_Opsgenie.yaml @@ -5,13 +5,13 @@ metadata: syn: 'true' syn_component: appcat syn_team: schedar - name: vshn-keycloak-sla + name: vshn-keycloak-new-sla namespace: appcat-slos spec: groups: - name: appcat-keycloak-sla-target rules: - - alert: vshn-keycloak-sla + - alert: vshn-keycloak-new-sla expr: rate(appcat_probes_seconds_count{reason!="success", service="keycloak", ha="false", maintenance="false"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="keycloak", ha="false", maintenance="false"}[1m]) > 0.75 @@ -24,7 +24,7 @@ spec: syn: 'true' syn_component: appcat syn_team: schedar - - alert: vshn-keycloak-sla-ha + - alert: vshn-keycloak-new-sla-ha expr: rate(appcat_probes_seconds_count{reason!="success", service="keycloak", ha="true"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="keycloak", ha="true"}[1m]) > 0.75 diff --git a/tests/golden/vshn/appcat/appcat/sli_exporter/90_mariadb_Opsgenie.yaml b/tests/golden/vshn/appcat/appcat/sli_exporter/90_mariadb_Opsgenie.yaml index bd630f178..14c4b2907 100644 --- a/tests/golden/vshn/appcat/appcat/sli_exporter/90_mariadb_Opsgenie.yaml +++ b/tests/golden/vshn/appcat/appcat/sli_exporter/90_mariadb_Opsgenie.yaml @@ -5,13 +5,13 @@ metadata: syn: 'true' syn_component: appcat syn_team: schedar - name: vshn-mariadb-sla + name: vshn-mariadb-new-sla namespace: appcat-slos spec: groups: - name: appcat-mariadb-sla-target rules: - - alert: vshn-mariadb-sla + - alert: vshn-mariadb-new-sla expr: rate(appcat_probes_seconds_count{reason!="success", service="mariadb", ha="false", maintenance="false"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="mariadb", ha="false", maintenance="false"}[1m]) > 0.75 @@ -24,7 +24,7 @@ spec: syn: 'true' syn_component: appcat syn_team: schedar - - alert: vshn-mariadb-sla-ha + - alert: vshn-mariadb-new-sla-ha expr: rate(appcat_probes_seconds_count{reason!="success", service="mariadb", ha="true"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="mariadb", ha="true"}[1m]) > 0.75 diff --git a/tests/golden/vshn/appcat/appcat/sli_exporter/90_nextcloud_Opsgenie.yaml b/tests/golden/vshn/appcat/appcat/sli_exporter/90_nextcloud_Opsgenie.yaml index 8f389c9c1..1240a7c8b 100644 --- a/tests/golden/vshn/appcat/appcat/sli_exporter/90_nextcloud_Opsgenie.yaml +++ b/tests/golden/vshn/appcat/appcat/sli_exporter/90_nextcloud_Opsgenie.yaml @@ -5,13 +5,13 @@ metadata: syn: 'true' syn_component: appcat syn_team: schedar - name: vshn-nextcloud-sla + name: vshn-nextcloud-new-sla namespace: appcat-slos spec: groups: - name: appcat-nextcloud-sla-target rules: - - alert: vshn-nextcloud-sla + - alert: vshn-nextcloud-new-sla expr: rate(appcat_probes_seconds_count{reason!="success", service="nextcloud", ha="false", maintenance="false"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="nextcloud", ha="false", maintenance="false"}[1m]) > 0.75 @@ -24,7 +24,7 @@ spec: syn: 'true' syn_component: appcat syn_team: schedar - - alert: vshn-nextcloud-sla-ha + - alert: vshn-nextcloud-new-sla-ha expr: rate(appcat_probes_seconds_count{reason!="success", service="nextcloud", ha="true"}[5m]) > 0.2 and rate(appcat_probes_seconds_count{reason!="success", service="nextcloud", ha="true"}[1m]) > 0.75 diff --git a/tests/golden/vshn/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml b/tests/golden/vshn/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml index ade6c2fa4..33c6848a1 100644 --- a/tests/golden/vshn/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml +++ b/tests/golden/vshn/appcat/appcat/sli_exporter/apps_v1_deployment_appcat-sliexporter-controller-manager.yaml @@ -36,7 +36,7 @@ spec: value: "true" - name: APPCAT_SLI_VSHNMARIADB value: "true" - image: ghcr.io/vshn/appcat:v4.94.1 + image: ghcr.io/vshn/appcat:v4.95.0 livenessProbe: httpGet: path: /healthz