Skip to content

Commit

Permalink
Merge branch 'release-1.0' of https://github.com/percona/everest into…
Browse files Browse the repository at this point in the history
… release-1.0
  • Loading branch information
fabio-silva committed Jun 27, 2024
2 parents 7336890 + 2c24407 commit ca9074a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FILES = $(shell find . -type f -name '*.go')

RELEASE_VERSION ?= v1.0.0-rc3
RELEASE_VERSION ?= v1.0.0-rc4
RELEASE_FULLCOMMIT ?= $(shell git rev-parse HEAD)

FLAGS = -X 'github.com/percona/everest/pkg/version.Version=$(RELEASE_VERSION)' \
Expand Down
2 changes: 1 addition & 1 deletion api/validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ func validateBackupSpec(cluster *DatabaseCluster) error {
if !cluster.Spec.Backup.Enabled {
return nil
}
if cluster.Spec.Backup.Schedules == nil {
if cluster.Spec.Backup.Schedules == nil || len(*cluster.Spec.Backup.Schedules) == 0 {
return errNoSchedules
}

Expand Down
2 changes: 1 addition & 1 deletion deploy/quickstart-k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ spec:
secretName: everest-jwt
containers:
- name: everest
image: perconalab/everest:1.0.0-rc3
image: perconalab/everest:1.0.0-rc4
ports:
- containerPort: 8080
readinessProbe:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ require (
github.com/oapi-codegen/runtime v1.1.1
github.com/operator-framework/api v0.23.0
github.com/operator-framework/operator-lifecycle-manager v0.27.0
github.com/percona/everest-operator v1.0.0-rc3
github.com/percona/everest-operator v1.0.0-rc4
github.com/rodaine/table v1.2.0
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.18.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -573,8 +573,8 @@ github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/9
github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE=
github.com/pelletier/go-toml/v2 v2.1.0 h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4=
github.com/pelletier/go-toml/v2 v2.1.0/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc=
github.com/percona/everest-operator v1.0.0-rc3 h1:R2/vwQhw4C/Wm0LKmNwxmbgjgal7rqHy8c0LQvgQwNI=
github.com/percona/everest-operator v1.0.0-rc3/go.mod h1:26Ardqn/+YgAX5zot3w3OO+hibBUwyVXgdvL8M/K/OE=
github.com/percona/everest-operator v1.0.0-rc4 h1:ccKkZyXuPylZ6Uo3jFcxSY/HiRb6Zr1LxA98dLCR1mQ=
github.com/percona/everest-operator v1.0.0-rc4/go.mod h1:26Ardqn/+YgAX5zot3w3OO+hibBUwyVXgdvL8M/K/OE=
github.com/percona/percona-backup-mongodb v1.8.1-0.20230920143330-3b1c2e263901 h1:BDgsZRCjEuxl2/z4yWBqB0s8d20shuIDks7/RVdZiLs=
github.com/percona/percona-backup-mongodb v1.8.1-0.20230920143330-3b1c2e263901/go.mod h1:fZRCMpUqkWlLVdRKqqaj001LoVP2eo6F0ZhoMPeXDng=
github.com/percona/percona-postgresql-operator v0.0.0-20231220140959-ad5eef722609 h1:+UOK4gcHrRgqjo4smgfwT7/0apF6PhAJdQIdAV4ub/M=
Expand Down

0 comments on commit ca9074a

Please sign in to comment.