Skip to content

Commit

Permalink
chore: upgrade nginx image to 1.25.2-alpine-sumo-1
Browse files Browse the repository at this point in the history
  • Loading branch information
swiatekm committed Nov 3, 2023
1 parent d20f080 commit f12509e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .changelog/3375.changed.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
chore: upgrade nginx image to 1.25.2-alpine-sumo-1
2 changes: 1 addition & 1 deletion deploy/helm/sumologic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ The following table lists the configurable parameters of the Sumo Logic chart an
| `sumologic.metrics.remoteWriteProxy.config.workerCountAutotune` | This feature autodetects how much CPU is assigned to the nginx instance and setsthe right amount of workers based on that. Disable to use the default of 8 workers. | `true` |
| `sumologic.metrics.remoteWriteProxy.config.enableAccessLogs` | Enable nginx access logs. | `false` |
| `sumologic.metrics.remoteWriteProxy.replicaCount` | Number of replicas in the remote write proxy deployment. | `3` |
| `sumologic.metrics.remoteWriteProxy.image` | Nginx docker image for the remote write proxy. | `{"repository": "public.ecr.aws/sumologic/nginx-unprivileged", "tag": "1.25.2-alpine", "pullPolicy": "IfNotPresent"}` |
| `sumologic.metrics.remoteWriteProxy.image` | Nginx docker image for the remote write proxy. | `{"repository": "public.ecr.aws/sumologic/nginx-unprivileged", "tag": "1.25.2-alpine-sumo-1", "pullPolicy": "IfNotPresent"}` |
| `sumologic.metrics.remoteWriteProxy.resources` | Resource requests and limits for the remote write proxy container. | `{"limits": {"cpu": "1000m", "memory": "256Mi"}, "requests": {"cpu": "100m", "memory": "128Mi"}}` |
| `sumologic.metrics.remoteWriteProxy.livenessProbe` | Liveness probe settings for the remote write proxy container. | `{"initialDelaySeconds": 30, "periodSeconds": 10, "timeoutSeconds": 5, "successThreshold": 1, "failureThreshold": 6}` |
| `sumologic.metrics.remoteWriteProxy.readinessProbe` | Readiness probe settings for the remote write proxy container. | `{"initialDelaySeconds": 5, "periodSeconds": 5, "timeoutSeconds": 3, "successThreshold": 1, "failureThreshold": 3}` |
Expand Down
4 changes: 3 additions & 1 deletion deploy/helm/sumologic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,9 @@ sumologic:
replicaCount: 3
image:
repository: public.ecr.aws/sumologic/nginx-unprivileged
tag: 1.25.2-alpine
## This is simply 1.25.2-alpine with a newer version of Alpine
## In the nginx repo, this a moving tag, so I've chosen to add a -sumo-1 suffix to indicate the change
tag: 1.25.2-alpine-sumo-1
pullPolicy: IfNotPresent
resources:
limits:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
securityContext: {}
containers:
- name: nginx
image: public.ecr.aws/sumologic/nginx-unprivileged:1.25.2-alpine
image: public.ecr.aws/sumologic/nginx-unprivileged:1.25.2-alpine-sumo-1
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
Expand Down

0 comments on commit f12509e

Please sign in to comment.