From 7301a282a5e8334fe7563a12e4fe9185f8faa798 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Thu, 13 Feb 2025 10:19:34 -0500 Subject: [PATCH] 22489: Update top comment on install-test-env.yml Now that this playbook builds Jenkins images, it's no longer a prototype. Revise these comments with up-to-date information. Refs #22489. Arvados-DCO-1.1-Signed-off-by: Brett Smith --- tools/ansible/install-test-env.yml | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/tools/ansible/install-test-env.yml b/tools/ansible/install-test-env.yml index 551aa33d25..0890317c11 100644 --- a/tools/ansible/install-test-env.yml +++ b/tools/ansible/install-test-env.yml @@ -4,28 +4,18 @@ # # install-test-env.yml - Ansible playbook to set up a host to run Arvados tests # -# THIS IS A PROTOTYPE - NOT FULLY TESTED. -# The goal is you should be able to run this playbook on a host, clone the -# Arvados source, and run `build/run-tests.sh`. It might not be 100% of the -# way there but what's currently here gets the majority of tests passing on -# Debian 12. +# After you run this playbook on a host, you should be able to clone the +# Arvados git repository and run `build/run-tests.sh`. +# As of February 2025 this has been tested to work on Debian 11 and Debian 12. +# A few tests fail on Debian 12 because they haven't been adapted to newer +# software yet. # # In order to use this playbook, you must write an Arvados `config.yml` with -# PostgreSQL connection details for the `zzzzz` cluster, like so: -# -# Clusters: -# zzzzz: -# PostgreSQL: -# Connection: -# host: localhost -# port: "5432" -# dbname: arvados_test -# user: arvados_test -# password: insecure_arvados_test -# -# You can edit `dbname`, `user`, and `password` to taste. -# Pass the path of this file to `ansible-playbook` with -# `-e arvados_config=config.yml`. +# PostgreSQL connection details for the `zzzzz` cluster. +# `files/default-test-config.yml` has the default credentials used by tests. +# You can copy that file and edit `dbname`, `user`, and `password` to taste. +# Pass the path of your file to `ansible-playbook` with +# `-e arvados_config_file=config.yml`. - name: Load Arvados configuration hosts: all -- 2.39.5