Skip to content

Commit 46929dc

Browse files
committed
release 0.9.0
1 parent 22e7d53 commit 46929dc

File tree

10 files changed

+17
-15
lines changed

10 files changed

+17
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.9.0] - 2022-06-30
8+
79
### Added
810

911
- Reconciliation errors are now reported as Kubernetes events ([#241]).

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/helm/opa-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
apiVersion: v2
33
name: opa-operator
4-
version: "0.9.0-nightly"
5-
appVersion: "0.9.0-nightly"
4+
version: "0.9.0"
5+
appVersion: "0.9.0"
66
description: The Stackable Operator for OpenPolicyAgent
77
home: https://github.com/stackabletech/opa-operator
88
maintainers:

deploy/manifests/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ metadata:
1313
labels:
1414
app.kubernetes.io/name: opa-operator
1515
app.kubernetes.io/instance: opa-operator
16-
app.kubernetes.io/version: "0.9.0-nightly"
16+
app.kubernetes.io/version: "0.9.0"

deploy/manifests/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
labels:
77
app.kubernetes.io/name: opa-operator
88
app.kubernetes.io/instance: opa-operator
9-
app.kubernetes.io/version: "0.9.0-nightly"
9+
app.kubernetes.io/version: "0.9.0"
1010
spec:
1111
replicas: 1
1212
strategy:
@@ -26,7 +26,7 @@ spec:
2626
containers:
2727
- name: opa-operator
2828
securityContext: {}
29-
image: "docker.stackable.tech/stackable/opa-operator:0.9.0-nightly"
29+
image: "docker.stackable.tech/stackable/opa-operator:0.9.0"
3030
imagePullPolicy: IfNotPresent
3131
resources: {}
3232
volumeMounts:

deploy/manifests/serviceaccount.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
labels:
77
app.kubernetes.io/name: opa-operator
88
app.kubernetes.io/instance: opa-operator
9-
app.kubernetes.io/version: "0.9.0-nightly"
9+
app.kubernetes.io/version: "0.9.0"
1010
---
1111
apiVersion: rbac.authorization.k8s.io/v1
1212
# This cluster role binding allows anyone in the "manager" group to read secrets in any namespace.
@@ -16,7 +16,7 @@ metadata:
1616
labels:
1717
app.kubernetes.io/name: opa-operator
1818
app.kubernetes.io/instance: opa-operator
19-
app.kubernetes.io/version: "0.9.0-nightly"
19+
app.kubernetes.io/version: "0.9.0"
2020
subjects:
2121
- kind: ServiceAccount
2222
name: opa-operator-serviceaccount

docs/antora.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: opa
2-
version: nightly
2+
version: "0.9"
33
title: Stackable Operator for OPA
44
nav:
55
- modules/ROOT/nav.adoc
6-
prerelease: true
6+
prerelease: false

rust/bundle-builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "OSL-3.0"
66
name = "stackable-opa-bundle-builder"
77
repository = "https://github.com/stackabletech/opa-operator"
8-
version = "0.9.0-nightly"
8+
version = "0.9.0"
99

1010
[dependencies]
1111
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.15.0" }

rust/crd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "OSL-3.0"
66
name = "stackable-opa-crd"
77
repository = "https://github.com/stackabletech/opa-operator"
8-
version = "0.9.0-nightly"
8+
version = "0.9.0"
99

1010
[dependencies]
1111
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.15.0" }

rust/operator-binary/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "OSL-3.0"
77
name = "stackable-opa-operator"
88
repository = "https://github.com/stackabletech/opa-operator"
9-
version = "0.9.0-nightly"
9+
version = "0.9.0"
1010

1111
[dependencies]
1212
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.15.0" }

0 commit comments

Comments
 (0)