16 lines
517 B
YAML
16 lines
517 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: audio-streamer-config
|
|
data:
|
|
S3_BUCKET: "zik"
|
|
AWS_REGION: "us-east-1"
|
|
# If using MinIO or a custom S3 endpoint, set S3_ENDPOINT, otherwise leave blank
|
|
S3_ENDPOINT: "http://minio.minio.svc.cluster.local:9000"
|
|
# S3_ENDPOINT: "https://api-data.squareserver.net"
|
|
# For MinIO, set to "true"; for AWS S3, leave empty or "false"
|
|
S3_FORCE_PATH_STYLE: "true"
|
|
# Optional object key prefix inside the bucket (e.g., 'current')
|
|
S3_PREFIX: "current"
|
|
PORT: "3000"
|