Skip to content

Commit

Permalink
Fixed merge conflicts and small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Priya Wadhwa committed Oct 30, 2017
2 parents 92d40a2 + eaac53f commit e372b27
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 13 deletions.
16 changes: 16 additions & 0 deletions cmd/storage-provisioner/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2016 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package main

import (
Expand Down
3 changes: 1 addition & 2 deletions deploy/addons/storage-provisioner/storage-provisioner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ metadata:
namespace: kube-system
labels:
integration-test: storage-provisioner
addonmanager.kubernetes.io/mode: Reconcile
kubernetes.io/minikube-addons: storage-provisioner
addonmanager.kubernetes.io/mode: EnsureExists
spec:
hostNetwork: true
containers:
Expand Down
5 changes: 1 addition & 4 deletions deploy/storage-provisioner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ubuntu:16.04

FROM scratch
COPY main main

CMD ["/main"]

2 changes: 1 addition & 1 deletion pkg/localkube/storage_provisioner.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func StartStorageProvisioner(lk LocalkubeServer) func() error {
// PVs
pc := controller.NewProvisionController(clientset, provisionerName, hostPathProvisioner, serverVersion.GitVersion)

fmt.Println("wait never stop")
glog.Info("Starting storage provisioner server")
pc.Run(wait.NeverStop)
return nil
}
Expand Down
7 changes: 6 additions & 1 deletion pkg/minikube/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ var LocalkubeCachedImages = []string{

// Pause
"gcr.io/google_containers/pause-amd64:3.0",

//Storage provisioner
"gcr.io/k8s-minikube/storage-provisioner:v1.8.0",
}

func GetKubeadmCachedImages(version string) []string {
Expand All @@ -206,7 +209,9 @@ func GetKubeadmCachedImages(version string) []string {
"gcr.io/google_containers/kube-scheduler-amd64:" + version,
"gcr.io/google_containers/kube-controller-manager-amd64:" + version,
"gcr.io/google_containers/kube-apiserver-amd64:" + version,
}

//Storage provisioner
"gcr.io/k8s-minikube/storage-provisioner:v1.8.0"}
}

var ImageCacheDir = MakeMiniPath("cache", "images")
6 changes: 1 addition & 5 deletions test/integration/functional_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,7 @@ func TestFunctional(t *testing.T) {
t.Run("Addons", testAddons)
t.Run("Dashboard", testDashboard)
t.Run("ServicesList", testServicesList)

// Don't run this test on kubeadm bootstrapper for now.
if !strings.Contains(*args, "--bootstrapper=kubeadm") {
t.Run("Provisioning", testProvisioning)
}
t.Run("Provisioning", testProvisioning)

if !strings.Contains(minikubeRunner.StartArgs, "--vm-driver=none") {
t.Run("EnvVars", testClusterEnv)
Expand Down

0 comments on commit e372b27

Please sign in to comment.