Skip to content

Commit 941fa41

Browse files
authored
Update Flyte components (#3650)
Signed-off-by: Flyte-Bot <admin@flyte.org> Signed-off-by: Yee Hing Tong <wild-endeavor@users.noreply.github.com>
1 parent 7e0c3ed commit 941fa41

30 files changed

+284
-283
lines changed

CHANGELOG/CHANGELOG-v1.6.0-b1.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Flyte v1.6.0-b1
2+
3+
## What's Changed
4+
### Console
5+
* feat: show launchplan in execution table by @pradithya in https://github.com/flyteorg/flyteconsole/pull/738
6+
* feat: show launch plan information in workflow's schedules by @pradithya in https://github.com/flyteorg/flyteconsole/pull/739
7+
* fix: passthrough runtime env vars by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/741
8+
* chore: add fallback to task execution link by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/743
9+
* chore: allow custom subnav by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/734
10+
* fix: force node executions to pull their status by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/737
11+
* chore: fix details panel card padding by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/745
12+
* chore: fix crash by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/746
13+
* [UI Feature] Add full-list log output to execution detail panel by @james-union in https://github.com/flyteorg/flyteconsole/pull/744
14+
* TLM add log-message window to left panel by @james-union in https://github.com/flyteorg/flyteconsole/pull/748
15+
* [Snyk] Upgrade eslint from 8.31.0 to 8.33.0 by @EngHabu in https://github.com/flyteorg/flyteconsole/pull/695
16+
* chore: [tlm] comprehensive node execution query by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/749
17+
* chore: guard against /tasks failing by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/750
18+
* chore: propagate dynamic parent id by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/751
19+
* Add support fetching description entity by @pingsutw in https://github.com/flyteorg/flyteconsole/pull/735
20+
21+
### Admin
22+
* Infer GOOS and GOARCH from environment by @jeevb in https://github.com/flyteorg/flyteadmin/pull/550
23+
* Enrich TerminateExecution error to tell propeller the execution already terminated by @EngHabu in https://github.com/flyteorg/flyteadmin/pull/551
24+
* Address resolution by @wild-endeavor in https://github.com/flyteorg/flyteadmin/pull/546
25+
* Add migration to turn `parent_id` column into `bigint` only if necessary by @eapolinario in https://github.com/flyteorg/flyteadmin/pull/554
26+
27+
### Propeller
28+
* Moved controller-runtime start out of webhook Run function by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/546
29+
* Fixing recovering of SKIPPED nodes by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/551
30+
* Remove resource injection on the node for container task by @ByronHsu in https://github.com/flyteorg/flytepropeller/pull/544
31+
* Infer GOOS and GOARCH from environment by @jeevb in https://github.com/flyteorg/flytepropeller/pull/552
32+
* fix makefile to read variables from environment and overrides by @jeevb in https://github.com/flyteorg/flytepropeller/pull/554
33+
* Remove BarrierTick by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/545
34+
* Check for TerminateExecution error and eat Precondition status by @EngHabu in https://github.com/flyteorg/flytepropeller/pull/553
35+
* Setting primaryContainerName by default on Pod plugin by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/555
36+
* Implement ability to specify additional/override annotations when using Vault Secret Manager by @pradithya in https://github.com/flyteorg/flytepropeller/pull/556
37+
* Maintaining Interruptible and OverwriteCache for reference launchplans by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/557
38+
* Added support for aborting task nodes reported as failures by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/541
39+
* Added support for EnvironmentVariables on ExecutionConfig by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/558
40+
* Fast fail if task resource requests exceed k8s resource limits by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/488
41+
42+
* @ByronHsu made their first contribution in https://github.com/flyteorg/flytepropeller/pull/544
43+

charts/flyte-binary/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Chart for basic single Flyte executable deployment
3030
| configuration.auth.oidc.clientId | string | `""` | |
3131
| configuration.auth.oidc.clientSecret | string | `""` | |
3232
| configuration.co-pilot.image.repository | string | `"cr.flyte.org/flyteorg/flytecopilot"` | |
33-
| configuration.co-pilot.image.tag | string | `"v0.0.28"` | |
33+
| configuration.co-pilot.image.tag | string | `"v0.0.30"` | |
3434
| configuration.database.dbname | string | `"flyte"` | |
3535
| configuration.database.host | string | `"127.0.0.1"` | |
3636
| configuration.database.options | string | `"sslmode=disable"` | |

charts/flyte-binary/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ configuration:
118118
# repository CoPilot sidecar image repository
119119
repository: cr.flyte.org/flyteorg/flytecopilot # FLYTECOPILOT_IMAGE
120120
# tag CoPilot sidecar image tag
121-
tag: v0.0.28 # FLYTECOPILOT_TAG
121+
tag: v0.0.30 # FLYTECOPILOT_TAG
122122
# externalConfigMap Specify an existing, external ConfigMap to use as configuration for Flyte
123123
# If set, no ConfigMap will be generated by this chart
124124
externalConfigMap: ""

charts/flyte-core/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ helm install gateway bitnami/contour -n flyte
8484
| configmap.clusters.clusterConfigs | list | `[]` | |
8585
| configmap.clusters.labelClusterMap | object | `{}` | |
8686
| configmap.console | object | `{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"}` | Configuration for Flyte console UI |
87-
| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.28","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration |
88-
| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.28","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) |
87+
| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.30","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration |
88+
| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.30","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) |
8989
| configmap.core | object | `{"manager":{"pod-application":"flytepropeller","pod-template-container-name":"flytepropeller","pod-template-name":"flytepropeller-template"},"propeller":{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}}` | Core propeller configuration |
9090
| configmap.core.manager | object | `{"pod-application":"flytepropeller","pod-template-container-name":"flytepropeller","pod-template-name":"flytepropeller-template"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/manager/config#Config). |
9191
| configmap.core.propeller | object | `{"downstream-eval-duration":"30s","enable-admin-launcher":true,"leader-election":{"enabled":true,"lease-duration":"15s","lock-config-map":{"name":"propeller-leader","namespace":"flyte"},"renew-deadline":"10s","retry-period":"2s"},"limit-namespace":"all","max-workflow-retries":30,"metadata-prefix":"metadata/propeller","metrics-prefix":"flyte","prof-port":10254,"queue":{"batch-size":-1,"batching-interval":"2s","queue":{"base-delay":"5s","capacity":1000,"max-delay":"120s","rate":100,"type":"maxof"},"sub-queue":{"capacity":100,"rate":10,"type":"bucket"},"type":"batch"},"rawoutput-prefix":"s3://my-s3-bucket/","workers":4,"workflow-reeval-duration":"30s"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/config). |
@@ -119,7 +119,7 @@ helm install gateway bitnami/contour -n flyte
119119
| datacatalog.extraArgs | object | `{}` | Appends extra command line arguments to the main command |
120120
| datacatalog.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy |
121121
| datacatalog.image.repository | string | `"cr.flyte.org/flyteorg/datacatalog"` | Docker image for Datacatalog deployment |
122-
| datacatalog.image.tag | string | `"v1.0.44"` | Docker image tag |
122+
| datacatalog.image.tag | string | `"v1.0.46"` | Docker image tag |
123123
| datacatalog.nodeSelector | object | `{}` | nodeSelector for Datacatalog deployment |
124124
| datacatalog.podAnnotations | object | `{}` | Annotations for Datacatalog pods |
125125
| datacatalog.priorityClassName | string | `""` | Sets priorityClassName for datacatalog pod(s). |
@@ -151,7 +151,7 @@ helm install gateway bitnami/contour -n flyte
151151
| flyteadmin.extraArgs | object | `{}` | Appends extra command line arguments to the serve command |
152152
| flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | |
153153
| flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment |
154-
| flyteadmin.image.tag | string | `"v1.1.88"` | |
154+
| flyteadmin.image.tag | string | `"v1.1.92"` | |
155155
| flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create |
156156
| flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment |
157157
| flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods |
@@ -173,7 +173,7 @@ helm install gateway bitnami/contour -n flyte
173173
| flyteconsole.ga.tracking_id | string | `"G-0QW4DJWJ20"` | |
174174
| flyteconsole.image.pullPolicy | string | `"IfNotPresent"` | |
175175
| flyteconsole.image.repository | string | `"cr.flyte.org/flyteorg/flyteconsole"` | Docker image for Flyteconsole deployment |
176-
| flyteconsole.image.tag | string | `"v1.5.4"` | |
176+
| flyteconsole.image.tag | string | `"v1.6.2"` | |
177177
| flyteconsole.nodeSelector | object | `{}` | nodeSelector for Flyteconsole deployment |
178178
| flyteconsole.podAnnotations | object | `{}` | Annotations for Flyteconsole pods |
179179
| flyteconsole.priorityClassName | string | `""` | Sets priorityClassName for flyte console pod(s). |
@@ -193,7 +193,7 @@ helm install gateway bitnami/contour -n flyte
193193
| flytepropeller.extraArgs | object | `{}` | Appends extra command line arguments to the main command |
194194
| flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | |
195195
| flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment |
196-
| flytepropeller.image.tag | string | `"v1.1.76"` | |
196+
| flytepropeller.image.tag | string | `"v1.1.88"` | |
197197
| flytepropeller.manager | bool | `false` | |
198198
| flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment |
199199
| flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods |
@@ -213,7 +213,7 @@ helm install gateway bitnami/contour -n flyte
213213
| flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files |
214214
| flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy |
215215
| flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment |
216-
| flytescheduler.image.tag | string | `"v1.1.88"` | Docker image tag |
216+
| flytescheduler.image.tag | string | `"v1.1.92"` | Docker image tag |
217217
| flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment |
218218
| flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods |
219219
| flytescheduler.priorityClassName | string | `""` | Sets priorityClassName for flyte scheduler pod(s). |

