Théo Bolognini
Théo Bolognini
@phimar Yep but still there's that problem with Disks over 30gb.
@colemickens mkfs.ext4 that's taking hours when kubelet try to format a new PersistentVolume. https://github.com/kubernetes/kubernetes/pull/38865 https://github.com/kubernetes/kubernetes/issues/30752 If i want to mount a 500gb PersistentVolume ... it's taking something like 1 hour.
@colemickens I'm using the Dynamic Disk Provisionning feature with a PVC and an "Azure" `StorageClass` using a Premium Storage; tried with a Classic POD and with a StatefulSet using PVCTemplates....
@colemickens Merci Cole ;)
@AlexGrs Witch is the size of the PersistentVolume that you wanted to deploy ? Because as i said if you try to provision a Disk bigger than 30gb it can...
@AlexGrs That's exactly the point : - Kubelet is doing a mkfs.ext4 on each new Dynamic Disks - The Kube-controller is just doing a mount between the host and the...
@AlexGrs the only workaround today is as @colemickens said, formatting your Disk manually (you can use his guide https://github.com/colemickens/azure-kubernetes-demo). I did that to format two 500gb disks used by Jenkins...
@codablock unfortunately `kubelet` is deployed using Hyperkube image in ACS-engine. 
@codablock That's possible to use a custom Hyperkube image, seems heavy but it should works ...
In my case : - 5 nodes : Standard_DS3_v2 - Master : Standard_DS4_v2 I tried to deploy more than 5 external services but on the 6th service Kubernetes throw that...