Skip to content

Commit

Permalink
Fix log message: virtural->virtual
Browse files Browse the repository at this point in the history
Signed-off-by: maxwell <csuhp007@gmail.com>
  • Loading branch information
agilebot1 committed Nov 11, 2018
1 parent 63c6e29 commit c32b5a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/release-versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This project is a Kubernetes component whereas the functionalities and APIs all
The basic rule is:
1. Every release version follows `Semantic Versioning`, in the form of `MAJOR.MINOR.PATCH`
2. For `MAJOR.MINOR`, it keeps same value as the Kubernetes upstream
3. For `PATCH`, it is calcuated independently:
3. For `PATCH`, it is calculated independently:
- If upstream Kubernetes has a new a [patch release](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/release/versioning.md#patch-releases), which introduces change in `cloud-controller-manager` or any component we depend on, then sync the change and increase the `PATCH` number.
- If any code change happens in [Azure cloud provider](../cloud-controller-manager/azureprovider) or other dependency projects, which becomes eligible for a new release, then increase the `PATCH` number.

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/utils/azure_test_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func CreateAzureTestClient() (*AzureTestClient, error) {
return c, nil
}

// getResourceGroup get RG name which is same of cluster name as definited in k8s-azure
// getResourceGroup get RG name which is same of cluster name as definite in k8s-azure
func getResourceGroup() string {
return ExtractDNSPrefix()
}
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/utils/network_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (

// getVirtualNetworkList is a wapper around listing VirtualNetwork
func (azureTestClient *AzureTestClient) getVirtualNetworkList() (result aznetwork.VirtualNetworkListResultPage, err error) {
Logf("Getting virtural network list")
Logf("Getting virtual network list")
vNetClient := azureTestClient.createVirtualNetworksClient()
err = wait.PollImmediate(poll, singleCallTimeout, func() (bool, error) {
result, err = vNetClient.List(context.Background(), getResourceGroup())
Expand Down Expand Up @@ -95,7 +95,7 @@ func GetNextSubnetCIDR(vnet aznetwork.VirtualNetwork) (string, error) {

// getSecurityGroupList is a wapper around listing VirtualNetwork
func (azureTestClient *AzureTestClient) getSecurityGroupList() (result aznetwork.SecurityGroupListResultPage, err error) {
Logf("Getting virtural network list")
Logf("Getting virtual network list")
securityGroupsClient := azureTestClient.CreateSecurityGroupsClient()
err = wait.PollImmediate(poll, singleCallTimeout, func() (bool, error) {
result, err = securityGroupsClient.List(context.Background(), getResourceGroup())
Expand Down

0 comments on commit c32b5a4

Please sign in to comment.