File tree 4 files changed +9
-9
lines changed
addons/storage-provisioner
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ metadata:
19
19
namespace : kube-system
20
20
labels :
21
21
integration-test : storage-provisioner
22
- addonmanager.kubernetes.io/mode : Reconcile
22
+ addonmanager.kubernetes.io/mode : EnsureExists
23
23
kubernetes.io/minikube-addons : storage-provisioner
24
24
spec :
25
25
hostNetwork : true
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM ubuntu:16.04
16
-
15
+ FROM scratch
17
16
COPY main main
18
-
19
17
CMD ["/main" ]
20
18
Original file line number Diff line number Diff line change @@ -181,6 +181,9 @@ var LocalkubeCachedImages = []string{
181
181
182
182
// Pause
183
183
"gcr.io/google_containers/pause-amd64:3.0" ,
184
+
185
+ //Storage Provisioner
186
+ "gcr.io/k8s-minikube/storage-provisioner:v1.8.0" ,
184
187
}
185
188
186
189
func GetKubeadmCachedImages (version string ) []string {
@@ -206,6 +209,9 @@ func GetKubeadmCachedImages(version string) []string {
206
209
"gcr.io/google_containers/kube-scheduler-amd64:" + version ,
207
210
"gcr.io/google_containers/kube-controller-manager-amd64:" + version ,
208
211
"gcr.io/google_containers/kube-apiserver-amd64:" + version ,
212
+
213
+ //Storage Provisioner
214
+ "gcr.io/k8s-minikube/storage-provisioner:v1.8.0" ,
209
215
}
210
216
}
211
217
Original file line number Diff line number Diff line change @@ -35,11 +35,7 @@ func TestFunctional(t *testing.T) {
35
35
t .Run ("Addons" , testAddons )
36
36
t .Run ("Dashboard" , testDashboard )
37
37
t .Run ("ServicesList" , testServicesList )
38
-
39
- // Don't run this test on kubeadm bootstrapper for now.
40
- if ! strings .Contains (* args , "--bootstrapper=kubeadm" ) {
41
- t .Run ("Provisioning" , testProvisioning )
42
- }
38
+ t .Run ("Provisioning" , testProvisioning )
43
39
44
40
if ! strings .Contains (minikubeRunner .StartArgs , "--vm-driver=none" ) {
45
41
t .Run ("EnvVars" , testClusterEnv )
You can’t perform that action at this time.
0 commit comments