From 59b00f6b966318a8bcb8fe9c8e494e111668f8df Mon Sep 17 00:00:00 2001 From: josill Date: Mon, 19 Jan 2026 16:36:02 +0200 Subject: [PATCH] init --- assets/code_example/docs/prologue/quickstart/updatecli.yaml | 2 +- content/en/docs/prologue/quick-start.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/code_example/docs/prologue/quickstart/updatecli.yaml b/assets/code_example/docs/prologue/quickstart/updatecli.yaml index 3cae645d9..5d1b5dec2 100644 --- a/assets/code_example/docs/prologue/quickstart/updatecli.yaml +++ b/assets/code_example/docs/prologue/quickstart/updatecli.yaml @@ -21,5 +21,5 @@ targets: name: Bump Jenkins Docker Image Tag kind: yaml spec: - key: container.tag + key: $.container.tag file: data.yaml diff --git a/content/en/docs/prologue/quick-start.adoc b/content/en/docs/prologue/quick-start.adoc index ea45f7a88..0a5139316 100644 --- a/content/en/docs/prologue/quick-start.adoc +++ b/content/en/docs/prologue/quick-start.adoc @@ -55,7 +55,7 @@ Updatecli needs at least one manifest to know what update pipeline to apply. In this manifest, we introduce three important concepts of an updatecli manifest. . A **Source** definition describes where a piece of information is coming from. In the current example, we're looking for the latest Jenkins weekly version. -. A **Target** definition describes what we want to update based on a *source* output. In our example, we want to update the key "container.tag" in the file "data.yaml" to the version retrieved from the source, the latest Jenkins weekly version. +. A **Target** definition describes what we want to update based on a *source* output. In our example, we want to update the key "$.container.tag" in the file "data.yaml" to the version retrieved from the source, the latest Jenkins weekly version. . A **Condition** definition defined conditions required to update the target. In this example, we want to test that the docker image "jenkinsci/jenkins:" exists on DockerHub. {{< btn-copy text="touch ./updatecli/updatecli.d/jenkins.yaml" >}}