-
Notifications
You must be signed in to change notification settings - Fork 163
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
Add CCE service #19
Add CCE service #19
Conversation
# Conflicts: # CHANGELOG.md
I wonder the relationship between this parties and Kubernetes parties, can they work together? |
CHANGELOG.md
Outdated
@@ -1,7 +1,15 @@ | |||
## 1.1.1 (Unreleased) | |||
## 1.1.2 (Unreleased) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why adding a new release stanza 1.1.2? You should not manually changed the v1.1.1 below to released which should be triggered by hashicorp release bot.
huaweicloud/provider_test.go
Outdated
func testAccPreCheckCCENode(t *testing.T) { | ||
testAccPreCheckRequiredEnvVars(t) | ||
if OS_SSH_KEY == "" { | ||
t.Fatal("OS_SSH_KEY must be set for acceptance tests") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
better to also use t.Skip here as above for such new added ENV variables in case it breaks all tests.
vpc_id = "%s" | ||
subnet_id = "%s" | ||
container_network_type = "overlay_l2" | ||
}`, OS_VPC_ID, OS_SUBNET_ID) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all such OS_SUBNET_ID should be changed to OS_NETWORK_ID which we already added.
var node nodes.Nodes | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/testAccPreCheck/testAccPreCheckCCENode
This PR adds a capability to manage Huaweicloud CCE service.