Backport of chore: bump upgrade integrations tests to 1.15, 116 [NET-4743] into release/1.16.x (#18148)

Co-authored-by: Nick Irvine <115657443+nfi-hashicorp@users.noreply.github.com>
This commit is contained in:
hc-github-team-consul-core 2023-07-18 12:04:11 -05:00 committed by GitHub
parent 6c6ce14d5d
commit 761fdacda6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -22,7 +22,8 @@ env:
GOTESTSUM_VERSION: "1.10.1"
CONSUL_BINARY_UPLOAD_NAME: consul-bin
# strip the hashicorp/ off the front of github.repository for consul
CONSUL_LATEST_IMAGE_NAME: ${{ endsWith(github.repository, '-enterprise') && github.repository || 'consul' }}
CONSUL_LATEST_IMAGE_NAME: ${{ endsWith(github.repository, '-enterprise') && github.repository || 'hashicorp/consul' }}
GOPRIVATE: github.com/hashicorp # Required for enterprise deps
jobs:
setup:
@ -474,7 +475,7 @@ jobs:
strategy:
fail-fast: false
matrix:
consul-version: [ "1.14", "1.15"]
consul-version: ["1.14", "1.15", "1.16"]
env:
CONSUL_LATEST_VERSION: ${{ matrix.consul-version }}
ENVOY_VERSION: "1.24.6"

View File

@ -24,7 +24,7 @@ var (
)
const (
DefaultImageNameOSS = "consul"
DefaultImageNameOSS = "hashicorp/consul"
DefaultImageNameENT = "hashicorp/consul-enterprise"
ImageVersionSuffixENT = "-ent"
)