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

⏫ upgrade kube-prometheus-stack to 56.21.4 #209

Merged
merged 2 commits into from
Mar 12, 2024
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: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ module "monitoring" {
| <a name="input_oidc_components_client_secret"></a> [oidc\_components\_client\_secret](#input\_oidc\_components\_client\_secret) | OIDC ClientSecret used to authenticate to Grafana, AlertManager and Prometheus (oauth2-proxy) | `any` | n/a | yes |
| <a name="input_oidc_issuer_url"></a> [oidc\_issuer\_url](#input\_oidc\_issuer\_url) | Issuer URL used to authenticate to Grafana, AlertManager and Prometheus (oauth2-proxy) | `any` | n/a | yes |
| <a name="input_pagerduty_config"></a> [pagerduty\_config](#input\_pagerduty\_config) | Add PagerDuty key to allow integration with a PD service. | `any` | n/a | yes |
| <a name="input_prometheus_operator_crd_version"></a> [prometheus\_operator\_crd\_version](#input\_prometheus\_operator\_crd\_version) | The version of the prometheus operator crds matching the prometheus chart that is installed in monitoring module | `string` | `"v0.68.0"` | no |
| <a name="input_prometheus_operator_crd_version"></a> [prometheus\_operator\_crd\_version](#input\_prometheus\_operator\_crd\_version) | The version of the prometheus operator crds matching the prometheus chart that is installed in monitoring module | `string` | `"v0.71.0"` | no |
| <a name="input_team_name"></a> [team\_name](#input\_team\_name) | n/a | `string` | `"webops"` | no |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ resource "helm_release" "prometheus_operator_eks" {
repository = "https://prometheus-community.github.io/helm-charts"
chart = "kube-prometheus-stack"
namespace = kubernetes_namespace.monitoring.id
version = "52.1.0"
version = "56.21.4"
skip_crds = true # Crds are managed seperately using resource kubectl_manifest.prometheus_operator_crds
timeout = 600

Expand Down
3 changes: 2 additions & 1 deletion templates/prometheus-operator-eks.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ grafana:

sidecar:
image:
repository: quay.io/kiwigrid/k8s-sidecar
registry: quay.io
repository: kiwigrid/k8s-sidecar
alerts:
enabled: true
label: grafana_alert
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ variable "kibana_upstream" {
}

variable "prometheus_operator_crd_version" {
default = "v0.68.0"
default = "v0.71.0"
description = "The version of the prometheus operator crds matching the prometheus chart that is installed in monitoring module"
}

Expand Down
Loading