Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ replacements:
delimiter: string
index: int
create: bool
sourceValue: string
targets:
- select:
group: string
Expand All @@ -88,7 +89,8 @@ replacements:

| Field | Required| Description | Default |
| -----------: | :----: | ----------- | ---- |
| `source`| ✔️ | The source of the value |
| `source`| | The source of the value |
| `sourceValue`| | The literal value to use as source |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| `sourceValue`| | The literal value to use as source |
| `sourceValue`| | The literal value to use as the source value |

| `target`| ✔️ | The N fields to write the value to |
| `group` | | The group of the referent |
| `version`| | The version of the referent
Expand All @@ -108,6 +110,8 @@ replacements:
The source field is a selector that determines the source of the value by finding a
match to the specified GVKNN. All the subfields of `source` are optional,
but the source selection must resolve to a single resource.
Alternatively, you can specify a literal string value for the source directly
in the `sourceValue` field.

#### Targets
Replacements will be applied to all targets that are matched by the `select` field and
Expand Down
Loading