Skip to content
Merged
Show file tree
Hide file tree
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 @@ -137,6 +137,10 @@ spec:
type: object
promoteAppWithCommit:
properties:
commitDescription:
type: string
commitMessage:
type: string
promotionValues:
items:
properties:
Expand All @@ -147,15 +151,14 @@ spec:
properties:
items:
properties:
jsonPath:
path:
minLength: 1
pattern: ^\$[.\[\]'"0-9a-zA-Z_*?@()]*$
type: string
value:
minLength: 1
type: string
required:
- jsonPath
- path
- value
type: object
minItems: 1
Expand All @@ -182,11 +185,19 @@ spec:
- namespace
type: object
required:
- commitDescription
- commitMessage
- promotionValues
- targetApplication
type: object
promoteAppWithPR:
properties:
prBranchName:
type: string
prDescription:
type: string
prTitle:
type: string
promotionValues:
items:
properties:
Expand All @@ -197,15 +208,14 @@ spec:
properties:
items:
properties:
jsonPath:
path:
minLength: 1
pattern: ^\$[.\[\]'"0-9a-zA-Z_*?@()]*$
type: string
value:
minLength: 1
type: string
required:
- jsonPath
- path
- value
type: object
minItems: 1
Expand All @@ -232,6 +242,9 @@ spec:
- namespace
type: object
required:
- prBranchName
- prDescription
- prTitle
- promotionValues
- targetApplication
type: object
Expand Down Expand Up @@ -392,15 +405,14 @@ spec:
properties:
items:
properties:
jsonPath:
path:
minLength: 1
pattern: ^\$[.\[\]'"0-9a-zA-Z_*?@()]*$
type: string
value:
minLength: 1
type: string
required:
- jsonPath
- path
- value
type: object
minItems: 1
Expand Down Expand Up @@ -446,7 +458,7 @@ spec:
commitSha:
maxLength: 40
minLength: 7
pattern: ^[A-Fa-f0-9]+$
pattern: (^[A-Fa-f0-9]+$|^<any-commit>$)
type: string
phase:
description: PromoteAppWithCommitPhase
Expand Down Expand Up @@ -559,7 +571,7 @@ spec:
commitSha:
maxLength: 40
minLength: 7
pattern: ^[A-Fa-f0-9]+$
pattern: (^[A-Fa-f0-9]+$|^<any-commit>$)
type: string
phase:
description: VerifyAppPhase
Expand Down
2 changes: 1 addition & 1 deletion charts/gitops-runtime/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ gitops-operator:
# -- defaults
registry: quay.io
repository: codefresh/codefresh-gitops-operator
tag: c409284
tag: 18fcd09
env:
GITOPS_OPERATOR_VERSION: 0.11.1
serviceAccount:
Expand Down