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

PMM-12488 update VictoriaMetrics to v1.93.4 #639

Merged
merged 1 commit into from
Sep 15, 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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ pmm-tests/tls-ssl-setup/postgres/setup*
pmm-tests/setup_pgsql_pgsm_*.log
pmm-tests/vendor/*

ps_socket*
ps_socket*
.DS_Store
4 changes: 2 additions & 2 deletions pmm-tests/check_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def main():
verify_command('sudo supervisorctl status | grep vmalert | grep RUNNING')
# verify_command('grafana cli plugins ls | grep "vertamedia-clickhouse-datasource @ 2.4.4"')
# verify_command('grafana cli plugins ls | grep alexanderzobnin-zabbix-app')
verify_command('sudo victoriametrics --version | grep v1.93.1')
verify_command('sudo victoriametrics --version | grep v1.93.4')
else:
pmm_server_docker_container = subprocess.getoutput("docker ps --format \"table {{.ID}}\t{{.Image}}\t{{"
".Names}}\" | grep 'pmm-server' | awk '{print $3}'")
Expand Down Expand Up @@ -92,7 +92,7 @@ def main():
f"docker exec {pmm_server_docker_container} supervisorctl status | grep vmalert | grep "
f"RUNNING")
verify_command(
f"docker exec {pmm_server_docker_container} victoriametrics --version | grep v1.93.1")
f"docker exec {pmm_server_docker_container} victoriametrics --version | grep v1.93.4")

docker_version = os.getenv("DOCKER_VERSION")
do_docker_way = os.getenv("PERFORM_DOCKER_WAY_UPGRADE")
Expand Down
Loading