Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a1f82e5
add support for environment variables
Spirit-act Feb 8, 2024
5355331
improve env support
Spirit-act Feb 12, 2024
6299a21
fix markdown syntax errors
Spirit-act Feb 12, 2024
291e8fe
split config and key and fix redis remotecv deps
Spirit-act Feb 12, 2024
37d599f
add init Container to remotecv to wait for redis
Spirit-act Feb 14, 2024
797cabb
update README
Spirit-act Feb 14, 2024
4a0ac44
update github workflow helm-docs
Spirit-act Feb 14, 2024
248f226
allow manual release
Spirit-act Feb 14, 2024
bf5b696
support prod branch
Spirit-act Feb 14, 2024
54e7ffd
improve thumbor key handling
Spirit-act Apr 23, 2024
d3082b9
Automated Helm Documentation
Spirit-act Apr 23, 2024
7909873
Merge branch 'main' into prod
Spirit-act Apr 23, 2024
d7eca9b
Automated Helm Documentation
Spirit-act Apr 23, 2024
7749cd5
improve thumbor-remotecv initContainer
Spirit-act Jul 8, 2024
fd8c0b1
Automated Helm Documentation
Spirit-act Jul 8, 2024
8457ff9
Merge branch 'prod' into main
Spirit-act Jul 8, 2024
bbe9471
revert accidental override of source workflows
Spirit-act Jul 8, 2024
5f7da5f
add missing semicolon
Spirit-act Jul 8, 2024
d16697e
increase Chart version after change
Spirit-act Jul 8, 2024
83d5196
Automated Helm Documentation
Spirit-act Jul 8, 2024
4651ec7
use posix shell complient incrementation syntax
Spirit-act Oct 29, 2024
edf3b16
increment chart version
Spirit-act Oct 29, 2024
8557b1f
Automated Helm Documentation
Spirit-act Oct 29, 2024
da9ea93
update thumbor to 7.7.5
Spirit-act Apr 22, 2025
0f9329b
Automated Helm Documentation
Spirit-act Apr 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/chart-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Generate Helm Documentation
id: helmdocs
run: docker run --rm --volume "$(pwd):/helm-docs" -u $(id -u) jnorwood/helm-docs:v1.11.0
run: docker run --rm --volume "$(pwd):/helm-docs" -u $(id -u) jnorwood/helm-docs:v1.12.0

- uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# Thumbor Helm Chart

## ⚠️ Warning

This project is still under development. At the moment, we don't recommend usage in production.

## 🌈 Goal

This project aims to provide easy-to-use Helm charts for [Thumbor](https://github.com/thumbor/thumbor) and its components.
Currently, the only Helm chart available is for a vanilla Thumbor deployment.

## ⚙️ Usage

```bash
helm repo add thumbor https://thumbor.github.io/helm
helm install thumbor thumbor/thumbor
```

You can find the chart documentation under the chart folder:
- [Thumbor](https://github.com/thumbor/helm/tree/main/charts/thumbor)

- [Thumbor](https://github.com/thumbor/helm/tree/main/charts/thumbor)
8 changes: 4 additions & 4 deletions charts/thumbor/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
version: 2.2.1
version: 2.15.1
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.3.14
digest: sha256:5202ce038c813cc0d94a3d72fd59dd855852f55040002a5fae51115c81a00893
generated: "2022-12-12T01:28:53.673294+01:00"
version: 17.3.18
digest: sha256:f381af6391f3102a77eb1c03c37f22bda229ff17daa5644f4a5dd2a9a9902305
generated: "2024-02-14T12:14:13.356461414+01:00"
6 changes: 3 additions & 3 deletions charts/thumbor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: thumbor
description: Thumbor(https://github.com/thumbor/thumbor) Helm chart.
type: application
version: 0.1.0
appVersion: "7.1.1"
version: 1.1.0
appVersion: "7.7.5"
home: http://www.thumbor.org/
sources:
- https://github.com/thumbor/helm/tree/main/charts/thumbor
Expand All @@ -18,4 +18,4 @@ dependencies:
- name: redis
version: 17.3.x
repository: https://charts.bitnami.com/bitnami
condition: thumbor_config.queued_detector.enable_redis
condition: remotecv.installRedis
Loading