Skip to content

Commit c477a63

Browse files
committed
Merge remote-tracking branch 'origin/release-2.8' into final-release
Signed-off-by: Rameez Sajwani <rameezwazirali@hotmail.com>
2 parents ea042c0 + 64da45e commit c477a63

13 files changed

Lines changed: 63 additions & 45 deletions

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ Vitess Operator Version | Recommended Vitess Versions | Recommended Kubernetes V
2424
`v2.5.*` | `v12.0.*` | `v1.17.*`, `v1.18.*`, or `v1.19.*`
2525
`v2.6.*` | `v12.0.*`, or `v13.0.*` | `v1.20.*`, `v1.21.*`, or `v1.22.*`
2626
`v2.7.*` | `v14.0.*` | `v1.20.*`, `v1.21.*`, or `v1.22.*`
27-
`latest` | `latest` | `v1.20.*`, `v1.21.*`, or `v1.22.*`
27+
`v2.8.*` | `v15.0.*` | `v1.22.*`, `v1.23.*`, or `v1.24.*`
28+
`latest` | `latest` | `v1.22.*`, `v1.23.*`, or `v1.24.*`
2829

2930
If for some reason you must attempt to use versions outside the recommend
3031
window, we still welcome bug reports since a workaround might be possible.

docs/release-process.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,13 @@ that's in use.
6767
## Cut Release
6868

6969
After the PR from the prepare phase is merged, make sure your local git dir is
70-
up-to-date with HEAD, that you're standing on your release branch, and then create and push a new tag. For example:
70+
up-to-date with HEAD, and then create a temporary release branch on top of the long-term release branch, for instance:
71+
72+
```
73+
git checkout -b new-release-2.7.5 origin/release-2.7
74+
```
75+
76+
And then, create the tag using the following command, note that you will need to replace the placeholder strings:
7177

