Skip to content

[Merged by Bors] - Release 0.6.0 #278

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.6.0] - 2022-09-08

### Changed

- BREAKING: TrinoClusters must specify a `catalogLabelSelector`. Previously all TrinoCatalogs within the same namespace where used when `catalogLabelSelector` was not specified, which is unwanted behaviour ([#277]).
- BREAKING: TrinoClusters must specify a `catalogLabelSelector`. Previously all TrinoCatalogs within the same namespace where used when `catalogLabelSelector` was not specified, which is unwanted behavior ([#277]).

[#277]: https://github.com/stackabletech/trino-operator/pull/277

Expand Down
4 changes: 2 additions & 2 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/trino-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: trino-operator
version: "0.6.0-nightly"
appVersion: "0.6.0-nightly"
version: "0.6.0"
appVersion: "0.6.0"
description: The Stackable Operator for Trino
home: https://github.com/stackabletech/trino-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 @@ -236,4 +236,4 @@ metadata:
labels:
app.kubernetes.io/name: trino-operator
app.kubernetes.io/instance: trino-operator
app.kubernetes.io/version: "0.6.0-nightly"
app.kubernetes.io/version: "0.6.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: trino-operator
app.kubernetes.io/instance: trino-operator
app.kubernetes.io/version: "0.6.0-nightly"
app.kubernetes.io/version: "0.6.0"
spec:
replicas: 1
strategy:
Expand All @@ -26,7 +26,7 @@ spec:
containers:
- name: trino-operator
securityContext: {}
image: "docker.stackable.tech/stackable/trino-operator:0.6.0-nightly"
image: "docker.stackable.tech/stackable/trino-operator:0.6.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: trino-operator
app.kubernetes.io/instance: trino-operator
app.kubernetes.io/version: "0.6.0-nightly"
app.kubernetes.io/version: "0.6.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: trino-operator
app.kubernetes.io/instance: trino-operator
app.kubernetes.io/version: "0.6.0-nightly"
app.kubernetes.io/version: "0.6.0"
subjects:
- kind: ServiceAccount
name: trino-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: trino
version: "nightly"
version: "0.6"
title: Stackable Operator for Trino
nav:
- modules/getting_started/nav.adoc
- modules/ROOT/nav.adoc
prerelease: true
prerelease: false
6 changes: 3 additions & 3 deletions docs/templating_vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ helm:
repo_name: stackable-dev
repo_url: https://repo.stackable.tech/repository/helm-dev/
versions:
commons: 0.4.0-nightly
secret: 0.6.0-nightly
trino: 0.6.0-nightly
commons: 0.3.0
secret: 0.5.0
trino: 0.6.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-trino-crd"
repository = "https://github.com/stackabletech/trino-operator"
version = "0.6.0-nightly"
version = "0.6.0"

[dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.22.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 @@ -6,7 +6,7 @@ edition = "2021"
license = "OSL-3.0"
name = "stackable-trino-operator"
repository = "https://github.com/stackabletech/trino-operator"
version = "0.6.0-nightly"
version = "0.6.0"

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