Skip to content

Commit

Permalink
chore: run codegen
Browse files Browse the repository at this point in the history
Signed-off-by: Hidde Beydals <[email protected]>
  • Loading branch information
hiddeco committed Dec 13, 2024
1 parent 4261f9e commit 3b8f9c6
Show file tree
Hide file tree
Showing 12 changed files with 753 additions and 453 deletions.
911 changes: 500 additions & 411 deletions api/v1alpha1/generated.pb.go

Large diffs are not rendered by default.

17 changes: 15 additions & 2 deletions api/v1alpha1/generated.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 17 additions & 4 deletions api/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,32 @@ spec:
See https://docs.kargo.io/references/expression-language for details.
x-kubernetes-preserve-unknown-fields: true
inputs:
additionalProperties:
type: string
description: |-
Inputs is a map of inputs that can used to parameterize the execution
Inputs is a list of inputs that can used to parameterize the execution
of the PromotionStep and can be referenced by expressions in the Config.
When a PromotionStep is inflated from a PromotionTask, the inputs
specified in the PromotionTask are set based on the inputs specified
in the Config of the PromotionStep that references the PromotionTask.
type: object
items:
description: |-
PromotionInput describes a single input value for a PromotionStep that may
be referenced by expressions in the step.
properties:
name:
description: Name is the name of the input to which the
value is assigned.
minLength: 1
pattern: ^[a-zA-Z_]\w*$
type: string
value:
description: Value is the input value.
type: string
required:
- name
- value
type: object
type: array
retry:
description: Retry is the retry policy for this step.
properties:
Expand Down
24 changes: 20 additions & 4 deletions charts/kargo/resources/crds/kargo.akuity.io_promotions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,16 +99,32 @@ spec:
See https://docs.kargo.io/references/expression-language for details.
x-kubernetes-preserve-unknown-fields: true
inputs:
additionalProperties:
type: string
description: |-
Inputs is a map of inputs that can used to parameterize the execution
Inputs is a list of inputs that can used to parameterize the execution
of the PromotionStep and can be referenced by expressions in the Config.
When a PromotionStep is inflated from a PromotionTask, the inputs
specified in the PromotionTask are set based on the inputs specified
in the Config of the PromotionStep that references the PromotionTask.
type: object
items:
description: |-
PromotionInput describes a single input value for a PromotionStep that may
be referenced by expressions in the step.
properties:
name:
description: Name is the name of the input to which the
value is assigned.
minLength: 1
pattern: ^[a-zA-Z_]\w*$
type: string
value:
description: Value is the input value.
type: string
required:
- name
- value
type: object
type: array
retry:
description: Retry is the retry policy for this step.
properties:
Expand Down
24 changes: 20 additions & 4 deletions charts/kargo/resources/crds/kargo.akuity.io_promotiontasks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,32 @@ spec:
See https://docs.kargo.io/references/expression-language for details.
x-kubernetes-preserve-unknown-fields: true
inputs:
additionalProperties:
type: string
description: |-
Inputs is a map of inputs that can used to parameterize the execution
Inputs is a list of inputs that can used to parameterize the execution
of the PromotionStep and can be referenced by expressions in the Config.
When a PromotionStep is inflated from a PromotionTask, the inputs
specified in the PromotionTask are set based on the inputs specified
in the Config of the PromotionStep that references the PromotionTask.
type: object
items:
description: |-
PromotionInput describes a single input value for a PromotionStep that may
be referenced by expressions in the step.
properties:
name:
description: Name is the name of the input to which the
value is assigned.
minLength: 1
pattern: ^[a-zA-Z_]\w*$
type: string
value:
description: Value is the input value.
type: string
required:
- name
- value
type: object
type: array
retry:
description: Retry is the retry policy for this step.
properties:
Expand Down
24 changes: 20 additions & 4 deletions charts/kargo/resources/crds/kargo.akuity.io_stages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,32 @@ spec:
See https://docs.kargo.io/references/expression-language for details.
x-kubernetes-preserve-unknown-fields: true
inputs:
additionalProperties:
type: string
description: |-
Inputs is a map of inputs that can used to parameterize the execution
Inputs is a list of inputs that can used to parameterize the execution
of the PromotionStep and can be referenced by expressions in the Config.
When a PromotionStep is inflated from a PromotionTask, the inputs
specified in the PromotionTask are set based on the inputs specified
in the Config of the PromotionStep that references the PromotionTask.
type: object
items:
description: |-
PromotionInput describes a single input value for a PromotionStep that may
be referenced by expressions in the step.
properties:
name:
description: Name is the name of the input to
which the value is assigned.
minLength: 1
pattern: ^[a-zA-Z_]\w*$
type: string
value:
description: Value is the input value.
type: string
required:
- name
- value
type: object
type: array
retry:
description: Retry is the retry policy for this step.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,28 @@
"x-kubernetes-preserve-unknown-fields": true
},
"inputs": {
"additionalProperties": {
"type": "string"
"description": "Inputs is a list of inputs that can used to parameterize the execution\nof the PromotionStep and can be referenced by expressions in the Config.\n\nWhen a PromotionStep is inflated from a PromotionTask, the inputs\nspecified in the PromotionTask are set based on the inputs specified\nin the Config of the PromotionStep that references the PromotionTask.",
"items": {
"description": "PromotionInput describes a single input value for a PromotionStep that may\nbe referenced by expressions in the step.",
"properties": {
"name": {
"description": "Name is the name of the input to which the value is assigned.",
"minLength": 1,
"pattern": "^[a-zA-Z_]\\w*$",
"type": "string"
},
"value": {
"description": "Value is the input value.",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"description": "Inputs is a map of inputs that can used to parameterize the execution\nof the PromotionStep and can be referenced by expressions in the Config.\n\nWhen a PromotionStep is inflated from a PromotionTask, the inputs\nspecified in the PromotionTask are set based on the inputs specified\nin the Config of the PromotionStep that references the PromotionTask.",
"type": "object"
"type": "array"
},
"retry": {
"description": "Retry is the retry policy for this step.",
Expand Down
25 changes: 21 additions & 4 deletions ui/src/gen/schema/promotions.kargo.akuity.io_v1alpha1.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,28 @@
"x-kubernetes-preserve-unknown-fields": true
},
"inputs": {
"additionalProperties": {
"type": "string"
"description": "Inputs is a list of inputs that can used to parameterize the execution\nof the PromotionStep and can be referenced by expressions in the Config.\n\nWhen a PromotionStep is inflated from a PromotionTask, the inputs\nspecified in the PromotionTask are set based on the inputs specified\nin the Config of the PromotionStep that references the PromotionTask.",
"items": {
"description": "PromotionInput describes a single input value for a PromotionStep that may\nbe referenced by expressions in the step.",
"properties": {
"name": {
"description": "Name is the name of the input to which the value is assigned.",
"minLength": 1,
"pattern": "^[a-zA-Z_]\\w*$",
"type": "string"
},
"value": {
"description": "Value is the input value.",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"description": "Inputs is a map of inputs that can used to parameterize the execution\nof the PromotionStep and can be referenced by expressions in the Config.\n\nWhen a PromotionStep is inflated from a PromotionTask, the inputs\nspecified in the PromotionTask are set based on the inputs specified\nin the Config of the PromotionStep that references the PromotionTask.",
"type": "object"
"type": "array"
},
"retry": {
"description": "Retry is the retry policy for this step.",
Expand Down
25 changes: 21 additions & 4 deletions ui/src/gen/schema/promotiontasks.kargo.akuity.io_v1alpha1.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,28 @@
"x-kubernetes-preserve-unknown-fields": true
},
"inputs": {
"additionalProperties": {
"type": "string"
"description": "Inputs is a list of inputs that can used to parameterize the execution\nof the PromotionStep and can be referenced by expressions in the Config.\n\nWhen a PromotionStep is inflated from a PromotionTask, the inputs\nspecified in the PromotionTask are set based on the inputs specified\nin the Config of the PromotionStep that references the PromotionTask.",
"items": {
"description": "PromotionInput describes a single input value for a PromotionStep that may\nbe referenced by expressions in the step.",
"properties": {
"name": {
"description": "Name is the name of the input to which the value is assigned.",
"minLength": 1,
"pattern": "^[a-zA-Z_]\\w*$",
"type": "string"
},
"value": {
"description": "Value is the input value.",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"description": "Inputs is a map of inputs that can used to parameterize the execution\nof the PromotionStep and can be referenced by expressions in the Config.\n\nWhen a PromotionStep is inflated from a PromotionTask, the inputs\nspecified in the PromotionTask are set based on the inputs specified\nin the Config of the PromotionStep that references the PromotionTask.",
"type": "object"
"type": "array"
},
"retry": {
"description": "Retry is the retry policy for this step.",
Expand Down
25 changes: 21 additions & 4 deletions ui/src/gen/schema/stages.kargo.akuity.io_v1alpha1.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,28 @@
"x-kubernetes-preserve-unknown-fields": true
},
"inputs": {
"additionalProperties": {
"type": "string"
"description": "Inputs is a list of inputs that can used to parameterize the execution\nof the PromotionStep and can be referenced by expressions in the Config.\n\nWhen a PromotionStep is inflated from a PromotionTask, the inputs\nspecified in the PromotionTask are set based on the inputs specified\nin the Config of the PromotionStep that references the PromotionTask.",
"items": {
"description": "PromotionInput describes a single input value for a PromotionStep that may\nbe referenced by expressions in the step.",
"properties": {
"name": {
"description": "Name is the name of the input to which the value is assigned.",
"minLength": 1,
"pattern": "^[a-zA-Z_]\\w*$",
"type": "string"
},
"value": {
"description": "Value is the input value.",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"description": "Inputs is a map of inputs that can used to parameterize the execution\nof the PromotionStep and can be referenced by expressions in the Config.\n\nWhen a PromotionStep is inflated from a PromotionTask, the inputs\nspecified in the PromotionTask are set based on the inputs specified\nin the Config of the PromotionStep that references the PromotionTask.",
"type": "object"
"type": "array"
},
"retry": {
"description": "Retry is the retry policy for this step.",
Expand Down
Loading

0 comments on commit 3b8f9c6

Please sign in to comment.