Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
c27ff9a1
Commit
c27ff9a1
authored
Apr 21, 2019
by
Pengfei Ni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade compute API to version 2019-03-01
parent
1377108c
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
25 additions
and
25 deletions
+25
-25
BUILD
pkg/cloudprovider/providers/azure/BUILD
+2
-2
azure.go
pkg/cloudprovider/providers/azure/azure.go
+1
-1
azure_backoff.go
pkg/cloudprovider/providers/azure/azure_backoff.go
+1
-1
azure_client.go
pkg/cloudprovider/providers/azure/azure_client.go
+1
-1
azure_controller_common.go
pkg/cloudprovider/providers/azure/azure_controller_common.go
+1
-1
azure_controller_common_test.go
...dprovider/providers/azure/azure_controller_common_test.go
+1
-1
azure_controller_standard.go
...loudprovider/providers/azure/azure_controller_standard.go
+1
-1
azure_controller_vmss.go
pkg/cloudprovider/providers/azure/azure_controller_vmss.go
+1
-1
azure_fakes.go
pkg/cloudprovider/providers/azure/azure_fakes.go
+1
-1
azure_instances_test.go
pkg/cloudprovider/providers/azure/azure_instances_test.go
+1
-1
azure_managedDiskController.go
...udprovider/providers/azure/azure_managedDiskController.go
+1
-1
azure_standard.go
pkg/cloudprovider/providers/azure/azure_standard.go
+1
-1
azure_test.go
pkg/cloudprovider/providers/azure/azure_test.go
+1
-1
azure_vmsets.go
pkg/cloudprovider/providers/azure/azure_vmsets.go
+1
-1
azure_vmss.go
pkg/cloudprovider/providers/azure/azure_vmss.go
+1
-1
azure_vmss_test.go
pkg/cloudprovider/providers/azure/azure_vmss_test.go
+1
-1
azure_wrap.go
pkg/cloudprovider/providers/azure/azure_wrap.go
+1
-1
BUILD
pkg/volume/azure_dd/BUILD
+2
-2
attacher.go
pkg/volume/azure_dd/attacher.go
+1
-1
azure_common.go
pkg/volume/azure_dd/azure_common.go
+1
-1
azure_common_test.go
pkg/volume/azure_dd/azure_common_test.go
+1
-1
azure_dd.go
pkg/volume/azure_dd/azure_dd.go
+1
-1
azure_dd_test.go
pkg/volume/azure_dd/azure_dd_test.go
+1
-1
No files found.
pkg/cloudprovider/providers/azure/BUILD
View file @
c27ff9a1
...
@@ -58,7 +58,7 @@ go_library(
...
@@ -58,7 +58,7 @@ go_library(
"//staging/src/k8s.io/cloud-provider/volume:go_default_library",
"//staging/src/k8s.io/cloud-provider/volume:go_default_library",
"//staging/src/k8s.io/cloud-provider/volume/errors:go_default_library",
"//staging/src/k8s.io/cloud-provider/volume/errors:go_default_library",
"//staging/src/k8s.io/cloud-provider/volume/helpers:go_default_library",
"//staging/src/k8s.io/cloud-provider/volume/helpers:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/storage:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/storage:go_default_library",
...
@@ -102,7 +102,7 @@ go_test(
...
@@ -102,7 +102,7 @@ go_test(
"//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library",
"//staging/src/k8s.io/cloud-provider:go_default_library",
"//staging/src/k8s.io/cloud-provider:go_default_library",
"//staging/src/k8s.io/cloud-provider/service/helpers:go_default_library",
"//staging/src/k8s.io/cloud-provider/service/helpers:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage:go_default_library",
"//vendor/github.com/Azure/go-autorest/autorest:go_default_library",
"//vendor/github.com/Azure/go-autorest/autorest:go_default_library",
...
...
pkg/cloudprovider/providers/azure/azure.go
View file @
c27ff9a1
...
@@ -38,7 +38,7 @@ import (
...
@@ -38,7 +38,7 @@ import (
cloudprovider
"k8s.io/cloud-provider"
cloudprovider
"k8s.io/cloud-provider"
"k8s.io/kubernetes/pkg/cloudprovider/providers/azure/auth"
"k8s.io/kubernetes/pkg/cloudprovider/providers/azure/auth"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
"github.com/Azure/go-autorest/autorest/azure"
"k8s.io/klog"
"k8s.io/klog"
...
...
pkg/cloudprovider/providers/azure/azure_backoff.go
View file @
c27ff9a1
...
@@ -20,7 +20,7 @@ import (
...
@@ -20,7 +20,7 @@ import (
"fmt"
"fmt"
"net/http"
"net/http"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
...
...
pkg/cloudprovider/providers/azure/azure_client.go
View file @
c27ff9a1
...
@@ -22,7 +22,7 @@ import (
...
@@ -22,7 +22,7 @@ import (
"net/http"
"net/http"
"time"
"time"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage"
"github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest"
...
...
pkg/cloudprovider/providers/azure/azure_controller_common.go
View file @
c27ff9a1
...
@@ -21,7 +21,7 @@ import (
...
@@ -21,7 +21,7 @@ import (
"fmt"
"fmt"
"time"
"time"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"k8s.io/klog"
"k8s.io/klog"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/types"
...
...
pkg/cloudprovider/providers/azure/azure_controller_common_test.go
View file @
c27ff9a1
...
@@ -20,7 +20,7 @@ import (
...
@@ -20,7 +20,7 @@ import (
"fmt"
"fmt"
"testing"
"testing"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
)
)
func
TestAttachDisk
(
t
*
testing
.
T
)
{
func
TestAttachDisk
(
t
*
testing
.
T
)
{
...
...
pkg/cloudprovider/providers/azure/azure_controller_standard.go
View file @
c27ff9a1
...
@@ -21,7 +21,7 @@ import (
...
@@ -21,7 +21,7 @@ import (
"net/http"
"net/http"
"strings"
"strings"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"k8s.io/klog"
"k8s.io/klog"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/types"
...
...
pkg/cloudprovider/providers/azure/azure_controller_vmss.go
View file @
c27ff9a1
...
@@ -21,7 +21,7 @@ import (
...
@@ -21,7 +21,7 @@ import (
"net/http"
"net/http"
"strings"
"strings"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"k8s.io/klog"
"k8s.io/klog"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/types"
...
...
pkg/cloudprovider/providers/azure/azure_fakes.go
View file @
c27ff9a1
...
@@ -29,7 +29,7 @@ import (
...
@@ -29,7 +29,7 @@ import (
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/types"
cloudprovider
"k8s.io/cloud-provider"
cloudprovider
"k8s.io/cloud-provider"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage"
"github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest"
...
...
pkg/cloudprovider/providers/azure/azure_instances_test.go
View file @
c27ff9a1
...
@@ -24,7 +24,7 @@ import (
...
@@ -24,7 +24,7 @@ import (
"reflect"
"reflect"
"testing"
"testing"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/autorest/to"
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/types"
...
...
pkg/cloudprovider/providers/azure/azure_managedDiskController.go
View file @
c27ff9a1
...
@@ -23,7 +23,7 @@ import (
...
@@ -23,7 +23,7 @@ import (
"strconv"
"strconv"
"strings"
"strings"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/autorest/to"
"k8s.io/klog"
"k8s.io/klog"
...
...
pkg/cloudprovider/providers/azure/azure_standard.go
View file @
c27ff9a1
...
@@ -26,7 +26,7 @@ import (
...
@@ -26,7 +26,7 @@ import (
"strconv"
"strconv"
"strings"
"strings"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/autorest/to"
...
...
pkg/cloudprovider/providers/azure/azure_test.go
View file @
c27ff9a1
...
@@ -33,7 +33,7 @@ import (
...
@@ -33,7 +33,7 @@ import (
servicehelpers
"k8s.io/cloud-provider/service/helpers"
servicehelpers
"k8s.io/cloud-provider/service/helpers"
"k8s.io/kubernetes/pkg/cloudprovider/providers/azure/auth"
"k8s.io/kubernetes/pkg/cloudprovider/providers/azure/auth"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/autorest/to"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/assert"
...
...
pkg/cloudprovider/providers/azure/azure_vmsets.go
View file @
c27ff9a1
...
@@ -19,7 +19,7 @@ package azure
...
@@ -19,7 +19,7 @@ package azure
import
(
import
(
"net/http"
"net/http"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
...
...
pkg/cloudprovider/providers/azure/azure_vmss.go
View file @
c27ff9a1
...
@@ -24,7 +24,7 @@ import (
...
@@ -24,7 +24,7 @@ import (
"strconv"
"strconv"
"strings"
"strings"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/autorest/to"
...
...
pkg/cloudprovider/providers/azure/azure_vmss_test.go
View file @
c27ff9a1
...
@@ -20,7 +20,7 @@ import (
...
@@ -20,7 +20,7 @@ import (
"fmt"
"fmt"
"testing"
"testing"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/autorest/to"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/assert"
...
...
pkg/cloudprovider/providers/azure/azure_wrap.go
View file @
c27ff9a1
...
@@ -23,7 +23,7 @@ import (
...
@@ -23,7 +23,7 @@ import (
"strings"
"strings"
"time"
"time"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/types"
...
...
pkg/volume/azure_dd/BUILD
View file @
c27ff9a1
...
@@ -37,7 +37,7 @@ go_library(
...
@@ -37,7 +37,7 @@ go_library(
"//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library",
"//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library",
"//staging/src/k8s.io/cloud-provider:go_default_library",
"//staging/src/k8s.io/cloud-provider:go_default_library",
"//staging/src/k8s.io/cloud-provider/volume/helpers:go_default_library",
"//staging/src/k8s.io/cloud-provider/volume/helpers:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage:go_default_library",
"//vendor/k8s.io/klog:go_default_library",
"//vendor/k8s.io/klog:go_default_library",
"//vendor/k8s.io/utils/strings:go_default_library",
"//vendor/k8s.io/utils/strings:go_default_library",
...
@@ -74,7 +74,7 @@ go_test(
...
@@ -74,7 +74,7 @@ go_test(
"//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/types:go_default_library",
"//staging/src/k8s.io/apimachinery/pkg/types:go_default_library",
"//staging/src/k8s.io/client-go/util/testing:go_default_library",
"//staging/src/k8s.io/client-go/util/testing:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute:go_default_library",
"//vendor/github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute:go_default_library",
"//vendor/github.com/Azure/go-autorest/autorest/to:go_default_library",
"//vendor/github.com/Azure/go-autorest/autorest/to:go_default_library",
"//vendor/github.com/stretchr/testify/assert:go_default_library",
"//vendor/github.com/stretchr/testify/assert:go_default_library",
],
],
...
...
pkg/volume/azure_dd/attacher.go
View file @
c27ff9a1
...
@@ -24,7 +24,7 @@ import (
...
@@ -24,7 +24,7 @@ import (
"strconv"
"strconv"
"time"
"time"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"k8s.io/klog"
"k8s.io/klog"
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
...
...
pkg/volume/azure_dd/azure_common.go
View file @
c27ff9a1
...
@@ -25,7 +25,7 @@ import (
...
@@ -25,7 +25,7 @@ import (
"strconv"
"strconv"
libstrings
"strings"
libstrings
"strings"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/types"
...
...
pkg/volume/azure_dd/azure_common_test.go
View file @
c27ff9a1
...
@@ -24,7 +24,7 @@ import (
...
@@ -24,7 +24,7 @@ import (
"testing"
"testing"
"time"
"time"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/assert"
"k8s.io/kubernetes/pkg/util/mount"
"k8s.io/kubernetes/pkg/util/mount"
...
...
pkg/volume/azure_dd/azure_dd.go
View file @
c27ff9a1
...
@@ -22,7 +22,7 @@ import (
...
@@ -22,7 +22,7 @@ import (
"strings"
"strings"
"time"
"time"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage"
"github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage"
"k8s.io/klog"
"k8s.io/klog"
...
...
pkg/volume/azure_dd/azure_dd_test.go
View file @
c27ff9a1
...
@@ -20,7 +20,7 @@ import (
...
@@ -20,7 +20,7 @@ import (
"os"
"os"
"testing"
"testing"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
8-10
-01/compute"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/201
9-03
-01/compute"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/autorest/to"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/assert"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment