Skip to content

Commit 351f984

Browse files
committed
Changelog and README fix; no more second copy of changelog
1 parent 451f131 commit 351f984

File tree

3 files changed

+21
-194
lines changed

3 files changed

+21
-194
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
## 1.0.0 (to be released)
1+
## 1.0.0 (2024-05-14)
22

33
* default imgproxy version: v3.28.0
44
* service account selecton bug fix
55

6-
### 🚨 Backward incompatible changes 🚨
6+
### 🚨 Backwards incompatible changes 🚨
77

88
* Remove all environment-specific values in favor of customizable env variables at `.Values.env.*`
99

Readme.md

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ To install imgproxy to your kubernetes cluster simply run:
3535
```shell
3636
helm repo add imgproxy https://helm.imgproxy.net/
3737

38-
# With Helm 3
3938
helm upgrade -i imgproxy imgproxy/imgproxy
40-
41-
# With Helm 2
42-
helm upgrade -i --name imgproxy imgproxy/imgproxy
4339
```
4440

41+
> [!IMPORTANT]
42+
> This readme shows documentation for chart versio 1.x.
43+
>
44+
> * For previous version see the [v0.9.0](https://github.com/imgproxy/imgproxy-helm/tree/v0.9.0) tag
45+
>
46+
4547
## Introduction
4648

4749
imgproxy can be used to provide a fast and secure way to replace all the image resizing code of your web application (like calling ImageMagick or GraphicsMagick, or using libraries), while also being able to resize everything on the fly, fast and easy. imgproxy is also indispensable when handling lots of image resizing, especially when images come from a remote source.
@@ -63,11 +65,7 @@ See [official README](https://github.com/imgproxy/imgproxy#imgproxy) for more.
6365
```shell
6466
helm repo add imgproxy https://helm.imgproxy.net/
6567

66-
# With Helm 3
6768
helm upgrade -i imgproxy imgproxy/imgproxy
68-
69-
# With Helm 2
70-
helm upgrade -i --name imgproxy imgproxy/imgproxy
7169
```
7270

7371
The command deploys imgproxy on the Kubernetes cluster in the default configuration. The [configuration section](#configuration) lists various ways to override default configuration during deployment.
@@ -89,7 +87,7 @@ Specify each parameter using the `--set key=value[,key=value]` argument to helm
8987
```shell
9088
helm upgrade -i imgproxy \
9189
--namespace imgproxy \
92-
--set image.tag=v2.10.0 \
90+
--set image.tag=v3.28.0 \
9391
imgproxy/imgproxy
9492
```
9593

@@ -99,7 +97,7 @@ The above command installs a specified version of imgproxy.
9997

10098
### Environment Variables
10199

102-
Use the `env` part of the values to set environment variables for the imgproxy server.
100+
Use the `env` part of the values to configuse imgproxy server itself.
103101
Check the [documentation](https://docs.imgproxy.net/configuration) for the list of supported variables.
104102

105103
```yaml
@@ -110,7 +108,17 @@ env:
110108
FOO: bar
111109
```
112110
113-
> Notice that the latest versions of application can support more variables, than listed in the `values.yaml`. You are free to add those values by yourself:
111+
### Additional secrets
112+
113+
If you want to manage your keys in a more secure manner prepare Secrets (via External Secrets Operator, Sealed Secrets, etc)
114+
115+
```yaml
116+
# values.yaml
117+
resources:
118+
addSecrets:
119+
- improxy-external-secrets
120+
```
121+
114122
115123
### Image
116124

imgproxy/README.md

Lines changed: 0 additions & 181 deletions
This file was deleted.

0 commit comments

Comments
 (0)