Skip to content

Commit e1af82b

Browse files
committed
Release 0.4.0 (#132)
## Description This is already required by the newly released operator-rs 0.20.0.
1 parent 93e6de0 commit e1af82b

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
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.4.0] - 2022-05-18
8+
79
### Added
810

911
- Pods that consume Node-scoped `k8sSearch` secrets will now only be scheduled to Nodes that have the secret provisioned ([#125]).

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
5-
appVersion: "0.3.0"
4+
version: 0.4.0
5+
appVersion: "0.4.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"
10+
app.kubernetes.io/version: "0.4.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"
9+
app.kubernetes.io/version: "0.4.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"
28+
image: "docker.stackable.tech/stackable/secret-operator:0.4.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"
9+
app.kubernetes.io/version: "0.4.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"
19+
app.kubernetes.io/version: "0.4.0"
2020
subjects:
2121
- kind: ServiceAccount
2222
name: secret-operator-serviceaccount

docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: secret-operator
3-
version: master
3+
version: 0.4.0
44
title: Stackable Secret Operator
55
nav:
66
- modules/ROOT/nav.adoc

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 <info@stackable.de>"]
44
description = "Stackable Operator for managing credentials"
55
license = "OSL-3.0"
6-
version = "0.3.0"
6+
version = "0.4.0"
77
edition = "2021"
88
repository = "https://github.com/stackabletech/secret-operator"
99

0 commit comments

Comments
 (0)