Skip to content

Commit

Permalink
Setup 23.3.1 release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pure-jliao committed Mar 28, 2023
1 parent 7c9a873 commit e31f1f3
Show file tree
Hide file tree
Showing 6 changed files with 2,339 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ before_install:
script:
- |
echo "${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USER}" --password-stdin
if [ "${TRAVIS_BRANCH}" == "px-rel-23.3.0" ]; then
export DOCKER_HUB_OPERATOR_TAG=23.3.0-dev
export DOCKER_HUB_OPERATOR_TEST_TAG=23.3.0-dev
if [ "${TRAVIS_BRANCH}" == "px-rel-23.3.1" ]; then
export DOCKER_HUB_OPERATOR_TAG=23.3.1-dev
export DOCKER_HUB_OPERATOR_TEST_TAG=23.3.1-dev
else
export DOCKER_HUB_OPERATOR_TAG=`git rev-parse --short HEAD`
export DOCKER_HUB_OPERATOR_TEST_TAG=`git rev-parse --short HEAD`
Expand All @@ -21,7 +21,7 @@ script:
if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
make deploy;
make integration-test-deploy;
if [ "${TRAVIS_BRANCH}" == "px-rel-23.3.0" ]; then
if [ "${TRAVIS_BRANCH}" == "px-rel-23.3.1" ]; then
make bundle catalog
fi
fi
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ifndef DOCKER_HUB_REGISTRY_IMG
$(warning DOCKER_HUB_REGISTRY_IMG not defined, using '$(DOCKER_HUB_REGISTRY_IMG)' instead)
endif
ifndef BASE_REGISTRY_IMG
BASE_REGISTRY_IMG := docker.io/portworx/px-operator-registry:1.10.5
BASE_REGISTRY_IMG := docker.io/portworx/px-operator-registry:23.3.0
$(warning BASE_REGISTRY_IMG not defined, using '$(BASE_REGISTRY_IMG)' instead)
endif

Expand Down Expand Up @@ -56,7 +56,7 @@ ifeq ($(BUILD_TYPE),debug)
BUILDFLAGS += -gcflags "-N -l"
endif

RELEASE_VER := 23.3.0
RELEASE_VER := 23.3.1
BASE_DIR := $(shell git rev-parse --show-toplevel)
GIT_SHA := $(shell git rev-parse --short HEAD)
BIN := $(BASE_DIR)/bin
Expand Down
Loading

0 comments on commit e31f1f3

Please sign in to comment.