Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump sumologic-kubernetes-setup image to 3.6.0 and kube-state-metrics image to 2.7.0 #2857

Merged
merged 2 commits into from
Feb 9, 2023
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- chore: add support for Openshift 4.11 [#2848]
- feat(otelcol): add max size in batch processors [#2839]
- fix(logs): fix excluding logs by container, namespace, node, pod regex
- chore: bump sumologic-kubernetes-setup image to 3.6.0 and kube-state-metrics image to 2.7.0 [#2857]

[#2831]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/2831
[#2832]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/2832
[#2839]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/2839
[#2848]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/2848
[#2857]: https://github.com/SumoLogic/sumologic-kubernetes-collection/pull/2857
[Unreleased]: https://github.com/SumoLogic/sumologic-kubernetes-collection/compare/v3.0.0...main

## [v3.0.0]
Expand Down
3 changes: 2 additions & 1 deletion deploy/helm/sumologic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ The following table lists the configurable parameters of the Sumo Logic chart an
| `sumologic.setup.job.podLabels` | Additional labels for the setup Job pod. | `{}` |
| `sumologic.setup.job.podAnnotations` | Additional annotations for the setup Job pod. | `{}` |
| `sumologic.setup.job.image.repository` | Image repository for Sumo Logic setup job docker container. | `public.ecr.aws/sumologic/kubernetes-setup` |
| `sumologic.setup.job.image.tag` | Image tag for Sumo Logic setup job docker container. | `3.5.0` |
| `sumologic.setup.job.image.tag` | Image tag for Sumo Logic setup job docker container. | `3.6.0` |
| `sumologic.setup.job.image.pullPolicy` | Image pullPolicy for Sumo Logic docker container. | `IfNotPresent` |
| `sumologic.setup.job.nodeSelector` | Node selector for sumologic setup job. [See docs/best-practices.md for more information.](/docs/best-practices.md) | `{}` |
| `sumologic.setup.job.tolerations` | Add tolerations for the setup Job. | `[]` |
Expand Down Expand Up @@ -339,6 +339,7 @@ The following table lists the configurable parameters of the Sumo Logic chart an
| `kube-prometheus-stack.prometheus-node-exporter.resources` | Resource limits for node exporter. Uses sub-chart defaults. | `{"limits": {"cpu": "200m", "memory": "50Mi"}, "requests": {"cpu": "100m", "memory": "30Mi"}}` |
| `kube-prometheus-stack.prometheus-node-exporter.nodeSelector` | Node selector for prometheus node exporter. [See docs/best-practices.md for more information.](/docs/best-practices.md) | `{}` |
| `kube-prometheus-stack.kube-state-metrics.nodeSelector` | Node selector for kube-state-metrics. [See docs/best-practices.md for more information.](/docs/best-practices.md) | `{}` |
| `kube-prometheus-stack.kube-state-metrics.tag` | Tag for kube-state-metrics Docker image. | `v2.7.0` |
| `kube-prometheus-stack.additionalPrometheusRulesMap` | Custom recording or alerting rules to be deployed into the cluster | See [values.yaml] |
| `kube-prometheus-stack.commonLabels` | Labels to apply to all Kube Prometheus Stack resources | `{}` |
| `kube-prometheus-stack.coreDns.serviceMonitor.interval` | Core DNS metrics scrape interval. If not set, the Prometheus default scrape interval is used. | `Nil` |
Expand Down
7 changes: 6 additions & 1 deletion deploy/helm/sumologic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ sumologic:
job:
image:
repository: public.ecr.aws/sumologic/kubernetes-setup
tag: 3.5.0
tag: 3.6.0
pullPolicy: IfNotPresent
## Optionally specify an array of pullSecrets.
## They will be added to serviceaccount that is used for Sumo Logic's
Expand Down Expand Up @@ -1875,6 +1875,11 @@ kube-prometheus-stack:
# requests:
# cpu: 10m
# memory: 32Mi

aboguszewski-sumo marked this conversation as resolved.
Show resolved Hide resolved
## latest kube-prometheus-stack version that is supported on OpenShift 4.8-4.10
## uses version 2.6.0 of kube-state-metrics, but this version has some critical vulnerabilities,
## so we bump the image manually.
tag: "v2.7.0"
## Resource limits for prometheus node exporter
prometheus-node-exporter:
## Put here the new name if you want to override the full name used for Prometheus Node exporter components.
Expand Down
2 changes: 1 addition & 1 deletion tests/helm/setup/basic.output.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
defaultMode: 0777
containers:
- name: setup
image: public.ecr.aws/sumologic/kubernetes-setup:3.5.0
image: public.ecr.aws/sumologic/kubernetes-setup:3.6.0
imagePullPolicy: IfNotPresent
command: ["/etc/terraform/setup.sh"]
resources:
Expand Down