Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 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
ec03b55
upgrade thumbor to 7.7.7
Spirit-act Nov 20, 2025
0d5918b
Automated Helm Documentation
Spirit-act Nov 20, 2025
2dad567
forgot to increment chart version
Spirit-act Nov 20, 2025
f19b856
Automated Helm Documentation
Spirit-act Nov 20, 2025
68ea70e
update thumbor version and redis dependency
Spirit-act Jun 22, 2026
fb0e0df
Automated Helm Documentation
Spirit-act Jun 22, 2026
5defd42
update pipeline versions
Spirit-act Jun 22, 2026
bf06247
update to major version because of redis
Spirit-act Jun 22, 2026
4968c94
Automated Helm Documentation
Spirit-act Jun 22, 2026
7a3983d
adjust pipeline helm version
Spirit-act Jun 22, 2026
0988409
Automated Helm Documentation
Spirit-act Jun 22, 2026
0b2723e
allow manual trigger of pipeline
Spirit-act Jun 22, 2026
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
3 changes: 2 additions & 1 deletion .github/workflows/chart-docs.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Update Charts docs

on:
workflow_dispatch:
push:
branches:
- "main"
Expand All @@ -21,7 +22,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
9 changes: 5 additions & 4 deletions .github/workflows/chart-release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Release Charts

on:
workflow_dispatch:
push:
branches:
- main
Expand All @@ -14,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -24,9 +25,9 @@ jobs:
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"

- name: Install Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@v5
with:
version: v3.10.0
version: v4.2.2

- name: Add repositories
run: |
Expand All @@ -35,7 +36,7 @@ jobs:
done

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.4.1
uses: helm/chart-releaser-action@v1.7.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: true
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.40.0
- 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: 27.0.10
digest: sha256:a97f2b873b488dbb61146c9e9f1a1ccf4a756f652f26bd8c2c64782a0629fa2a
generated: "2026-06-22T11:40:44.398190914+02:00"
8 changes: 4 additions & 4 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: 2.0.1
appVersion: "7.8.0"
home: http://www.thumbor.org/
sources:
- https://github.com/thumbor/helm/tree/main/charts/thumbor
Expand All @@ -16,6 +16,6 @@ dependencies:
version: 2.x.x
repository: https://charts.bitnami.com/bitnami
- name: redis
version: 17.3.x
version: 27.0.x
repository: https://charts.bitnami.com/bitnami
condition: thumbor_config.queued_detector.enable_redis
condition: remotecv.installRedis
Loading