7278
```
7379
OLD_VITESS_VERSION="13.0.0" NEW_VITESS_VERSION="14.0.3" NEW_OPERATOR_VERSION="2.7.4" NEXT_OPERATOR_VERSION="2.7.5" ./tools/release/do_release.sh
@@ -81,4 +87,4 @@ hould automatically detect the new tag and begin building a new image.
8187
Create a [new release](https://github.com/planetscale/vitess-operator/releases/new)
8288
in GitHub to describe the updates users should expect.
8389

84-
Create a new Pull Request with the two commits that the `do_release.sh` script created. Merge it onto the release branch.
90+
Follow the instructions prompted by the `do_release.sh` script. You will need to push the tag and push the temporary branch to finally create a Pull Request. The Pull Request should be merged onto the release branch.

pkg/apis/planetscale/v2/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const (
102102
// DefaultMysqlPortName is the name for the MySQL port.
103103
DefaultMysqlPortName = "mysql"
104104

105-
defaultVitessLiteImage = "vitess/lite:v14.0.0"
105+
defaultVitessLiteImage = "vitess/lite:v15.0.0-rc1"
106106
)
107107

108108
// DefaultImages are a set of images to use when the CRD doesn't specify.

test/endtoend/operator/101_initial_cluster_backup.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ spec:
1515
path: /backup
1616
type: Directory
1717
images:
18-
vtctld: vitess/lite:latest
19-
vtgate: vitess/lite:latest
20-
vttablet: vitess/lite:latest
21-
vtbackup: vitess/lite:latest
18+
vtctld: vitess/lite:v15.0.0-rc1
19+
vtgate: vitess/lite:v15.0.0-rc1
20+
vttablet: vitess/lite:v15.0.0-rc1
21+
vtbackup: vitess/lite:v15.0.0-rc1
2222
mysqld:
23-
mysql56Compatible: vitess/lite:latest
23+
mysql56Compatible: vitess/lite:v15.0.0-rc1
2424
mysqldExporter: prom/mysqld-exporter:v0.11.0
2525
cells:
2626
- name: zone1

test/endtoend/operator/101_initial_cluster_vtorc_vtadmin.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ metadata:
88
name: example
99
spec:
1010
images:
11-
vtctld: vitess/lite:latest
12-
vtadmin: vitess/vtadmin:latest
13-
vtgate: vitess/lite:latest
14-
vttablet: vitess/lite:latest
15-
vtbackup: vitess/lite:latest
16-
vtorc: vitess/lite:latest
11+
vtctld: vitess/lite:v15.0.0-rc1
12+
vtadmin: vitess/vtadmin:v15.0.0-rc1
13+
vtgate: vitess/lite:v15.0.0-rc1
14+
vttablet: vitess/lite:v15.0.0-rc1
15+
vtbackup: vitess/lite:v15.0.0-rc1
16+
vtorc: vitess/lite:v15.0.0-rc1
1717
mysqld:
18-
mysql56Compatible: vitess/lite:latest
18+
mysql56Compatible: vitess/lite:v15.0.0-rc1
1919
mysqldExporter: prom/mysqld-exporter:v0.11.0
2020
cells:
2121
- name: zone1

test/endtoend/operator/102_keyspace_teardown.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ spec:
1515
path: /backup
1616
type: Directory
1717
images:
18-
vtctld: vitess/lite:latest
19-
vtgate: vitess/lite:latest
20-
vttablet: vitess/lite:latest
21-
vtbackup: vitess/lite:latest
18+
vtctld: vitess/lite:v15.0.0-rc1
19+
vtgate: vitess/lite:v15.0.0-rc1
20+
vttablet: vitess/lite:v15.0.0-rc1
21+
vtbackup: vitess/lite:v15.0.0-rc1
2222
mysqld:
23-
mysql56Compatible: vitess/lite:latest
23+
mysql56Compatible: vitess/lite:v15.0.0-rc1
2424
mysqldExporter: prom/mysqld-exporter:v0.11.0
2525
cells:
2626
- name: zone1

test/endtoend/operator/201_customer_tablets.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ metadata:
44
name: example
55
spec:
66
images:
7-
vtctld: vitess/lite:latest
8-
vtgate: vitess/lite:latest
9-
vttablet: vitess/lite:latest
10-
vtbackup: vitess/lite:latest
7+
vtctld: vitess/lite:v15.0.0-rc1
8+
vtgate: vitess/lite:v15.0.0-rc1
9+
vttablet: vitess/lite:v15.0.0-rc1
10+
vtbackup: vitess/lite:v15.0.0-rc1
1111
mysqld:
12-
mysql56Compatible: vitess/lite:latest
12+
mysql56Compatible: vitess/lite:v15.0.0-rc1
1313
mysqldExporter: prom/mysqld-exporter:v0.11.0
1414
cells:
1515
- name: zone1

test/endtoend/operator/302_new_shards.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ metadata:
44
name: example
55
spec:
66
images:
7-
vtctld: vitess/lite:latest
8-
vtgate: vitess/lite:latest
9-
vttablet: vitess/lite:latest
10-
vtbackup: vitess/lite:latest
7+
vtctld: vitess/lite:v15.0.0-rc1
8+
vtgate: vitess/lite:v15.0.0-rc1
9+
vttablet: vitess/lite:v15.0.0-rc1
10+
vtbackup: vitess/lite:v15.0.0-rc1
1111
mysqld:
12-
mysql56Compatible: vitess/lite:latest
12+
mysql56Compatible: vitess/lite:v15.0.0-rc1
1313
mysqldExporter: prom/mysqld-exporter:v0.11.0
1414
cells:
1515
- name: zone1

test/endtoend/operator/306_down_shard_0.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ metadata:
44
name: example
55
spec:
66
images:
7-
vtctld: vitess/lite:latest
8-
vtgate: vitess/lite:latest
9-
vttablet: vitess/lite:latest
10-
vtbackup: vitess/lite:latest
7+
vtctld: vitess/lite:v15.0.0-rc1
8+
vtgate: vitess/lite:v15.0.0-rc1
9+
vttablet: vitess/lite:v15.0.0-rc1
10+
vtbackup: vitess/lite:v15.0.0-rc1
1111
mysqld:
12-
mysql56Compatible: vitess/lite:latest
12+
mysql56Compatible: vitess/lite:v15.0.0-rc1
1313
mysqldExporter: prom/mysqld-exporter:v0.11.0
1414
cells:
1515
- name: zone1

test/endtoend/operator/cluster_upgrade.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ metadata:
88
name: example
99
spec:
1010
images:
11-
vtctld: vitess/lite:latest
12-
vtgate: vitess/lite:latest
13-
vttablet: vitess/lite:latest
14-
vtbackup: vitess/lite:latest
11+
vtctld: vitess/lite:v15.0.0-rc1
12+
vtgate: vitess/lite:v15.0.0-rc1
13+
vttablet: vitess/lite:v15.0.0-rc1
14+
vtbackup: vitess/lite:v15.0.0-rc1
1515
mysqld:
16-
mysql56Compatible: vitess/lite:latest
16+
mysql56Compatible: vitess/lite:v15.0.0-rc1
1717
mysqldExporter: prom/mysqld-exporter:v0.11.0
1818
cells:
1919
- name: zone1

0 commit comments

Comments
 (0)