Skip to content

Commit

Permalink
remove quite flag in Minio
Browse files Browse the repository at this point in the history
  • Loading branch information
nvanthao committed Dec 9, 2024
1 parent f6cf06a commit 3462f74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/kotsadm/objects/minio_objects.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ func MinioStatefulset(deployOptions types.DeployOptions, size resource.Quantity)
Command: []string{
"/bin/sh",
"-ce",
"minio -C /home/minio/.minio/ --quiet server /export",
"minio -C /home/minio/.minio/ server /export",
},
Ports: []corev1.ContainerPort{
{
Expand Down
2 changes: 1 addition & 1 deletion pkg/snapshot/filesystem_minio.go
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ func fileSystemMinioDeploymentResource(clientset kubernetes.Interface, secretChe
MountPath: "/.minio/",
},
},
Args: []string{"--quiet", "server", "data"},
Args: []string{"server", "data"},
LivenessProbe: &corev1.Probe{
ProbeHandler: corev1.ProbeHandler{
HTTPGet: &corev1.HTTPGetAction{
Expand Down

0 comments on commit 3462f74

Please sign in to comment.