Skip to content

Commit

Permalink
Merge pull request kubernetes-csi#358 from Kartik494/emptydefaultfs
Browse files Browse the repository at this point in the history
Change Fstype default to emptyString from ext4
  • Loading branch information
k8s-ci-robot authored Jun 16, 2022
2 parents 8d33728 + ff7cfa1 commit 438ddbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Note that the external-attacher does not scale with more replicas. Only one exte

* `--leader-election-retry-period <duration>`: Duration, in seconds, the LeaderElector clients should wait between tries of actions. Defaults to 5 seconds.

* `--default-fstype <type>`: The default filesystem type of the volume to publish. Defaults to `ext4`.
* `--default-fstype <type>`: The default filesystem type of the volume to publish. Defaults to empty string.

#### Other recognized arguments

Expand Down
2 changes: 1 addition & 1 deletion cmd/csi-attacher/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ var (
leaderElectionRenewDeadline = flag.Duration("leader-election-renew-deadline", 10*time.Second, "Duration, in seconds, that the acting leader will retry refreshing leadership before giving up. Defaults to 10 seconds.")
leaderElectionRetryPeriod = flag.Duration("leader-election-retry-period", 5*time.Second, "Duration, in seconds, the LeaderElector clients should wait between tries of actions. Defaults to 5 seconds.")

defaultFSType = flag.String("default-fstype", "ext4", "The default filesystem type of the volume to publish.")
defaultFSType = flag.String("default-fstype", "", "The default filesystem type of the volume to publish. Defaults to empty string")

reconcileSync = flag.Duration("reconcile-sync", 1*time.Minute, "Resync interval of the VolumeAttachment reconciler.")

Expand Down

0 comments on commit 438ddbd

Please sign in to comment.