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

1.11.0 rc #913

Merged
merged 23 commits into from
Dec 8, 2021
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 .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
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