Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.5.0] - 2022-09-06

### Changed

- Include chart name when installing with a custom release name ([#205])
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions deploy/helm/hdfs-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: hdfs-operator
version: "0.5.0-nightly"
appVersion: "0.5.0-nightly"
version: "0.5.0"
appVersion: "0.5.0"
description: The Stackable Operator for Apache HDFS
home: https://github.com/stackabletech/hdfs-operator
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion deploy/manifests/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,4 @@ metadata:
labels:
app.kubernetes.io/name: hdfs-operator
app.kubernetes.io/instance: hdfs-operator
app.kubernetes.io/version: "0.5.0-nightly"
app.kubernetes.io/version: "0.5.0"
4 changes: 2 additions & 2 deletions deploy/manifests/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
labels:
app.kubernetes.io/name: hdfs-operator
app.kubernetes.io/instance: hdfs-operator
app.kubernetes.io/version: "0.5.0-nightly"
app.kubernetes.io/version: "0.5.0"
spec:
replicas: 1
strategy:
Expand All @@ -26,7 +26,7 @@ spec:
containers:
- name: hdfs-operator
securityContext: {}
image: "docker.stackable.tech/stackable/hdfs-operator:0.5.0-nightly"
image: "docker.stackable.tech/stackable/hdfs-operator:0.5.0"
imagePullPolicy: IfNotPresent
resources: {}
volumeMounts:
Expand Down
4 changes: 2 additions & 2 deletions deploy/manifests/serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
labels:
app.kubernetes.io/name: hdfs-operator
app.kubernetes.io/instance: hdfs-operator
app.kubernetes.io/version: "0.5.0-nightly"
app.kubernetes.io/version: "0.5.0"
---
apiVersion: rbac.authorization.k8s.io/v1
# This cluster role binding allows anyone in the "manager" group to read secrets in any namespace.
Expand All @@ -16,7 +16,7 @@ metadata:
labels:
app.kubernetes.io/name: hdfs-operator
app.kubernetes.io/instance: hdfs-operator
app.kubernetes.io/version: "0.5.0-nightly"
app.kubernetes.io/version: "0.5.0"
subjects:
- kind: ServiceAccount
name: hdfs-operator-serviceaccount
Expand Down
4 changes: 2 additions & 2 deletions docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: hdfs
version: "nightly"
version: "0.5"
title: Stackable Operator for Apache HDFS
nav:
- modules/getting_started/nav.adoc
- modules/ROOT/nav.adoc
prerelease: true
prerelease: false
8 changes: 4 additions & 4 deletions docs/templating_vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ helm:
repo_name: stackable-dev
repo_url: https://repo.stackable.tech/repository/helm-dev/
versions:
commons: 0.3.0-nightly
secret: 0.6.0-nightly
zookeeper: 0.11.0-nightly
hdfs: 0.5.0-nightly
commons: 0.3.0
secret: 0.5.0
zookeeper: 0.11.0
hdfs: 0.5.0
2 changes: 1 addition & 1 deletion rust/crd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "OSL-3.0"
name = "stackable-hdfs-crd"
repository = "https://github.com/stackabletech/hdfs-operator"
version = "0.5.0-nightly"
version = "0.5.0"

[dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.24.0" }
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "OSL-3.0"
name = "stackable-hdfs-operator-binary"
repository = "https://github.com/stackabletech/hdfs-operator"
version = "0.5.0-nightly"
version = "0.5.0"
build = "build.rs"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rust/operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "OSL-3.0"
name = "stackable-hdfs-operator"
repository = "https://github.com/stackabletech/hdfs-operator"
version = "0.5.0-nightly"
version = "0.5.0"

[dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.24.0" }
Expand Down