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.3.0] - 2022-02-14

### Added

- Monitoring scraping label `prometheus.io/scrape: true` ([#104]).
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.3.0-nightly
appVersion: "0.3.0-nightly"
version: 0.3.0
appVersion: "0.3.0"
description: The Stackable Operator for Apache HDFS
home: https://github.com/stackabletech/hdfs-operator
maintainers:
Expand Down
4 changes: 2 additions & 2 deletions deploy/manifests/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ kind: ConfigMap
metadata:
name: hdfs-operator-configmap
labels:
helm.sh/chart: hdfs-operator-0.3.0-nightly
helm.sh/chart: hdfs-operator-0.3.0
app.kubernetes.io/name: hdfs-operator
app.kubernetes.io/instance: hdfs-operator
app.kubernetes.io/version: "0.3.0-nightly"
app.kubernetes.io/version: "0.3.0"
app.kubernetes.io/managed-by: Helm
6 changes: 3 additions & 3 deletions deploy/manifests/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ kind: Deployment
metadata:
name: hdfs-operator-deployment
labels:
helm.sh/chart: hdfs-operator-0.3.0-nightly
helm.sh/chart: hdfs-operator-0.3.0
app.kubernetes.io/name: hdfs-operator
app.kubernetes.io/instance: hdfs-operator
app.kubernetes.io/version: "0.3.0-nightly"
app.kubernetes.io/version: "0.3.0"
app.kubernetes.io/managed-by: Helm
spec:
replicas: 1
Expand All @@ -31,7 +31,7 @@ spec:
- name: hdfs-operator
securityContext:
{}
image: "docker.stackable.tech/stackable/hdfs-operator:0.3.0-nightly"
image: "docker.stackable.tech/stackable/hdfs-operator:0.3.0"
imagePullPolicy: IfNotPresent
resources:
{}
Expand Down
8 changes: 4 additions & 4 deletions deploy/manifests/serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ kind: ServiceAccount
metadata:
name: hdfs-operator-serviceaccount
labels:
helm.sh/chart: hdfs-operator-0.3.0-nightly
helm.sh/chart: hdfs-operator-0.3.0
app.kubernetes.io/name: hdfs-operator
app.kubernetes.io/instance: hdfs-operator
app.kubernetes.io/version: "0.3.0-nightly"
app.kubernetes.io/version: "0.3.0"
app.kubernetes.io/managed-by: Helm
---
# Source: hdfs-operator/templates/serviceaccount.yaml
Expand All @@ -18,10 +18,10 @@ kind: ClusterRoleBinding
metadata:
name: hdfs-operator-clusterrolebinding
labels:
helm.sh/chart: hdfs-operator-0.3.0-nightly
helm.sh/chart: hdfs-operator-0.3.0
app.kubernetes.io/name: hdfs-operator
app.kubernetes.io/instance: hdfs-operator
app.kubernetes.io/version: "0.3.0-nightly"
app.kubernetes.io/version: "0.3.0"
app.kubernetes.io/managed-by: Helm
subjects:
- kind: ServiceAccount
Expand Down
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.3.0-nightly"
version = "0.3.0"

[dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.10.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.3.0-nightly"
version = "0.3.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.3.0-nightly"
version = "0.3.0"

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