/minio-helm

Primary LanguageMustacheGNU Affero General Public License v3.0AGPL-3.0

minio-helm

Longhorn

bitnami

> k port-forward svc/minio :9001
> k view-secret minio --all

s3cmd --configure
cat ~/.s3cfg

  Access Key: longhorn-test-access-key
  Secret Key: longhorn-test-secret-key
  Default Region: us-east-1
  S3 Endpoint: localhost:9000
  DNS-style bucket+hostname:port template for accessing a bucket: localhost:9000
  Encryption password:
  Path to GPG program: /opt/homebrew/bin/gpg
  Use HTTPS protocol: True
  HTTP Proxy server name:
  HTTP Proxy server port: 0


$ s3cmd ls --no-check-certificate
2022-12-30 16:57  s3://backupbucket

MinIO nginx setup

    ignore_invalid_headers off;
    client_max_body_size 0;
    proxy_buffering off;
    proxy_request_buffering off;

nginx ingress

nginx configmap

data:
  ignore-invalid-headers: "true"
  proxy-body-size: "100m"
  proxy-buffering: "off"
  proxy-request-buffering: "off"

nginx annotation

nginx.ingress.kubernetes.io/proxy-body-size: "0"
nginx.ingress.kubernetes.io/proxy-buffering: "off"
nginx.ingress.kubernetes.io/proxy-request-buffering: "off"