Skip to content

Commit 3d439fa

Browse files
authored
Merge pull request #1 from remcoros/chore/0.2
update Grafana to 12.2.1 and Prometheus to 3.7.1
2 parents 7f60e08 + 41f9f3a commit 3d439fa

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

startos/install/versions/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
export { v0_1 as current } from './v0.1'
2-
export const other = []
1+
import { v0_1 } from './v0.1'
2+
3+
export { v0_2 as current } from './v0.2'
4+
export const other = [v0_1]

startos/install/versions/v0.2.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { VersionInfo } from '@start9labs/start-sdk'
2+
3+
export const v0_2 = VersionInfo.of({
4+
version: '0.2:1.0',
5+
releaseNotes: 'Update grafana to 12.2.1 and prometheus to v3.7.1.',
6+
migrations: {
7+
up: async ({ effects }) => {},
8+
down: async ({ effects }) => {},
9+
},
10+
})

startos/manifest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ export const manifest = setupManifest({
2626
grafana: {
2727
arch: architectures,
2828
source: {
29-
dockerTag: 'grafana/grafana:12.2.0',
29+
dockerTag: 'grafana/grafana:12.2.1',
3030
},
3131
} as SDKImageInputSpec,
3232
prometheus: {
3333
arch: architectures,
3434
source: {
35-
dockerTag: 'prom/prometheus:v3.5.0',
35+
dockerTag: 'prom/prometheus:v3.7.1',
3636
},
3737
} as SDKImageInputSpec,
3838
'json-exporter': {

0 commit comments

Comments
 (0)