Skip to content

Commit

Permalink
assets,site/content: daily assets regeneration
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 4, 2020
1 parent 6c059bd commit d6eb003
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
8 changes: 4 additions & 4 deletions assets/cert-manager/dashboards/cert-manager.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"links": [ ],
"panels": [
{
"datasource": "prometheus",
"datasource": "$datasource",
"description": "The number of certificates in the ready state.",
"fieldConfig": {
"defaults": {
Expand Down Expand Up @@ -753,7 +753,7 @@
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": "prometheus",
"datasource": "$datasource",
"description": "Percent of the time that the CPU is being throttled. Higher is badderer. ",
"fieldConfig": {
"defaults": {
Expand Down Expand Up @@ -862,7 +862,7 @@
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": "prometheus",
"datasource": "$datasource",
"description": "Memory utilisation and limits.",
"fieldConfig": {
"defaults": {
Expand Down Expand Up @@ -996,7 +996,7 @@
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": "prometheus",
"datasource": "$datasource",
"description": "Network ingress/egress.",
"fieldConfig": {
"defaults": {
Expand Down
9 changes: 5 additions & 4 deletions assets/sealed-secrets/alerts.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
groups:
- name: sealed-secrets
rules:
- alert: SealedSecretsUnsealErrorRateHigh
- alert: SealedSecretsUnsealErrorHigh
annotations:
description: High rate of errors unsealing Sealed Secrets
description: High number of errors during unsealing Sealed Secrets in {{ $labels.namespace
}} namespace.
runbook_url: https://github.com/bitnami-labs/sealed-secrets
summary: Sealed Secrets Unseal Error Rate High
summary: Sealed Secrets Unseal Error High
expr: |
sum(rate(sealed_secrets_controller_unseal_errors_total{}[5m])) > 0
sum by (reason, namespace) (rate(sealed_secrets_controller_unseal_errors_total{}[5m])) > 0
labels:
severity: warning
11 changes: 6 additions & 5 deletions site/content/sealed-secrets/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ Complete list of pregenerated alerts is available [here](https://github.com/moni

### sealed-secrets

##### SealedSecretsUnsealErrorRateHigh
##### SealedSecretsUnsealErrorHigh

{{< code lang="yaml" >}}
alert: SealedSecretsUnsealErrorRateHigh
alert: SealedSecretsUnsealErrorHigh
annotations:
description: High rate of errors unsealing Sealed Secrets
description: High number of errors during unsealing Sealed Secrets in {{ $labels.namespace
}} namespace.
runbook_url: https://github.com/bitnami-labs/sealed-secrets
summary: Sealed Secrets Unseal Error Rate High
summary: Sealed Secrets Unseal Error High
expr: |
sum(rate(sealed_secrets_controller_unseal_errors_total{}[5m])) > 0
sum by (reason, namespace) (rate(sealed_secrets_controller_unseal_errors_total{}[5m])) > 0
labels:
severity: warning
{{< /code >}}
Expand Down

0 comments on commit d6eb003

Please sign in to comment.