Skip to content

Commit 32bfcf3

Browse files

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.0.1](https://gitlab.opencode.de/bmi/opendesk/components/platform-development/charts/nginx-s3-gateway/compare/v1.0.0...v1.0.1) (2024-11-14)
2+
3+
4+
### Bug Fixes
5+
6+
* **nginx-s3-gateway:** Fix read-only issues ([1fc175b](https://gitlab.opencode.de/bmi/opendesk/components/platform-development/charts/nginx-s3-gateway/commit/1fc175bbe4abebb724ebf0cb8373eb3da2c79d75))
7+
18
# 1.0.0 (2024-11-14)
29

310

charts/nginx-s3-gateway/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ name: "nginx-s3-gateway"
1717
sources:
1818
- "https://gitlab.opencode.de/bmi/opendesk/components/platform-development/charts/nginx-s3-gateway"
1919
type: "application"
20-
version: "1.0.0"
20+
version: "1.0.1"
2121
...

charts/nginx-s3-gateway/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# nginx-s3-gateway
22

3-
![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
3+
![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
44

55
A Helm chart deploying NGINX S3 Caching Gateway
66

@@ -43,9 +43,9 @@ A Helm chart deploying NGINX S3 Caching Gateway
4343
| containerSecurityContext.capabilities | object | `{"drop":["ALL"]}` | Security capabilities for container. |
4444
| containerSecurityContext.enabled | bool | `true` | Enable security context. |
4545
| containerSecurityContext.readOnlyRootFilesystem | bool | `true` | Mounts the container's root filesystem as read-only. |
46-
| containerSecurityContext.runAsGroup | int | `1000` | Process group id. |
46+
| containerSecurityContext.runAsGroup | int | `101` | Process group id. |
4747
| containerSecurityContext.runAsNonRoot | bool | `true` | Run container as a user. |
48-
| containerSecurityContext.runAsUser | int | `1000` | Process user id. |
48+
| containerSecurityContext.runAsUser | int | `101` | Process user id. |
4949
| containerSecurityContext.seccompProfile.type | string | `"RuntimeDefault"` | Disallow custom Seccomp profile by setting it to RuntimeDefault. |
5050
| extraEnvVars | list | `[]` | Array with extra environment variables to add to containers. extraEnvVars: - name: FOO value: "bar" |
5151
| extraVolumeMounts | list | `[]` | Optionally specify an extra list of additional volumeMounts. |
@@ -79,7 +79,7 @@ A Helm chart deploying NGINX S3 Caching Gateway
7979
| podAnnotations | object | `{}` | Pod Annotations. Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ |
8080
| podLabels | object | `{}` | Pod Labels. Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ |
8181
| podSecurityContext.enabled | bool | `true` | Enable security context. |
82-
| podSecurityContext.fsGroup | int | `1000` | If specified, all processes of the container are also part of the supplementary group. |
82+
| podSecurityContext.fsGroup | int | `101` | If specified, all processes of the container are also part of the supplementary group. |
8383
| podSecurityContext.fsGroupChangePolicy | string | `"Always"` | Change ownership and permission of the volume before being exposed inside a Pod. |
8484
| readinessProbe.enabled | bool | `true` | Enables kubernetes ReadinessProbe. |
8585
| readinessProbe.failureThreshold | int | `10` | Number of failed executions until container is terminated. |
@@ -94,8 +94,8 @@ A Helm chart deploying NGINX S3 Caching Gateway
9494
| resources.requests.memory | string | `"128Mi"` | The number of RAM which has to be available on the scheduled node. |
9595
| service.annotations | object | `{}` | Additional custom annotations. |
9696
| service.enabled | bool | `true` | Enable kubernetes service creation. |
97-
| service.ports.gateway.containerPort | int | `80` | Internal port. |
98-
| service.ports.gateway.port | int | `80` | Accessible port. |
97+
| service.ports.gateway.containerPort | int | `8080` | Internal port. |
98+
| service.ports.gateway.port | int | `8080` | Accessible port. |
9999
| service.ports.gateway.protocol | string | `"TCP"` | service protocol. |
100100
| service.type | string | `"ClusterIP"` | Choose the kind of Service, one of "ClusterIP", "NodePort" or "LoadBalancer". |
101101
| serviceAccount.annotations | object | `{}` | Additional custom annotations for the ServiceAccount. |

0 commit comments

Comments
 (0)