Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

Commit f5d7b71

Browse files
release 0.12.0
1 parent 9fd0a62 commit f5d7b71

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

Tiltfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ load('ext://namespace', 'namespace_create')
44

55
set_team('52cc75cc-c4ed-462f-8ea7-a543d398a381')
66

7-
version = '0.12.0-rc1'
7+
version = '0.12.0'
88
config.define_string_list('allowedContexts')
99
config.define_string_list('opniChartValues')
1010
config.define_string('defaultRegistry')

dagger/ci/defaults.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test = true
2626
[images.opensearch.build]
2727
dashboards-version = "2.8.0"
2828
opensearch-version = "2.8.0"
29-
plugin-version = "0.12.0-rc2"
29+
plugin-version = "0.12.0"
3030

3131
[images.opensearch.dashboards]
3232
repo = "docker.io/rancher/opensearch-dashboards"

dagger/config/setup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func RunSetup() {
6161
Build: OpensearchBuildConfig{
6262
DashboardsVersion: "2.8.0",
6363
OpensearchVersion: "2.8.0",
64-
PluginVersion: "0.12.0-rc2",
64+
PluginVersion: "0.12.0",
6565
},
6666
},
6767
},

packages/opni-agent/opni-agent/charts/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ annotations:
44
catalog.rancher.io/namespace: opni-system
55
catalog.rancher.io/release-name: opni-agent
66
apiVersion: v2
7-
appVersion: 0.12.0-rc2
7+
appVersion: 0.12.0
88
dependencies:
99
- condition: kube-prometheus-stack.enabled
1010
name: kube-prometheus-stack
1111
repository: file://./charts/kube-prometheus-stack
1212
description: Opni Agent
1313
name: opni-agent
1414
type: application
15-
version: 0.12.0-rc2
15+
version: 0.12.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
url: local
2-
version: 0.12.0-rc2
2+
version: 0.12.0
33
workingDir: charts

packages/opni/opni/charts/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ annotations:
55
catalog.rancher.io/namespace: opni-cluster-system
66
catalog.rancher.io/release-name: opni
77
apiVersion: v2
8-
appVersion: 0.12.0-rc2
8+
appVersion: 0.12.0
99
dependencies:
1010
- condition: opni-agent.kube-prometheus-stack.enabled
1111
name: kube-prometheus-stack
@@ -31,4 +31,4 @@ maintainers:
3131
name: Dan Bason
3232
name: opni
3333
type: application
34-
version: 0.12.0-rc2
34+
version: 0.12.0

packages/opni/opni/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
url: local
2-
version: 0.12.0-rc2
2+
version: 0.12.0
33
workingDir: charts
44
additionalCharts:
55
- workingDir: charts-crd

pkg/resources/opniopensearch/resources.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func (r *Reconciler) buildOpensearchCluster(
4747
// Set default image version
4848
version := r.instance.Spec.Version
4949
if version == "unversioned" {
50-
version = "0.12.0-rc2"
50+
version = "0.12.0"
5151
}
5252

5353
image := calculateImage(r.instance.Spec.ImageRepo, version, r.instance.Spec.OpensearchVersion)

plugins/aiops/pkg/gateway/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func NewPlugin(ctx context.Context, opts ...PluginOption) *AIOpsPlugin {
9191
Name: "opni",
9292
Namespace: os.Getenv("POD_NAMESPACE"),
9393
},
94-
version: "v0.12.0-rc2",
94+
version: "v0.12.0",
9595
}
9696
options.apply(opts...)
9797

plugins/logging/pkg/gateway/admin_v2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
corev1 "k8s.io/api/core/v1"
2727
)
2828

29-
const defaultOpniVersion = "0.12.0-rc2"
29+
const defaultOpniVersion = "0.12.0"
3030

3131
type ClusterStatus int
3232

0 commit comments

Comments
 (0)