• Kubernetes Submit Queue's avatar
    Merge pull request #45345 from codablock/storageclass_fstype · d286f562
    Kubernetes Submit Queue authored
    Automatic merge from submit-queue (batch tested with PRs 45345, 49470, 49407, 49448, 49486)
    
    Support "fstype" parameter in dynamically provisioned PVs
    
    This PR is a replacement for https://github.com/kubernetes/kubernetes/pull/40805. I was not able to push fixes and rebases to the original branch as I don't have access to the Github organization anymore.
    
    I assume the PR will need a new "ok to test" 
    
    **ORIGINAL PR DESCRIPTION**
    
    **What this PR does / why we need it**: This PR allows specifying the desired FSType when dynamically provisioning volumes with storage classes. The FSType can now be set as a parameter:
    ```yaml
    kind: StorageClass
    apiVersion: storage.k8s.io/v1beta1
    metadata:
      name: test
    provisioner: kubernetes.io/azure-disk
    parameters:
      fstype: xfs
    ```
    
    **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #37801
    
    **Special notes for your reviewer**:
    The PR also implicitly adds checks for unsupported parameters.
    
    **Release note**:
    
    ```release-note
    Support specifying of FSType in StorageClass
    ```
    d286f562
Name
Last commit
Last update
..
BUILD Loading commit data...
OWNERS Loading commit data...
attacher.go Loading commit data...
attacher_test.go Loading commit data...
aws_ebs.go Loading commit data...
aws_ebs_test.go Loading commit data...
aws_util.go Loading commit data...
doc.go Loading commit data...