Skip to content

Commit e288317

Browse files
flyte-botpvditt
andauthored
Update Flyte components (#6779)
* Update Flyte Components Signed-off-by: Flyte-Bot <[email protected]> * update docs version Signed-off-by: Paul Dittamo <[email protected]> * v1.16.3 change log Signed-off-by: Paul Dittamo <[email protected]> --------- Signed-off-by: Flyte-Bot <[email protected]> Signed-off-by: Paul Dittamo <[email protected]> Co-authored-by: pvditt <[email protected]> Co-authored-by: Paul Dittamo <[email protected]>
1 parent 1af7a03 commit e288317

23 files changed

+557
-578
lines changed

CHANGELOG/CHANGELOG-v1.16.3.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Flyte 1.16.3
2+
3+
## Added
4+
5+
- Add start- and end-time log link template vars to Ray plugin ([#6751](https://github.com/flyteorg/flyte/pull/6751))
6+
- Add metric to track how long nodes are stuck blocked by max parallelism being reached ([#6737](https://github.com/flyteorg/flyte/pull/6737))
7+
8+
## Changed
9+
10+
- Update Flyte to Go 1.24 ([#6603](https://github.com/flyteorg/flyte/pull/6603))
11+
12+
## Fixed
13+
14+
- Upstream array node fixes + update mockery ([#6763](https://github.com/flyteorg/flyte/pull/6763))
15+
- Handle etcd request too large error ([#6752](https://github.com/flyteorg/flyte/pull/6752))
16+
- Immediately fail if plugin.BuildResource fails instead of retrying until system retry budget is exhausted ([#6740](https://github.com/flyteorg/flyte/pull/6740))
17+
- Avoid merging pod template twice if template container name matches task container name ([#6733](https://github.com/flyteorg/flyte/pull/6733))
18+
19+
## Dependencies / Security
20+
21+
- Update x/crypto to v0.45.0 to fix security warnings ([#6774](https://github.com/flyteorg/flyte/pull/6774))
22+
- Bump golang.org/x/crypto from 0.36.0 to 0.45.0 in /datacatalog ([#6764](https://github.com/flyteorg/flyte/pull/6764))
23+
- Bump golang.org/x/crypto from 0.36.0 to 0.45.0 in /flyteadmin ([#6770](https://github.com/flyteorg/flyte/pull/6770))
24+
- Pin neoeinstein-prost to v0.4.0 ([#6773](https://github.com/flyteorg/flyte/pull/6773))
25+
- Bump stow to latest ([#6741](https://github.com/flyteorg/flyte/pull/6741))
26+
27+
## Housekeeping
28+
29+
- Update Flyte Components ([#8e488c4b6](https://github.com/flyteorg/flyte/commit/8e488c4b6))
30+
- Update docs version ([#424d7775f](https://github.com/flyteorg/flyte/commit/424d7775f))
31+
32+
## Contributors
33+
34+
Thanks to all the contributors who made this release possible: @fg91 ([#6733](https://github.com/flyteorg/flyte/pull/6733), [#6740](https://github.com/flyteorg/flyte/pull/6740), [#6751](https://github.com/flyteorg/flyte/pull/6751)), @Sovietaced ([#6603](https://github.com/flyteorg/flyte/pull/6603), [#6773](https://github.com/flyteorg/flyte/pull/6773), [#6774](https://github.com/flyteorg/flyte/pull/6774)).
35+
36+
Full Changelog: https://github.com/flyteorg/flyte/compare/v1.16.2...v1.16.3

charts/flyte-binary/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Chart for basic single Flyte executable deployment
3737
| configuration.auth.oidc.clientId | string | `""` | |
3838
| configuration.auth.oidc.clientSecret | string | `""` | |
3939
| configuration.co-pilot.image.repository | string | `"cr.flyte.org/flyteorg/flytecopilot"` | |
40-
| configuration.co-pilot.image.tag | string | `"v1.16.2"` | |
40+
| configuration.co-pilot.image.tag | string | `"v1.16.3"` | |
4141
| configuration.connectorService.defaultConnector.defaultTimeout | string | `"10s"` | |
4242
| configuration.connectorService.defaultConnector.endpoint | string | `"k8s://flyteconnector.flyte:8000"` | |
4343
| configuration.connectorService.defaultConnector.insecure | bool | `true` | |

charts/flyte-binary/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ configuration:
167167
# repository CoPilot sidecar image repository
168168
repository: cr.flyte.org/flyteorg/flytecopilot # FLYTECOPILOT_IMAGE
169169
# tag CoPilot sidecar image tag
170-
tag: v1.16.2 # FLYTECOPILOT_TAG
170+
tag: v1.16.3 # FLYTECOPILOT_TAG
171171
# connectorService Flyte Connector configuration
172172
connectorService:
173173
defaultConnector:

charts/flyte-core/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ helm install gateway bitnami/contour -n flyte
111111
| configmap.clusters.clusterConfigs | list | `[]` | |
112112
| configmap.clusters.labelClusterMap | object | `{}` | |
113113
| configmap.console | object | `{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"}` | Configuration for Flyte console UI |
114-
| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.16.2","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration |
115-
| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.16.2","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/[email protected]/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) |
114+
| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.16.3","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration |
115+
| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.16.3","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/[email protected]/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) |
116116
| 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","literal-offloading-config":{"enabled":false},"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://{{ .Values.storage.bucketName }}/","workers":4,"workflow-reeval-duration":"30s"},"webhook":{"certDir":"/etc/webhook/certs","serviceName":"flyte-pod-webhook"}}` | Core propeller configuration |
117117
| 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). |
118118
| 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","literal-offloading-config":{"enabled":false},"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://{{ .Values.storage.bucketName }}/","workers":4,"workflow-reeval-duration":"30s"}` | follows the structure specified [here](https://pkg.go.dev/github.com/flyteorg/flytepropeller/pkg/controller/config). |
@@ -165,7 +165,7 @@ helm install gateway bitnami/contour -n flyte
165165
| datacatalog.extraArgs | object | `{}` | Appends extra command line arguments to the main command |
166166
| datacatalog.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy |
167167
| datacatalog.image.repository | string | `"cr.flyte.org/flyteorg/datacatalog"` | Docker image for Datacatalog deployment |
168-
| datacatalog.image.tag | string | `"v1.16.2"` | Docker image tag |
168+
| datacatalog.image.tag | string | `"v1.16.3"` | Docker image tag |
169169
| datacatalog.nodeSelector | object | `{}` | nodeSelector for Datacatalog deployment |
170170
| datacatalog.podAnnotations | object | `{}` | Annotations for Datacatalog pods |
171171
| datacatalog.podEnv | object | `{}` | Additional Datacatalog container environment variables |
@@ -219,7 +219,7 @@ helm install gateway bitnami/contour -n flyte
219219
| flyteadmin.extraArgs | object | `{}` | Appends extra command line arguments to the serve command |
220220
| flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | |
221221
| flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment |
222-
| flyteadmin.image.tag | string | `"v1.16.2"` | |
222+
| flyteadmin.image.tag | string | `"v1.16.3"` | |
223223
| flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create |
224224
| flyteadmin.livenessProbe | string | `"exec:\n command: [ \"sh\", \"-c\", \"reply=$(curl -s -o /dev/null -w %{http_code} http://127.0.0.1:8088/healthcheck); if [ \\\"$reply\\\" -lt 200 -o \\\"$reply\\\" -ge 400 ]; then exit 1; fi;\",\"grpc_health_probe\", \"-addr=:8089\"]\ninitialDelaySeconds: 20\nperiodSeconds: 5"` | |
225225
| flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment |
@@ -310,7 +310,7 @@ helm install gateway bitnami/contour -n flyte
310310
| flytepropeller.extraArgs | object | `{}` | Appends extra command line arguments to the main command |
311311
| flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | |
312312
| flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment |
313-
| flytepropeller.image.tag | string | `"v1.16.2"` | |
313+
| flytepropeller.image.tag | string | `"v1.16.3"` | |
314314
| flytepropeller.manager | bool | `false` | |
315315
| flytepropeller.manager_resources | object | `{"resources":{"limits":{"cpu":"200m","ephemeral-storage":"100Mi","memory":"200Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"100Mi"}}}` | If manager is set to true this can be used to give the flytepropeller-manager different resource requests than the sharded flyte propeller pods |
316316
| flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment |
@@ -347,7 +347,7 @@ helm install gateway bitnami/contour -n flyte
347347
| flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files |
348348
| flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy |
349349
| flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment |
350-
| flytescheduler.image.tag | string | `"v1.16.2"` | Docker image tag |
350+
| flytescheduler.image.tag | string | `"v1.16.3"` | Docker image tag |
351351
| flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment |
352352
| flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods |
353353
| flytescheduler.podEnv | object | `{}` | Additional Flytescheduler container environment variables |

charts/flyte-core/values.yaml

Lines changed: 5 additions & 5 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.16.2 # FLYTEADMIN_TAG
19+
tag: v1.16.3 # FLYTEADMIN_TAG
2020
pullPolicy: IfNotPresent
2121
# -- Additional flyteadmin container environment variables
2222
#
@@ -189,7 +189,7 @@ flytescheduler:
189189
# -- Docker image for Flytescheduler deployment
190190
repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE
191191
# -- Docker image tag
192-
tag: v1.16.2 # FLYTESCHEDULER_TAG
192+
tag: v1.16.3 # FLYTESCHEDULER_TAG
193193
# -- Docker image pull policy
194194
pullPolicy: IfNotPresent
195195
# -- Default resources requests and limits for Flytescheduler deployment
@@ -277,7 +277,7 @@ datacatalog:
277277
# -- Docker image for Datacatalog deployment
278278
repository: cr.flyte.org/flyteorg/datacatalog # DATACATALOG_IMAGE
279279
# -- Docker image tag
280-
tag: v1.16.2 # DATACATALOG_TAG
280+
tag: v1.16.3 # DATACATALOG_TAG
281281
# -- Docker image pull policy
282282
pullPolicy: IfNotPresent
283283
# -- Default resources requests and limits for Datacatalog deployment
@@ -405,7 +405,7 @@ flytepropeller:
405405
image:
406406
# -- Docker image for Flytepropeller deployment
407407
repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE
408-
tag: v1.16.2 # FLYTEPROPELLER_TAG
408+
tag: v1.16.3 # FLYTEPROPELLER_TAG
409409
pullPolicy: IfNotPresent
410410
# -- Default resources requests and limits for Flytepropeller deployment
411411
resources:
@@ -1059,7 +1059,7 @@ configmap:
10591059
# -- Structure documented [here](https://pkg.go.dev/github.com/lyft/[email protected]/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig)
10601060
co-pilot:
10611061
name: flyte-copilot-
1062-
image: cr.flyte.org/flyteorg/flytecopilot:v1.16.2 # FLYTECOPILOT_IMAGE
1062+
image: cr.flyte.org/flyteorg/flytecopilot:v1.16.3 # FLYTECOPILOT_IMAGE
10631063
start-timeout: 30s
10641064

10651065
# -- Core propeller configuration

0 commit comments

Comments
 (0)