Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: remove quiet flag in Minio #5036

Merged
merged 3 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
5 changes: 5 additions & 0 deletions pkg/supportbundle/staticspecs/defaultspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ spec:
name: kots/admin_console
selector:
- app=kotsadm-dex
- logs:
collectorName: kotsadm-minio
name: kots/admin_console
selector:
- app=kotsadm-minio
- logs:
collectorName: kotsadm-fs-minio
name: kots/admin_console
Expand Down
Loading