Skip to content

Commit 9addbd5

Browse files
committed
Release 0.3.0 (#124)
## Description
1 parent 296e68d commit 9addbd5

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.3.0] - 2022-05-05
8+
79
### Added
810

9-
- Pods that use autoTls volumes are now evicted when their certificates are about to expire ([#114], [commons-#20]).
11+
- Pods that use `autoTls` volumes are now evicted when their certificates are about to expire ([#114], [commons-#20]).
1012

1113
### Changed
1214

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/helm/secret-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: secret-operator
4-
version: 0.3.0-nightly
5-
appVersion: "0.3.0-nightly"
4+
version: 0.3.0
5+
appVersion: "0.3.0"
66
description: The Stackable Operator for Stackable Secret Operator
77
home: https://github.com/stackabletech/secret-operator
88
maintainers:

deploy/manifests/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ metadata:
77
labels:
88
app.kubernetes.io/name: secret-operator
99
app.kubernetes.io/instance: secret-operator
10-
app.kubernetes.io/version: "0.3.0-nightly"
10+
app.kubernetes.io/version: "0.3.0"

deploy/manifests/daemonset.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: secret-operator
88
app.kubernetes.io/instance: secret-operator
9-
app.kubernetes.io/version: "0.3.0-nightly"
9+
app.kubernetes.io/version: "0.3.0"
1010
spec:
1111
selector:
1212
matchLabels:
@@ -25,7 +25,7 @@ spec:
2525
securityContext:
2626
privileged: true
2727
runAsUser: 0
28-
image: "docker.stackable.tech/stackable/secret-operator:0.3.0-nightly"
28+
image: "docker.stackable.tech/stackable/secret-operator:0.3.0"
2929
imagePullPolicy: IfNotPresent
3030
resources: {}
3131
env:

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: secret-operator
88
app.kubernetes.io/instance: secret-operator
9-
app.kubernetes.io/version: "0.3.0-nightly"
9+
app.kubernetes.io/version: "0.3.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: secret-operator
1818
app.kubernetes.io/instance: secret-operator
19-
app.kubernetes.io/version: "0.3.0-nightly"
19+
app.kubernetes.io/version: "0.3.0"
2020
subjects:
2121
- kind: ServiceAccount
2222
name: secret-operator-serviceaccount

rust/operator-binary/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackable-secret-operator"
33
authors = ["Stackable GmbH <[email protected]>"]
44
description = "Stackable Operator for managing credentials"
55
license = "OSL-3.0"
6-
version = "0.3.0-nightly"
6+
version = "0.3.0"
77
edition = "2021"
88
repository = "https://github.com/stackabletech/secret-operator"
99

0 commit comments

Comments
 (0)