Skip to content

Commit

Permalink
feat: Add s3-proxy chart 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyno-zeta committed Jul 5, 2021
1 parent 2c26654 commit 078f20b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/s3-proxy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: 2.1.0
appVersion: 2.4.0
description: A Helm chart for Kubernetes to deploy S3-Proxy
home: https://github.com/oxyno-zeta/s3-proxy
maintainers:
Expand All @@ -8,4 +8,4 @@ maintainers:
name: s3-proxy
sources:
- https://github.com/oxyno-zeta/s3-proxy
version: 1.3.1
version: 1.4.0
42 changes: 36 additions & 6 deletions charts/s3-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replicaCount: 1

image:
repository: oxynozeta/s3-proxy
tag: 2.1.0
tag: 2.4.0
pullPolicy: IfNotPresent

nameOverride: ""
Expand Down Expand Up @@ -71,16 +71,17 @@ config: |-
# # Log format
# format: json
# Template configurations
# template:
# templates:
# badRequest: templates/bad-request.tpl
# folderList: templates/folder-list.tpl
# forbidden: templates/forbidden.tpl
# internalServerError: templates/internal-server-error.tpl
# notFound: templates/not-found.tpl
# targetList: templates/target-list.tpl
# unauthorized: templates/unauthorized.tpl
# Authentication
# auth:
# Authentication Providers
# authProviders:
# oidc:
# provider1:
# clientID: client-id
Expand All @@ -102,6 +103,7 @@ config: |-
# basic:
# provider2:
# realm: My Basic Auth Realm
# List targets feature
# This will generate a webpage with list of targets with links using targetList template
# listTargets:
Expand Down Expand Up @@ -129,14 +131,15 @@ config: |-
# # OIDC section for access filter
# oidc:
# # NOTE: This list can be empty ([]) for authentication only and no group filter
# authorizationAccesses: # Authorization accesses : groups or email
# authorizationAccesses: # Authorization accesses : groups or email or regexp
# - group: devops_users
# # Basic authentication section
# basic:
# credentials:
# - user: user1
# password:
# path: password1-in-file
# Targets
targets:
- name: first-bucket
Expand Down Expand Up @@ -164,7 +167,7 @@ config: |-
# # OIDC section for access filter
# oidc:
# # NOTE: This list can be empty ([]) for authentication only and no group filter
# authorizationAccesses: # Authorization accesses : groups or email
# authorizationAccesses: # Authorization accesses : groups or email or regexp
# - group: specific_users
# # A Path must be declared for a resource filtering (a wildcard can be added to match every sub path)
# - path: /directory1/*
Expand Down Expand Up @@ -207,12 +210,39 @@ config: |-
# DELETE:
# # Will allow DELETE requests
# enabled: true
## Target custom templates
# templates:
# # Folder list template
# folderList:
# inBucket: false
# path: ""
# # Not found template
# notFound:
# inBucket: false
# path: ""
# # Internal server error template
# internalServerError:
# inBucket: false
# path: ""
# # Forbidden template
# forbidden:
# inBucket: false
# path: ""
# # Unauthorized template
# unauthorized:
# inBucket: false
# path: ""
# # BadRequest template
# badRequest:
# inBucket: false
# path: ""
## Bucket configuration
bucket:
name: super-bucket
prefix:
region: eu-west-1
s3Endpoint:
disableSSL: false
# credentials:
# accessKey:
# env: AWS_ACCESS_KEY_ID
Expand Down

0 comments on commit 078f20b

Please sign in to comment.