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] Updating various monitoring components #617

Merged
merged 2 commits into from
Mar 8, 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
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
# SAS Viya Monitoring for Kubernetes

## unreleased
## Unreleased
* **Overall**
* [CHANGE] Drop support for OpenShift 4.11; the minimum supported version of OpenShift is now 4.12.
* [FIX] Revised `samples/azure-deployment/README.md` to remove obsolete information and bring content up-to-date. (Fixes #612)

* **Metrics**
* [FIX] Set environment variable `MON_TLS_PATH_INGRESS` to ensure correct datasource connection between Grafana
and Promethues in [Azure Deployment sample](samples/azure-deployment). (Fixes #614)
* [UPGRADE] Kube-prometheus-stack Helm chart has been upgraded from version 54.0.1 to 56.6.2
* [UPGRADE] Prometheus Operator has been upgraded from version 0.69.1 to 0.71.2
* [UPGRADE] Prometheus has been upgraded from version 2.47.1 to 2.49.1
* [UPGRADE] Grafana has been upgraded from version 10.2.1 to 10.3.3
* [UPGRADE] Grafana Helm Chart has been upgraded from version 7.0.4 to 7.3.0
* [UPGRADE] K8s-sidecar has been upgraded from version 1.25.2 to 1.25.4
* [UPGRADE] Kube-state-metrics has been upgraded from version 2.10.0 to 2.10.1
* [UPGRADE] Pushgateway has been upgraded from version 1.6.2 to 1.7.0
* [UPGRADE] Pushgateway Helm Chart has been upgraded from version 2.4.2 to 2.6.0

* **Logging**
* [FIX] Corrected comments referencing OpenSearch connection information in `samples/generic-base/logging/user-values-es-exporter.yaml`
and `logging/user-values-es-exporter.yaml`.
* [FIX] Corrected typo in `logging/bin/deploy_fluentbit_azmonitor.sh` that prevented the script from executing properly.

* **Tracing**


## Version 1.2.22 (13FEB2024)
* **Overall**
* [TASK] Refactored how container image and Helm chart version information is handled to permit automatically generating this information from files. Note
Expand Down
22 changes: 11 additions & 11 deletions component_versions.env
Original file line number Diff line number Diff line change
Expand Up @@ -36,33 +36,33 @@ OSD_FULL_IMAGE="docker.io/opensearchproject/opensearch-dashboards:2.10.0"
#Grafana (when deployed on OpenShift)
OPENSHIFT_GRAFANA_CHART_REPO=grafana
OPENSHIFT_GRAFANA_CHART_NAME=grafana
OPENSHIFT_GRAFANA_CHART_VERSION=7.0.4
OPENSHIFT_GRAFANA_CHART_VERSION=7.3.0
OPENSHIFT_OAUTHPROXY_FULL_IMAGE="registry.redhat.io/openshift4/ose-oauth-proxy:latest"

#Grafana (everywhere)
GRAFANA_FULL_IMAGE="docker.io/grafana/grafana:10.2.1"
GRAFANA_SIDECAR_FULL_IMAGE="quay.io/kiwigrid/k8s-sidecar:1.25.2"
GRAFANA_FULL_IMAGE="docker.io/grafana/grafana:10.3.3"
GRAFANA_SIDECAR_FULL_IMAGE="quay.io/kiwigrid/k8s-sidecar:1.25.4"

#Kube-Prometheus Stack
KUBE_PROM_STACK_CHART_REPO=prometheus-community
KUBE_PROM_STACK_CHART_NAME=kube-prometheus-stack
KUBE_PROM_STACK_CHART_VERSION=54.0.1
KUBE_PROM_STACK_CHART_VERSION=56.6.2
ALERTMANAGER_FULL_IMAGE="quay.io/prometheus/alertmanager:v0.26.0"
ADMWEBHOOK_FULL_IMAGE="registry.k8s.io/ingress-nginx/kube-webhook-certgen:v20221220-controller-v1.5.1-58-g787ea74b6"
KSM_FULL_IMAGE="registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.10.0"
KSM_FULL_IMAGE="registry.k8s.io/kube-state-metrics/kube-state-metrics:v2.10.1"
NODEXPORT_FULL_IMAGE="quay.io/prometheus/node-exporter:v1.7.0"
PROMETHEUS_FULL_IMAGE="quay.io/prometheus/prometheus:v2.47.1"
PROMOP_FULL_IMAGE="quay.io/prometheus-operator/prometheus-operator:v0.69.1"
CONFIGRELOAD_FULL_IMAGE="quay.io/prometheus-operator/prometheus-config-reloader:v0.69.1"
PROMETHEUS_FULL_IMAGE="quay.io/prometheus/prometheus:v2.49.1"
PROMOP_FULL_IMAGE="quay.io/prometheus-operator/prometheus-operator:v0.71.2"
CONFIGRELOAD_FULL_IMAGE="quay.io/prometheus-operator/prometheus-config-reloader:v0.71.2"

#Pushgateway
PUSHGATEWAY_CHART_REPO=prometheus-community
PUSHGATEWAY_CHART_NAME=prometheus-pushgateway
PUSHGATEWAY_CHART_VERSION=2.4.2
PUSHGATEWAY_FULL_IMAGE="quay.io/prometheus/pushgateway:v1.6.2"
PUSHGATEWAY_CHART_VERSION=2.6.0
PUSHGATEWAY_FULL_IMAGE="quay.io/prometheus/pushgateway:v1.7.0"

#Prometheus Operator CRD
PROM_OPERATOR_CRD_VERSION=v0.69.1
PROM_OPERATOR_CRD_VERSION=v0.71.2

#Tempo
TEMPO_CHART_REPO=grafana
Expand Down
Loading