mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-02 09:00:18 +01:00
working templatized helm chart
This commit is contained in:
parent
8ed1f7f296
commit
249948207e
1 changed files with 7 additions and 4 deletions
11
README.md
11
README.md
|
@ -209,26 +209,29 @@ Pass the params to the transfer.sh binary inside container by the *args*, not th
|
|||
docker run -p 8080:8080 dutchcoders/transfer.sh:latest --provider s3 --http-auth-user my-username --http-auth-pass somepassword --aws-access-key $AWS_ACCESS_KEY_ID --aws-secret-key $AWS_SECRET_ACCESS_KEY --bucket $AWS_TRANSFERSH_BUCKET --s3-region $AWS_TRANSFERSH_BUCKET_REGION
|
||||
```
|
||||
|
||||
## HOW TO? Kubernetes helm chart
|
||||
## Manual run inside kubernetes cluster
|
||||
|
||||
```sh
|
||||
# Kubernetes examples:
|
||||
# run locally
|
||||
kubectl run transfersh --restart=Never --image=dutchcoders/transfer.sh:latest -- --http-auth-user my-username --http-auth-pass somepassword --provider local --basedir=/tmp
|
||||
|
||||
# run with s3
|
||||
kubectl run transfersh --restart=Never --image=dutchcoders/transfer.sh:latest -- --http-auth-user my-username --http-auth-pass somepassword --provider s3 --aws-access-key $AWS_ACCESS_KEY_ID --aws-secret-key $AWS_SECRET_ACCESS_KEY --bucket $AWS_TRANSFERSH_BUCKET --s3-region $AWS_TRANSFERSH_BUCKET_REGION
|
||||
|
||||
# Manual process of Helm chart deployment
|
||||
# if your service is going to run behind nginx or any other proxy then update, proxy-path variable too in deployment.yaml, by-default it is blank.
|
||||
|
||||
# Example to manually create needed secrets for deployment params totally aligned with [Usage Params](https://github.com/dutchcoders/transfer.sh#usage-1)
|
||||
kubectl create secret generic transfersh-secrets --from-literal=HTTP_AUTH_USER=$HTTP_AUTH_USER --from-literal=HTTP_AUTH_PASS=$HTTP_AUTH_PASS --from-literal=AWS_ACCESS_KEY=$AWS_ACCESS_KEY --from-literal=AWS_SECRET_KEY=$AWS_SECRET_KEY --from-literal=BUCKET=$BUCKET --from-literal=S3_REGION=$S3_REGION --from-literal=PROXY_PATH=$PROXY_PATH --from-literal=PROVIDER=$PROVIDER
|
||||
|
||||
|
||||
```
|
||||
|
||||
|
||||
## HOW TO? Kubernetes helm chart
|
||||
|
||||
cd charts/transfersh
|
||||
helm install --debug --name=transfersh transfersh/
|
||||
|
||||
```
|
||||
|
||||
|
||||
## S3 Usage
|
||||
|
|
Loading…
Reference in a new issue