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
8b174f7f
Commit
8b174f7f
authored
Oct 10, 2015
by
eulerzgy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adjust package name for pkg/cloudprovider
parent
83720911
Show whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
25 additions
and
25 deletions
+25
-25
aws.go
pkg/cloudprovider/providers/aws/aws.go
+1
-1
aws_instancegroups.go
pkg/cloudprovider/providers/aws/aws_instancegroups.go
+1
-1
aws_loadbalancer.go
pkg/cloudprovider/providers/aws/aws_loadbalancer.go
+1
-1
aws_routes.go
pkg/cloudprovider/providers/aws/aws_routes.go
+1
-1
aws_test.go
pkg/cloudprovider/providers/aws/aws_test.go
+1
-1
aws_utils.go
pkg/cloudprovider/providers/aws/aws_utils.go
+1
-1
doc.go
pkg/cloudprovider/providers/fake/doc.go
+2
-2
fake.go
pkg/cloudprovider/providers/fake/fake.go
+1
-1
doc.go
pkg/cloudprovider/providers/gce/doc.go
+2
-2
gce.go
pkg/cloudprovider/providers/gce/gce.go
+1
-1
gce_test.go
pkg/cloudprovider/providers/gce/gce_test.go
+1
-1
token_source.go
pkg/cloudprovider/providers/gce/token_source.go
+1
-1
ovirt.go
pkg/cloudprovider/providers/ovirt/ovirt.go
+1
-1
ovirt_test.go
pkg/cloudprovider/providers/ovirt/ovirt_test.go
+1
-1
doc.go
pkg/cloudprovider/providers/vagrant/doc.go
+2
-2
vagrant.go
pkg/cloudprovider/providers/vagrant/vagrant.go
+1
-1
vagrant_test.go
pkg/cloudprovider/providers/vagrant/vagrant_test.go
+1
-1
routecontroller_test.go
pkg/controller/route/routecontroller_test.go
+1
-1
aws_ebs.go
pkg/volume/aws_ebs/aws_ebs.go
+1
-1
gce_util.go
pkg/volume/gce_pd/gce_util.go
+1
-1
pd.go
test/e2e/pd.go
+1
-1
resize_nodes.go
test/e2e/resize_nodes.go
+1
-1
No files found.
pkg/cloudprovider/providers/aws/aws.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
aws
_cloud
package
aws
import
(
import
(
"errors"
"errors"
...
...
pkg/cloudprovider/providers/aws/aws_instancegroups.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
aws
_cloud
package
aws
import
(
import
(
"fmt"
"fmt"
...
...
pkg/cloudprovider/providers/aws/aws_loadbalancer.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
aws
_cloud
package
aws
import
(
import
(
"fmt"
"fmt"
...
...
pkg/cloudprovider/providers/aws/aws_routes.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
aws
_cloud
package
aws
import
(
import
(
"fmt"
"fmt"
...
...
pkg/cloudprovider/providers/aws/aws_test.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
aws
_cloud
package
aws
import
(
import
(
"fmt"
"fmt"
...
...
pkg/cloudprovider/providers/aws/aws_utils.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
aws
_cloud
package
aws
import
(
import
(
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
...
...
pkg/cloudprovider/providers/fake/doc.go
View file @
8b174f7f
...
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
...
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
// Package fake
_cloud
is a test-double implementation of cloudprovider
// Package fake is a test-double implementation of cloudprovider
// Interface, TCPLoadBalancer and Instances. It is useful for testing.
// Interface, TCPLoadBalancer and Instances. It is useful for testing.
package
fake
_cloud
package
fake
pkg/cloudprovider/providers/fake/fake.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
fake
_cloud
package
fake
import
(
import
(
"errors"
"errors"
...
...
pkg/cloudprovider/providers/gce/doc.go
View file @
8b174f7f
...
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
...
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
// Package gce
_cloud
is an implementation of Interface, TCPLoadBalancer
// Package gce is an implementation of Interface, TCPLoadBalancer
// and Instances for Google Compute Engine.
// and Instances for Google Compute Engine.
package
gce
_cloud
package
gce
pkg/cloudprovider/providers/gce/gce.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
gce
_cloud
package
gce
import
(
import
(
"fmt"
"fmt"
...
...
pkg/cloudprovider/providers/gce/gce_test.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
gce
_cloud
package
gce
import
"testing"
import
"testing"
...
...
pkg/cloudprovider/providers/gce/token_source.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
gce
_cloud
package
gce
import
(
import
(
"encoding/json"
"encoding/json"
...
...
pkg/cloudprovider/providers/ovirt/ovirt.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
ovirt
_cloud
package
ovirt
import
(
import
(
"encoding/xml"
"encoding/xml"
...
...
pkg/cloudprovider/providers/ovirt/ovirt_test.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
ovirt
_cloud
package
ovirt
import
(
import
(
"io"
"io"
...
...
pkg/cloudprovider/providers/vagrant/doc.go
View file @
8b174f7f
...
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
...
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
// Package vagrant
_cloud
is an implementation of Interface, TCPLoadBalancer
// Package vagrant is an implementation of Interface, TCPLoadBalancer
// and Instances for developer managed Vagrant cluster.
// and Instances for developer managed Vagrant cluster.
package
vagrant
_cloud
package
vagrant
pkg/cloudprovider/providers/vagrant/vagrant.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
vagrant
_cloud
package
vagrant
import
(
import
(
"encoding/json"
"encoding/json"
...
...
pkg/cloudprovider/providers/vagrant/vagrant_test.go
View file @
8b174f7f
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
vagrant
_cloud
package
vagrant
import
(
import
(
"net/http"
"net/http"
...
...
pkg/controller/route/routecontroller_test.go
View file @
8b174f7f
...
@@ -23,7 +23,7 @@ import (
...
@@ -23,7 +23,7 @@ import (
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/cloudprovider"
"k8s.io/kubernetes/pkg/cloudprovider"
"k8s.io/kubernetes/pkg/cloudprovider/providers/fake"
fake_cloud
"k8s.io/kubernetes/pkg/cloudprovider/providers/fake"
)
)
func
TestIsResponsibleForRoute
(
t
*
testing
.
T
)
{
func
TestIsResponsibleForRoute
(
t
*
testing
.
T
)
{
...
...
pkg/volume/aws_ebs/aws_ebs.go
View file @
8b174f7f
...
@@ -26,7 +26,7 @@ import (
...
@@ -26,7 +26,7 @@ import (
"github.com/golang/glog"
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/cloudprovider/providers/aws"
aws_cloud
"k8s.io/kubernetes/pkg/cloudprovider/providers/aws"
"k8s.io/kubernetes/pkg/types"
"k8s.io/kubernetes/pkg/types"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util/exec"
"k8s.io/kubernetes/pkg/util/exec"
...
...
pkg/volume/gce_pd/gce_util.go
View file @
8b174f7f
...
@@ -26,7 +26,7 @@ import (
...
@@ -26,7 +26,7 @@ import (
"github.com/golang/glog"
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/cloudprovider"
"k8s.io/kubernetes/pkg/cloudprovider"
"k8s.io/kubernetes/pkg/cloudprovider/providers/gce"
gce_cloud
"k8s.io/kubernetes/pkg/cloudprovider/providers/gce"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util/exec"
"k8s.io/kubernetes/pkg/util/exec"
"k8s.io/kubernetes/pkg/util/operationmanager"
"k8s.io/kubernetes/pkg/util/operationmanager"
...
...
test/e2e/pd.go
View file @
8b174f7f
...
@@ -30,7 +30,7 @@ import (
...
@@ -30,7 +30,7 @@ import (
"k8s.io/kubernetes/pkg/api/resource"
"k8s.io/kubernetes/pkg/api/resource"
"k8s.io/kubernetes/pkg/api/unversioned"
"k8s.io/kubernetes/pkg/api/unversioned"
client
"k8s.io/kubernetes/pkg/client/unversioned"
client
"k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/pkg/cloudprovider/providers/aws"
aws_cloud
"k8s.io/kubernetes/pkg/cloudprovider/providers/aws"
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/fields"
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/labels"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util"
...
...
test/e2e/resize_nodes.go
View file @
8b174f7f
...
@@ -34,7 +34,7 @@ import (
...
@@ -34,7 +34,7 @@ import (
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/gomega"
.
"github.com/onsi/gomega"
"k8s.io/kubernetes/pkg/cloudprovider/providers/aws"
aws_cloud
"k8s.io/kubernetes/pkg/cloudprovider/providers/aws"
)
)
const
(
const
(
...
...
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