File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Logs will be scraped from all pods in the Kubernetes cluster.
22
22
23
23
``` bash
24
24
helm repo add coder-observability https://helm.coder.com/observability
25
- helm upgrade --install coder-observability coder-observability/coder-observability --version 0.3.5 --namespace coder-observability --create-namespace
25
+ helm upgrade --install coder-observability coder-observability/coder-observability --version 0.4.0 --namespace coder-observability --create-namespace
26
26
```
27
27
28
28
## Requirements
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : coder-observability
3
3
description : Gain insights into your Coder deployment
4
4
type : application
5
- version : 0.3.5
5
+ version : 0.4.0
6
6
dependencies :
7
7
- name : pyroscope
8
8
condition : pyroscope.enabled
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ set -euo pipefail
9
9
10
10
remote_url=$( git remote get-url origin)
11
11
# Newest tag by semantic version (may include prerelease like -rc/-beta/-alpha)
12
- current_version=" $( git tag -l | sort --version- sort | tail -n1) "
12
+ current_version=" $( git tag --list -- sort=-creatordate | head -n1) "
13
13
# Newest stable version tag (strict X.Y.Z; excludes prereleases)
14
14
stable_version=" $( git tag -l | sort --version-sort | grep -E ' ^(v)?[0-9]+\.[0-9]+\.[0-9]+$' | tail -n1) "
15
15
You can’t perform that action at this time.
0 commit comments