diff --git a/startos/install/versions/index.ts b/startos/install/versions/index.ts index a03fb77..c260575 100644 --- a/startos/install/versions/index.ts +++ b/startos/install/versions/index.ts @@ -1,2 +1,4 @@ -export { v0_1 as current } from './v0.1' -export const other = [] +import { v0_1 } from './v0.1' + +export { v0_2 as current } from './v0.2' +export const other = [v0_1] diff --git a/startos/install/versions/v0.2.ts b/startos/install/versions/v0.2.ts new file mode 100644 index 0000000..0533125 --- /dev/null +++ b/startos/install/versions/v0.2.ts @@ -0,0 +1,10 @@ +import { VersionInfo } from '@start9labs/start-sdk' + +export const v0_2 = VersionInfo.of({ + version: '0.2:1.0', + releaseNotes: 'Update grafana to 12.2.1 and prometheus to v3.7.1.', + migrations: { + up: async ({ effects }) => {}, + down: async ({ effects }) => {}, + }, +}) diff --git a/startos/manifest.ts b/startos/manifest.ts index ad6c568..c3f0e13 100644 --- a/startos/manifest.ts +++ b/startos/manifest.ts @@ -26,13 +26,13 @@ export const manifest = setupManifest({ grafana: { arch: architectures, source: { - dockerTag: 'grafana/grafana:12.2.0', + dockerTag: 'grafana/grafana:12.2.1', }, } as SDKImageInputSpec, prometheus: { arch: architectures, source: { - dockerTag: 'prom/prometheus:v3.5.0', + dockerTag: 'prom/prometheus:v3.7.1', }, } as SDKImageInputSpec, 'json-exporter': {