charts/flyte-core/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ flyteadmin:
1616
image:
1717
# -- Docker image for Flyteadmin deployment
1818
repository: cr.flyte.org/flyteorg/flyteadmin # FLYTEADMIN_IMAGE
19-
tag: v1.1.88 # FLYTEADMIN_TAG
19+
tag: v1.1.92 # FLYTEADMIN_TAG
2020
pullPolicy: IfNotPresent
2121
# -- Additional flyteadmin container environment variables
2222
#
@@ -97,7 +97,7 @@ flytescheduler:
9797
# -- Docker image for Flytescheduler deployment
9898
repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE
9999
# -- Docker image tag
100-
tag: v1.1.88 # FLYTESCHEDULER_TAG
100+
tag: v1.1.92 # FLYTESCHEDULER_TAG
101101
# -- Docker image pull policy
102102
pullPolicy: IfNotPresent
103103
# -- Default resources requests and limits for Flytescheduler deployment
@@ -151,7 +151,7 @@ datacatalog:
151151
# -- Docker image for Datacatalog deployment
152152
repository: cr.flyte.org/flyteorg/datacatalog # DATACATALOG_IMAGE
153153
# -- Docker image tag
154-
tag: v1.0.44 # DATACATALOG_TAG
154+
tag: v1.0.46 # DATACATALOG_TAG
155155
# -- Docker image pull policy
156156
pullPolicy: IfNotPresent
157157
# -- Default resources requests and limits for Datacatalog deployment
@@ -212,7 +212,7 @@ flytepropeller:
212212
image:
213213
# -- Docker image for Flytepropeller deployment
214214
repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE
215-
tag: v1.1.76 # FLYTEPROPELLER_TAG
215+
tag: v1.1.88 # FLYTEPROPELLER_TAG
216216
pullPolicy: IfNotPresent
217217
# -- Default resources requests and limits for Flytepropeller deployment
218218
resources:
@@ -270,7 +270,7 @@ flyteconsole:
270270
image:
271271
# -- Docker image for Flyteconsole deployment
272272
repository: cr.flyte.org/flyteorg/flyteconsole # FLYTECONSOLE_IMAGE
273-
tag: v1.5.4 # FLYTECONSOLE_TAG
273+
tag: v1.6.2 # FLYTECONSOLE_TAG
274274
pullPolicy: IfNotPresent
275275
# -- Default resources requests and limits for Flyteconsole deployment
276276
resources:
@@ -595,7 +595,7 @@ configmap:
595595
# -- Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig)
596596
co-pilot:
597597
name: flyte-copilot-
598-
image: cr.flyte.org/flyteorg/flytecopilot:v0.0.28 # FLYTECOPILOT_IMAGE
598+
image: cr.flyte.org/flyteorg/flytecopilot:v0.0.30 # FLYTECOPILOT_IMAGE
599599
start-timeout: 30s
600600

601601
# -- Core propeller configuration

0 commit comments

Comments
 (0)