
Currently StatefulSet(s) fail when you use local-up-cluster without setting a cloud provider. In this PR, we use set the kubernetes.io/host-path provisioner as the default provisioner when there CLOUD_PROVIDER is not specified. This enables e2e test(s) (specifically StatefulSetBasic) to work.
11 lines
276 B
YAML
11 lines
276 B
YAML
apiVersion: storage.k8s.io/v1beta1
|
|
kind: StorageClass
|
|
metadata:
|
|
namespace: kube-system
|
|
name: standard
|
|
annotations:
|
|
storageclass.beta.kubernetes.io/is-default-class: "true"
|
|
labels:
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
provisioner: kubernetes.io/host-path
|