Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 3 additions & 1 deletion charts/gitops-runtime/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
!charts/
!charts/

.DS_Store
2 changes: 2 additions & 0 deletions charts/gitops-runtime/.helmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
tests/
ci/
test-values/

.DS_Store
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 Down Expand Up @@ -164,7 +168,6 @@ spec:
- file
- properties
type: object
minItems: 1
type: array
targetApplication:
properties:
Expand All @@ -183,11 +186,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 Down Expand Up @@ -215,7 +226,6 @@ spec:
- file
- properties
type: object
minItems: 1
type: array
targetApplication:
properties:
Expand All @@ -234,6 +244,9 @@ spec:
- namespace
type: object
required:
- prBranchName
- prDescription
- prTitle
- promotionValues
- targetApplication
type: object
Expand Down Expand Up @@ -373,10 +386,10 @@ spec:
items:
description: StepStatus
properties:
failureSummary:
type: string
getPromotionValues:
properties:
error:
type: string
phase:
description: GetPromotionValuesStatusPhase
enum:
Expand Down Expand Up @@ -450,8 +463,6 @@ spec:
minLength: 7
pattern: ^[A-Fa-f0-9]+$
type: string
error:
type: string
phase:
description: PromoteAppWithCommitPhase
enum:
Expand Down Expand Up @@ -480,8 +491,6 @@ spec:
- health
- sync
type: object
error:
type: string
phase:
description: PromoteAppWithPRPhase
enum:
Expand Down Expand Up @@ -562,7 +571,10 @@ spec:
- health
- sync
type: object
error:
commitSha:
maxLength: 40
minLength: 7
pattern: ^[A-Fa-f0-9]+$
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: aa271bd
tag: c409284
env:
GITOPS_OPERATOR_VERSION: 0.11.1
serviceAccount:
Expand Down
Loading