Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.1 (2026-03-13)

* PR #219: Fix `ServiceAccount` creation logic (@Vonmaterhorn)

## 1.1.0 (2025-09-29)

* PR #211: Add support for using existing PriorityClass (@dibaro)
Expand Down
2 changes: 1 addition & 1 deletion imgproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
description: A fast and secure standalone server for resizing and converting remote images. The main principles of imgproxy are simplicity, speed, and security.
name: imgproxy
icon: https://cdn.rawgit.com/imgproxy/imgproxy/master/logo.svg
version: 1.1.0
version: 1.1.1
appVersion: 3.30.0
keywords:
- imgproxy
Expand Down
2 changes: 1 addition & 1 deletion imgproxy/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Template to decide if the serviceAccount must be built
{{- if (and $useExistingName $useIamRole) -}}
{{- fail "Cannot add IAM Role authentication to the external service account (check .resources.serviceAccount)" -}}
{{- end -}}
{{- (not $useExistingName | and (or $useAnnotations $useIamRole)) }}
{{- (not $useExistingName) }}
{{- end }}
{{- end }}

Expand Down