Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Handle overriding of container image in backend #4858

Merged
merged 22 commits into from
Feb 21, 2024
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
8 changes: 8 additions & 0 deletions flyteidl/clients/go/assets/admin.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -7221,6 +7221,10 @@
"interface": {
"$ref": "#/definitions/coreTypedInterface",
"title": "The input and output interface for the launch plan"
},
"fixed_inputs": {
"$ref": "#/definitions/coreLiteralMap",
"title": "A collection of input literals that are fixed for the launch plan"
}
},
"description": "A structure that uniquely identifies a launch plan in the system."
Expand Down Expand Up @@ -8076,6 +8080,10 @@
"extended_resources": {
"$ref": "#/definitions/coreExtendedResources",
"description": "Overrides for all non-standard resources, not captured by\nv1.ResourceRequirements, to allocate to a task."
},
"container_image": {
"type": "string",
"description": "Override for the image used by task pods."
}
},
"description": "Optional task node overrides that will be applied at task execution time."
Expand Down
8 changes: 8 additions & 0 deletions flyteidl/gen/pb-es/flyteidl/core/workflow_pb.ts

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

62 changes: 37 additions & 25 deletions flyteidl/gen/pb-go/flyteidl/core/workflow.pb.go

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

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

6 changes: 6 additions & 0 deletions flyteidl/gen/pb-js/flyteidl.d.ts

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

17 changes: 17 additions & 0 deletions flyteidl/gen/pb-js/flyteidl.js

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

Loading
Loading