Skip to main content
Version: Spectra Detect 6.2.0

SeaweedFS Secrets and ConfigMap values

Values

Kubernetes Settings

KeyTypeDefaultDescription
useReloaderstringnilWhether to enable Reloader annotations. When defined, this value takes precedence over global.useReloader.

Application Configuration

KeyTypeDefaultDescription
s3.portint8333Port for the S3-compatible API service. Allows tools like AWS CLI, Minio, and various SDKs to interact with SeaweedFS as an object store.
server.filerPortint8888Port for the Filer server. Provides the filesystem interface and metadata management.
server.masterPortint9333Port for the Master server. Manages volume assignments and cluster coordination.
server.maxVolumesint30Maximum number of physical volumes this node is allowed to host. total_capacity = maxVolumes * volumeSizeLimitMB
server.minFreeSpaceGiBint1Minimum threshold of free disk space in GiB. If remaining space falls below this, the server stops accepting new writes to prevent disk exhaustion.
server.volumePortint8099Port for the Volume server. Handles the actual read/write operations for data chunks.
server.volumeSizeLimitMBint20000Maximum size in MB for each physical volume file before it is marked as read-only.

Pod Settings

KeyTypeDefaultDescription
image.pullPolicystring"IfNotPresent"Image pull policy. Options: Always, IfNotPresent, Never.
image.repositorystring"chrislusf/seaweedfs"Repository name.
image.tagstring"3.62"Image tag.
persistenceobject-SeaweedFS data storage configuration.
persistence.accessModeslist["ReadWriteOnce"]Specifies the access mode for the volume.
persistence.requestStoragestring"20Gi"The amount of storage to request.
persistence.storageClassNamestringnilName of the StorageClass to use.
resourcesobject-Resource requests and limits for the container.
resources.limitsobject-The maximum amount of resources the container is allowed to consume.
resources.limits.cpustring"3000m"CPU limit. Throttling occurs if the container exceeds this value.
resources.limits.memorystring"4Gi"Memory limit. If exceeded, the container may be terminated with an OOMKilled error.
resources.requestsobject-The minimum amount of resources the container is guaranteed.
resources.requests.cpustring"1000m"CPU request.
resources.requests.memorystring"2Gi"Memory request.