You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+19-11Lines changed: 19 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,13 +35,15 @@ To install imgproxy to your kubernetes cluster simply run:
35
35
```shell
36
36
helm repo add imgproxy https://helm.imgproxy.net/
37
37
38
-
# With Helm 3
39
38
helm upgrade -i imgproxy imgproxy/imgproxy
40
-
41
-
# With Helm 2
42
-
helm upgrade -i --name imgproxy imgproxy/imgproxy
43
39
```
44
40
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
+
45
47
## Introduction
46
48
47
49
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.
63
65
```shell
64
66
helm repo add imgproxy https://helm.imgproxy.net/
65
67
66
-
# With Helm 3
67
68
helm upgrade -i imgproxy imgproxy/imgproxy
68
-
69
-
# With Helm 2
70
-
helm upgrade -i --name imgproxy imgproxy/imgproxy
71
69
```
72
70
73
71
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
89
87
```shell
90
88
helm upgrade -i imgproxy \
91
89
--namespace imgproxy \
92
-
--set image.tag=v2.10.0 \
90
+
--set image.tag=v3.28.0 \
93
91
imgproxy/imgproxy
94
92
```
95
93
@@ -99,7 +97,7 @@ The above command installs a specified version of imgproxy.
99
97
100
98
### Environment Variables
101
99
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.
103
101
Check the [documentation](https://docs.imgproxy.net/configuration) for the list of supported variables.
104
102
105
103
```yaml
@@ -110,7 +108,17 @@ env:
110
108
FOO: bar
111
109
```
112
110
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)
0 commit comments