Skip to content

Commit 3ec1fb4

Browse files
Merge pull request #56 from CircleCI-Public/cs/prepare-0.1.0-alpha.4
Prepare 0.1.0-alpha.4 release
2 parents b3fa85e + 8b06dd9 commit 3ec1fb4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
- run:
183183
name: Install MicroK8s and Helm
184184
command: |
185-
sudo apt-get update && sudo apt install snapd -y
185+
sudo apt-get update && sudo apt install snapd=2.63+22.04ubuntu0.1 -y
186186
sudo snap install microk8s --classic --channel=1.32
187187
sudo snap install helm --classic
188188
sudo microk8s enable dns

Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: server-monitoring-stack
33
description: A reference Helm chart for setting up a monitoring stack for CircleCI server
4-
version: 0.1.0-alpha.3
4+
version: 0.1.0-alpha.4
55
dependencies:
66
- name: prometheus-operator-crds
77
version: 19.0.0

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This repository is currently under active development and is not yet a supported
1616

1717
A reference Helm chart for setting up a monitoring stack for CircleCI server
1818

19-
![Version: 0.1.0-alpha.3](https://img.shields.io/badge/Version-0.1.0--alpha.3-informational?style=flat-square)
19+
![Version: 0.1.0-alpha.4](https://img.shields.io/badge/Version-0.1.0--alpha.4-informational?style=flat-square)
2020

2121
## Installing the Monitoring Stack
2222

@@ -54,7 +54,7 @@ $ helm repo update
5454
Before installing the full chart, you must first install the dependency subcharts, including the Prometheus Custom Resource Definitions (CRDs) and the Grafana operator chart. This assumes you are installing it in the same namespace as your CircleCI server installation:
5555

5656
```bash
57-
$ helm install server-monitoring-stack server-monitoring-stack/server-monitoring-stack --set global.enabled=false --set prometheusOperator.installCRDs=true --version 0.1.0-alpha.3 -n <your-server-namespace>
57+
$ helm install server-monitoring-stack server-monitoring-stack/server-monitoring-stack --set global.enabled=false --set prometheusOperator.installCRDs=true --version 0.1.0-alpha.4 -n <your-server-namespace>
5858
```
5959
> **_NOTE:_** It's possible to install the monitoring stack in a different namespace than the CircleCI server installation. If you do so, set the `prometheus.serviceMonitor.selectorNamespaces` value with the target namespace.
6060
@@ -63,7 +63,7 @@ $ helm install server-monitoring-stack server-monitoring-stack/server-monitoring
6363
Next, install the Helm chart using the following command:
6464

6565
```bash
66-
$ helm upgrade --install server-monitoring-stack server-monitoring-stack/server-monitoring-stack --reset-values --version 0.1.0-alpha.3 -n <your-server-namespace>
66+
$ helm upgrade --install server-monitoring-stack server-monitoring-stack/server-monitoring-stack --reset-values --version 0.1.0-alpha.4 -n <your-server-namespace>
6767
```
6868

6969
### 5. Verify Prometheus Is Up and Targeting Telegraf
@@ -170,7 +170,7 @@ Dashboards are provisioned directly from CRDs, which means any manual edits will
170170
| grafana.datasource.jsonData.timeInterval | string | `"5s"` | The time interval for Grafana to poll Prometheus. Specifies the frequency of data requests. |
171171
| grafana.enabled | string | `"-"` | |
172172
| grafana.image.repository | string | `"grafana/grafana"` | Image repository for Grafana. |
173-
| grafana.image.tag | string | `"12.0.0"` | Tag for the Grafana image. |
173+
| grafana.image.tag | string | `"12.0.0-security-01"` | Tag for the Grafana image. |
174174
| grafana.ingress.className | string | `""` | Specifies the class of the Ingress controller. Required if the Kubernetes cluster includes multiple Ingress controllers. |
175175
| grafana.ingress.enabled | bool | `false` | Enable to create an Ingress resource for Grafana. Disabled by default. |
176176
| grafana.ingress.host | string | `""` | Hostname to use for the Ingress. Must be set if Ingress is enabled. |

values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ grafana:
9494
# -- Image repository for Grafana.
9595
repository: grafana/grafana
9696
# -- Tag for the Grafana image.
97-
tag: 12.0.0
97+
tag: 12.0.0-security-01
9898
credentials:
9999
# -- Name of an existing secret for Grafana credentials. Leave empty to create a new secret.
100100
existingSecretName: ""

0 commit comments

Comments
 (0)