Skip to content

Commit

Permalink
1.11.0 rc (#913)
Browse files Browse the repository at this point in the history
* support 1.11.0-rc
  • Loading branch information
Ashwin Venkatesh authored Dec 8, 2021
1 parent 71a6bb6 commit 4143aff
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ executors:
- image: docker.mirror.hashicorp.services/circleci/golang:1.17
environment:
TEST_RESULTS: /tmp/test-results # path to where test results are saved
CONSUL_VERSION: 1.11.0-beta3 # Consul's OSS version to use in tests
CONSUL_ENT_VERSION: 1.11.0+ent-beta3 # Consul's enterprise version to use in tests
CONSUL_VERSION: 1.11.0-rc # Consul's OSS version to use in tests
CONSUL_ENT_VERSION: 1.11.0+ent-rc # Consul's enterprise version to use in tests

control-plane-path : &control-plane-path control-plane
cli-path : &cli-path cli
Expand Down
2 changes: 1 addition & 1 deletion acceptance/tests/controller/controller_namespaces_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func TestControllerNamespaces(t *testing.T) {
ctx := suite.Environment().DefaultContext(t)

helmValues := map[string]string{
"global.image": "ashwinvenkatesh/consul@sha256:dce7a25b9e15271d8102a0f14fae71af0b9c789bafd8cbe4a7d0f8c34abe0296",
"global.image": "hashicorp/consul-enterprise:1.11.0-ent-rc",

"global.enableConsulNamespaces": "true",
"global.adminPartitions.enabled": "true",
Expand Down
4 changes: 2 additions & 2 deletions acceptance/tests/partitions/partitions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func TestPartitions(t *testing.T) {

serverHelmValues := map[string]string{
"global.datacenter": "dc1",
"global.image": "ashwinvenkatesh/consul@sha256:dce7a25b9e15271d8102a0f14fae71af0b9c789bafd8cbe4a7d0f8c34abe0296",
"global.image": "hashicorp/consul-enterprise:1.11.0-ent-rc",

"global.adminPartitions.enabled": "true",
"global.enableConsulNamespaces": "true",
Expand Down Expand Up @@ -197,7 +197,7 @@ func TestPartitions(t *testing.T) {
// Create client cluster.
clientHelmValues := map[string]string{
"global.datacenter": "dc1",
"global.image": "ashwinvenkatesh/consul@sha256:dce7a25b9e15271d8102a0f14fae71af0b9c789bafd8cbe4a7d0f8c34abe0296",
"global.image": "hashicorp/consul-enterprise:1.11.0-ent-rc",
"global.enabled": "false",

"global.tls.enabled": "true",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import (

func TestExportedServicesController_createsExportedServices(tt *testing.T) {
tt.Parallel()
tt.Skip()

cases := map[string]struct {
Mirror bool
Expand Down Expand Up @@ -151,7 +150,6 @@ func TestExportedServicesController_createsExportedServices(tt *testing.T) {

func TestExportedServicesController_updatesExportedServices(tt *testing.T) {
tt.Parallel()
tt.Skip()

cases := map[string]struct {
Mirror bool
Expand Down Expand Up @@ -294,7 +292,6 @@ func TestExportedServicesController_updatesExportedServices(tt *testing.T) {

func TestExportedServicesController_deletesExportedServices(tt *testing.T) {
tt.Parallel()
tt.Skip()

cases := map[string]struct {
Mirror bool
Expand Down

0 comments on commit 4143aff

Please sign in to comment.