2022-11-15 21:29:52 +00:00
|
|
|
---
|
2022-12-27 13:56:25 +00:00
|
|
|
# Ingress configuration.
|
|
|
|
ingress:
|
|
|
|
# 'enabled' will deploy an ingress resource to the cluster if set to `true`.
|
|
|
|
enabled: true
|
|
|
|
|
|
|
|
# Use cert-manager
|
|
|
|
useCertManager: true
|
|
|
|
# cert-manager namespace
|
|
|
|
certManagerNamespace: cert-manager
|
|
|
|
# The name of the predefined TLS issuer to use (s3gw-issuer, s3gw-letsencrypt-issuer).
|
|
|
|
tlsIssuer: "s3gw-issuer"
|
|
|
|
# The email address you are planning to use for getting notifications
|
|
|
|
# about your certificates. Fill this if you are using the 's3gw-letsencrypt-issuer'.
|
|
|
|
email: "mail@example.com"
|
|
|
|
|
|
|
|
# When not using cert-manager you have to manually specify
|
|
|
|
# TLS certificate/key pairs for all the services.
|
|
|
|
# Specify values in Base64 encoded in one line.
|
|
|
|
tls:
|
|
|
|
publicDomain:
|
|
|
|
crt: ""
|
|
|
|
key: ""
|
|
|
|
privateDomain:
|
|
|
|
crt: ""
|
|
|
|
key: ""
|
|
|
|
ui:
|
|
|
|
publicDomain:
|
|
|
|
crt: ""
|
|
|
|
key: ""
|
2022-11-15 21:29:52 +00:00
|
|
|
|
|
|
|
# S3 user interface
|
|
|
|
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
# Note, the UI will not be able to access the RGW AdminOps API when
|
|
|
|
# using HTTPS and self-signed certificates because of CORS issues.
|
|
|
|
# To workaround that, please open the URL https://<HOSTNAME> in the
|
|
|
|
# browser and accept the SSL certificate before accessing the UI
|
|
|
|
# via https://<UI-HOSTNAME>.
|
|
|
|
# Check https://github.com/aquarist-labs/s3gw/issues/31 to get more
|
|
|
|
# information about the CORS issues.
|
|
|
|
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
ui:
|
|
|
|
# 'enabled' will deploy the S3GW user interface if set to `true`.
|
|
|
|
enabled: true
|
2022-12-27 13:56:25 +00:00
|
|
|
# 'serviceName' is the service name of the S3GW user interface.
|
|
|
|
serviceName: "s3gw-ui"
|
|
|
|
# 'publicDomain' is the public domain of the UI Service used by the Ingress.
|
|
|
|
publicDomain: "fe.127.0.0.1.omg.howdoi.website"
|
2022-11-15 21:29:52 +00:00
|
|
|
|
|
|
|
# --- Developer Options ---
|
|
|
|
# imageName: "aquarist-labs/s3gw-ui"
|
2022-12-27 13:56:25 +00:00
|
|
|
# imageTag: "v0.0.0"
|
2022-11-15 21:29:52 +00:00
|
|
|
|
2022-12-27 13:56:25 +00:00
|
|
|
# S3 Service
|
|
|
|
#
|
|
|
|
# 'serviceName' is the service name of S3GW.
|
|
|
|
serviceName: "s3gw"
|
|
|
|
# 'accessKey' is the S3 Access Key
|
|
|
|
accessKey: "test"
|
|
|
|
# 'secretKey' is the S3 Secret Key
|
|
|
|
secretKey: "test"
|
|
|
|
# 'publicDomain' is the public domain of S3GW used by the Ingress
|
|
|
|
publicDomain: "be.127.0.0.1.omg.howdoi.website"
|
|
|
|
# 'privateDomain' is the private domain of S3GW used inside the Kubernetes cluster
|
|
|
|
privateDomain: "svc.cluster.local"
|
2022-11-15 21:29:52 +00:00
|
|
|
|
|
|
|
# Backing storage.
|
|
|
|
# Name the storage class to use. If create is true, an opinionated storage class
|
|
|
|
# will be created. This assumes the Longhorn storage driver is installed.
|
|
|
|
storageSize: 10Gi
|
|
|
|
storageClass:
|
|
|
|
name: "longhorn-single"
|
|
|
|
create: true
|
|
|
|
# For testing only:
|
|
|
|
# local: false
|
|
|
|
# localPath: /var/lib/local-storage
|
|
|
|
|
|
|
|
# --- Developer Options ---
|
|
|
|
#
|
|
|
|
# Image settings:
|
2022-12-27 13:56:25 +00:00
|
|
|
# imageRegistry: "quay.io"
|
2022-11-15 21:29:52 +00:00
|
|
|
# imagePullPolicy: "Always"
|
2022-12-27 13:56:25 +00:00
|
|
|
# imageName: "s3gw/s3gw"
|
|
|
|
# imageTag: "v0.0.0"
|
2022-11-15 21:29:52 +00:00
|
|
|
# imageCredentials:
|
|
|
|
# username: foo
|
|
|
|
# password: bar
|
|
|
|
# email: foobar@suse.com
|
2022-12-27 13:56:25 +00:00
|
|
|
|
|
|
|
# s3gw pod log level.
|
|
|
|
# Valid values are positive integers starting from 0.
|
|
|
|
# Higher values are more verbose.
|
|
|
|
logLevel: "1"
|