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

🌱 Add release-1.4 related changes #949

Merged
merged 1 commit into from Apr 28, 2023
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -483,12 +483,12 @@ delete-examples:
## Release
## --------------------------------------

## latest git tag for the commit, e.g., v1.3.0
## latest git tag for the commit, e.g., v1.4.0
RELEASE_TAG ?= $(shell git describe --abbrev=0 2>/dev/null)
ifneq (,$(findstring -,$(RELEASE_TAG)))
PRE_RELEASE=true
endif
# the previous release tag, e.g., v1.3.0, excluding pre-release tags
# the previous release tag, e.g., v1.4.0, excluding pre-release tags
PREVIOUS_TAG ?= $(shell git tag -l | grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$$" | sort -V | grep -B1 $(RELEASE_TAG) | head -n 1 2>/dev/null)
RELEASE_DIR := out
RELEASE_NOTES_DIR := releasenotes
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ cluster on top of bare metal infrastructure using Metal3.
| v1beta1 | v1beta1 | v1.1.X | v1.1.X       |
| v1beta1 | v1beta1 | v1.2.X | v1.2.X       |
| v1beta1 | v1beta1 | v1.3.X | v1.3.X       |
| v1beta1 | v1beta1 | v1.4.X | v1.4.X       |

## Deploying the metal3 provider

Expand Down Expand Up @@ -53,7 +54,7 @@ provider:
You can also specify the provider version by appending a version tag to the provider name as follows:

```shell
clusterctl init --infrastructure metal3:v1.3.0
clusterctl init --infrastructure metal3:v1.4.0
```

1. Deploy Baremetal Operator manifests and CRDs. You need to install cert-manager for Baremetal Operator,
Expand Down Expand Up @@ -133,6 +134,11 @@ Or use parallel prefix `parallel-` for faster tests. Note that these tests run i
- **/parallel-test-ubuntu-e2e-feature-main** runs e2e feature tests in parallel with CAPM3 API version v1beta1 and branch main on Ubuntu
- **/parallel-test-centos-e2e-feature-main** runs e2e feature tests in parallel with CAPM3 API version v1beta1 and branch main on CentOS

Release-1.4 branch:

- **/test-ubuntu-e2e-feature-release-1-4** runs e2e feature tests with CAPM3 API version v1beta1 and branch release-1.4 on Ubuntu
- **/test-centos-e2e-feature-release-1-4** runs e2e feature tests with CAPM3 API version v1beta1 and branch release-1.4 on CentOS

Release-1.3 branch:

- **/test-ubuntu-e2e-feature-release-1-3** runs e2e feature tests with CAPM3 API version v1beta1 and branch release-1.3 on Ubuntu
Expand Down