Skip to content

Commit

Permalink
Set back osc_region and osc_subregion
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentBaer authored and Vincent Baer committed Dec 4, 2023
1 parent 1e0db8c commit 7e07555
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions testenv/osccluster_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,13 @@ var _ = Describe("Outscale Cluster Reconciler", func() {
It("should create a simple cluster with default values", func() {
ctx := context.Background()
osc_region, ok := os.LookupEnv("OSC_REGION")
if !ok {
osc_region = "eu-west-2"
}
osc_subregion, ok := os.LookupEnv("OSC_SUBREGION_NAME")
if !ok {
osc_subregion = osc_region + "a"
}
infraClusterSpec := infrastructurev1beta1.OscClusterSpec{
Network: infrastructurev1beta1.OscNetwork{
SubregionName: osc_subregion,
Expand Down

0 comments on commit 7e07555

Please sign in to comment.