From f8ae9c5ba9bc44b2864689d5457283493aa0c146 Mon Sep 17 00:00:00 2001 From: Eric Degenetais Date: Tue, 10 Sep 2024 16:52:05 +0200 Subject: [PATCH 1/2] Explain how to test non default git references in dev. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index ad2f212..9d2e628 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,14 @@ A suite of deployment scripts for the many components (message broker, DBs, prometheus, alertmanager, etc..) that make up the ProSanteConnect ecosystem +## Test in dev instances + +To avoid confusion, waypoint projects should be left to point to their environement branch. +However, to test a specific version in development, another reference may be deployed by adding `-remote-source=ref=` +to the `waypoint up` command. For example, to test main in developement : + +`waypoint up -local=false -remote-source=ref=main` + ## Distribution history This ecosystem uses many independant components, some of which live an independant life in distinct repositories. From fa1a075de2734deb5dd5b9d30c2d0bb0e290da61 Mon Sep 17 00:00:00 2001 From: Eric Degenetais Date: Mon, 14 Oct 2024 10:20:52 +0200 Subject: [PATCH 2/2] Replacing directly by the instance name to make things clear. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d2e628..25b4ccd 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ A suite of deployment scripts for the many components (message broker, DBs, prom ## Test in dev instances To avoid confusion, waypoint projects should be left to point to their environement branch. -However, to test a specific version in development, another reference may be deployed by adding `-remote-source=ref=` +However, to test a specific version in the dev instance, +another reference may be deployed by adding `-remote-source=ref=` to the `waypoint up` command. For example, to test main in developement : `waypoint up -local=false -remote-source=ref=main`