From eb6a2c8ec87ad1e95d62e11040f31099c08dc8e3 Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Mon, 29 Jan 2024 20:05:48 -0800 Subject: [PATCH] fix: fixes markdown --- tools/updater/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/updater/README.md b/tools/updater/README.md index 18b9d5199..7f203666e 100644 --- a/tools/updater/README.md +++ b/tools/updater/README.md @@ -142,15 +142,15 @@ $ updater scan . | updater update deployments -e dev /path/to/deployment-repo/bu The above command performs the following for each given override: -- Constructs a path to the bundle file: `///bundle.cue` -- Constructs a path to override: `bundle.instances..values.` -- Overrides the constructed value path within the constructed file path with the override value +* Constructs a path to the bundle file: `///bundle.cue` +* Constructs a path to override: `bundle.instances..values.` +* Overrides the constructed value path within the constructed file path with the override value Using the previous examples, it would perform the following: -- Constructs a path to the bundle file: `/path/to/deployment-repo/bundles/dev/app1/bundle.cue` -- Constructs a path to override: `bundle.instances.app1.values.server.image.tag` -- Overrides the constructed value path with `v0.2.0` +* Constructs a path to the bundle file: `/path/to/deployment-repo/bundles/dev/app1/bundle.cue` +* Constructs a path to override: `bundle.instances.app1.values.server.image.tag` +* Overrides the constructed value path with `v0.2.0` This setup allows updating arbitrary bundle files and their respective values by defining a single `deployment.yml` file at the root of a given application.