Skip to content

Commit

Permalink
refactor: allow empty path
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianKramm committed Aug 22, 2024
1 parent 7cf05e0 commit 1ba1f09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions chart/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3093,10 +3093,7 @@
}
},
"additionalProperties": false,
"type": "object",
"required": [
"path"
]
"type": "object"
},
"TranslatePatchExpression": {
"oneOf": [
Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ type SyncToHostCustomResourceDefinition struct {

type TranslatePatch struct {
// Path is the path within the patch to target. If the path is not found within the patch, the patch is not applied.
Path string `json:"path,omitempty" jsonschema:"required"`
Path string `json:"path,omitempty"`

// Expression transforms the value according to the given JavaScript expression.
Expression *TranslatePatchExpression `json:"expression,omitempty" jsonschema:"oneof_required=expression"`
Expand Down

0 comments on commit 1ba1f09

Please sign in to comment.