Skip to content
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

[K8s Topo] Move CRD to v1beta1 #6074

Merged
merged 1 commit into from
Apr 16, 2020
Merged
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: 1 addition & 1 deletion go/vt/topo/k8stopo/VitessTopoNodes-crd.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: apiextensions.k8s.io/v1
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: vitesstoponodes.topo.vitess.io
Expand Down
7 changes: 7 additions & 0 deletions helm/vitess/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2.0.1-0 - 2020-04-16

The charts now officially support Kubernetes 1.11 and newer.

### Changes
* The VitessTopoNode CRD is now created using the `apiextensions.k8s.io/v1beta1` API.

## 2.0.0-0 - 2020-04-03

Vitess now supports using the Kubernetes API as a topology provider. This means that it is now easier than ever to run Vitess on Kubernetes!
Expand Down
2 changes: 1 addition & 1 deletion helm/vitess/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: vitess
version: 2.0.0-0
version: 2.0.1-0
description: Single-Chart Vitess Cluster
keywords:
- vitess
Expand Down
2 changes: 1 addition & 1 deletion helm/vitess/crds/VitessTopoNodes-crd.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is a copy of the crd def from: vitess/go/vt/topo/k8stopo/VitessTopoNodes-crd.yaml
# It is not symlinked so that the helm charts do not have references to outside files
apiVersion: apiextensions.k8s.io/v1
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: vitesstoponodes.topo.vitess.io
Expand Down