Skip to content

Commit

Permalink
Merge pull request #103 from sighupio/docs/release-v1.13.1
Browse files Browse the repository at this point in the history
Add v1.13.1 release notes and align CI to other release branches
  • Loading branch information
lnovara authored Oct 18, 2022
2 parents 0af11fd + 54f8682 commit 6fd1e0f
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 10 deletions.
16 changes: 15 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ steps:
VALIDATE_KUBERNETES_KUBEVAL: "false"
# We use a lot of copy paste in our code, is intended. So it important to don't use this linter
VALIDATE_JSCPD: "false"
VALIDATE_YAML: "false"
VALIDATE_TERRAFORM_TFLINT: "false"
# hadolint already validated dockerfiles
VALIDATE_DOCKERFILE: "false"
VALIDATE_NATURAL_LANGUAGE: "false"
depends_on:
- clone

Expand Down Expand Up @@ -172,6 +174,9 @@ platform:
os: linux
arch: amd64

node:
runner: internal

trigger:
ref:
include:
Expand Down Expand Up @@ -268,6 +273,9 @@ platform:
os: linux
arch: amd64

node:
runner: internal

trigger:
ref:
include:
Expand Down Expand Up @@ -363,6 +371,9 @@ platform:
os: linux
arch: amd64

node:
runner: internal

trigger:
ref:
include:
Expand Down Expand Up @@ -459,6 +470,9 @@ platform:
os: linux
arch: amd64

node:
runner: internal

trigger:
ref:
include:
Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ specific dependencies please visit the single package's documentation:
| v1.12.1 | | | | | :white_check_mark: | :white_check_mark: | :white_check_mark: | :warning: | |
| v1.12.2 | | | | | :white_check_mark: | :white_check_mark: | :white_check_mark: | :warning: | |
| v1.13.0 | | | | | | :white_check_mark: | :white_check_mark: | :white_check_mark: | :warning: |
| v1.13.1 | | | | | | :white_check_mark: | :white_check_mark: | :white_check_mark: | :warning: |

- :white_check_mark: Compatible
- :warning: Has issues
Expand Down Expand Up @@ -125,19 +126,19 @@ and Grafana using the following `Furyfile.yml` :
```yaml
bases:
- name: monitoring/prometheus-operator
version: v1.12.3
version: v1.13.1
- name: monitoring/prometheus-operated
version: v1.12.3
version: v1.13.1
- name: monitoring/alertmanager-operated
version: v1.12.3
version: v1.13.1
- name: monitoring/node-exporter
version: v1.12.3
version: v1.13.1
- name: monitoring/kube-state-metrics
version: v1.12.3
version: v1.13.1
- name: monitoring/grafana
version: v1.12.3
version: v1.13.1
- name: monitoring/goldpinger
version: v1.12.3
version: v1.13.1
```
and execute
Expand Down
16 changes: 16 additions & 0 deletions docs/releases/v1.13.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Monitoring Core Module version v1.13.1

This patch includes hotfixes in `alertmanager-operated` alert template and alerts annotations, namely the renaming from `annotations.message` to `annotations.description`.

## Upgrade path

To upgrade this core module from `v1.13.0` to `v1.13.1`:

1. Download the new module version
2. Build and apply the `kustomize` project:

```bash
kustomize build katalog/alertmanager-operated | kubectl apply -f -
kustomize build katalog/prometheus-operated | kubectl apply -f -
kustomize build katalog/kubeadm-sm | kubectl apply -f - # if needed
```
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ config:
bucket: "bucket-name"
endpoint: "s3.eu-west-5.amazonaws.com"
#encrypt_sse: true
access_key: "AKIAIOSFODNN7EXAMPLE"
secret_key: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"
access_key: "EXAMPLE_ACCESS_KEY"
secret_key: "EXAMPLE_SECRET_KEY"

0 comments on commit 6fd1e0f

Please sign in to comment.