Skip to content

Commit 2f26086

Browse files
Merge branch 'master' into docs-sandbox
2 parents 1bd55cc + c7419a8 commit 2f26086

133 files changed

Lines changed: 928 additions & 2729 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.codespellrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[codespell]
2+
skip = .git,*.pb,*.pdf,*.svg,go.sum,go.mod,*requirements.txt,gen,monodocs-environment.lock.yaml,*.lock,*.lock.yaml,*.swagger.json
3+
check-hidden = true
4+
# Ignore camelCase and PascalCase identifiers (common in Go code)
5+
ignore-regex = \b[a-z]+[A-Z]\w*\b|\b[A-Z][a-z]+[A-Z]\w*\b
6+
ignore-words-list = astroid,bootup,decorder,fo,lightyear,nd,notin,ser,te

.github/codespell-ignored-words

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/codespell.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v4
25+
# Configuration is in .codespellrc
2526
- name: Codespell
2627
uses: codespell-project/actions-codespell@v2
27-
with:
28-
skip: "*.pb,monodocs-environment.lock.yaml,.git,*.pdf,*.svg,go.sum,go.mod,*requirements.txt,gen"
29-
ignore_words_file: .github/codespell-ignored-words

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ empty-config.yaml
4242
.claude/
4343
flyteidl2/
4444
gen/
45+
.kube/

CHANGELOG/CHANGELOG-v1.16.5.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Flyte 1.16.5
2+
3+
## What's Changed
4+
* Fix: Prevent dropping of empty string args when constructing RayJob entrypoint by @fg91 in https://github.com/flyteorg/flyte/pull/6947
5+
* don't reuse parent wf state for array node subnodes by @pvditt in https://github.com/flyteorg/flyte/pull/6929
6+
* Feat: Make RayCluster head node ingress optional by @fg91 in https://github.com/flyteorg/flyte/pull/6852
7+
* Flyte 2 update by @kumare3 in https://github.com/flyteorg/flyte/pull/6961
8+
* Add RBAC support for cross-namespace secret reading by @rohitrsh in https://github.com/flyteorg/flyte/pull/6919
9+
* set run_all_sub_nodes for array node idl by @pvditt in https://github.com/flyteorg/flyte/pull/6966
10+
* Add Config struct with DisableConfigEndpoint option to profutils profiling server. Register config section under "prof" key with pflags generation and conditionally skip the /config HTTP handler when disabled. by @EngHabu in https://github.com/flyteorg/flyte/pull/7016
11+
* Modernize codespell config: move from inline workflow to .codespellrc by @yarikoptic in https://github.com/flyteorg/flyte/pull/7104
12+
13+
## New Contributors
14+
* @rohitrsh made their first contribution in https://github.com/flyteorg/flyte/pull/6919
15+
16+
**Full Changelog**: https://github.com/flyteorg/flyte/compare/v1.16.4...v1.16.5

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.4"` | |
40+
| configuration.co-pilot.image.tag | string | `"v1.16.5"` | |
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.4 # FLYTECOPILOT_TAG
170+
tag: v1.16.5 # FLYTECOPILOT_TAG
171171
# connectorService Flyte Connector configuration
172172
connectorService:
173173
defaultConnector:

charts/flyte-core/README.md

Lines changed: 7 additions & 7 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.4","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration |
115-
| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.16.4","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) |
114+
| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.16.5","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration |
115+
| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.16.5","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) |
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.4"` | Docker image tag |
168+
| datacatalog.image.tag | string | `"v1.16.5"` | 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.4"` | |
222+
| flyteadmin.image.tag | string | `"v1.16.5"` | |
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 |
@@ -278,7 +278,7 @@ helm install gateway bitnami/contour -n flyte
278278
| flyteconsole.ga.tracking_id | string | `"G-0QW4DJWJ20"` | |
279279
| flyteconsole.image.pullPolicy | string | `"IfNotPresent"` | |
280280
| flyteconsole.image.repository | string | `"cr.flyte.org/flyteorg/flyteconsole"` | Docker image for Flyteconsole deployment |
281-
| flyteconsole.image.tag | string | `"v1.20.1"` | |
281+
| flyteconsole.image.tag | string | `"v1.21.0"` | |
282282
| flyteconsole.imagePullSecrets | list | `[]` | ImagePullSecrets to assign to the Flyteconsole deployment |
283283
| flyteconsole.livenessProbe | object | `{}` | |
284284
| flyteconsole.nodeSelector | object | `{}` | nodeSelector for Flyteconsole 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.4"` | |
313+
| flytepropeller.image.tag | string | `"v1.16.5"` | |
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.4"` | Docker image tag |
350+
| flytescheduler.image.tag | string | `"v1.16.5"` | 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: 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.16.4 # FLYTEADMIN_TAG
19+
tag: v1.16.5 # 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.4 # FLYTESCHEDULER_TAG
192+
tag: v1.16.5 # 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.4 # DATACATALOG_TAG
280+
tag: v1.16.5 # 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.4 # FLYTEPROPELLER_TAG
408+
tag: v1.16.5 # FLYTEPROPELLER_TAG
409409
pullPolicy: IfNotPresent
410410
# -- Default resources requests and limits for Flytepropeller deployment
411411
resources:
@@ -574,7 +574,7 @@ flyteconsole:
574574
image:
575575
# -- Docker image for Flyteconsole deployment
576576
repository: cr.flyte.org/flyteorg/flyteconsole # FLYTECONSOLE_IMAGE
577-
tag: v1.20.1 # FLYTECONSOLE_TAG
577+
tag: v1.21.0 # FLYTECONSOLE_TAG
578578
pullPolicy: IfNotPresent
579579
# -- Default resources requests and limits for Flyteconsole deployment
580580
resources:
@@ -1064,7 +1064,7 @@ configmap:
10641064
# -- Structure documented [here](https://pkg.go.dev/github.com/lyft/flyteplugins@v0.5.28/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig)
10651065
co-pilot:
10661066
name: flyte-copilot-
1067-
image: cr.flyte.org/flyteorg/flytecopilot:v1.16.4 # FLYTECOPILOT_IMAGE
1067+
image: cr.flyte.org/flyteorg/flytecopilot:v1.16.5 # FLYTECOPILOT_IMAGE
10681068
start-timeout: 30s
10691069

10701070
# -- Core propeller configuration

charts/flyte-sandbox/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ A Helm chart for the Flyte local sandbox
3131
| flyte-binary.configuration.inline.plugins.k8s.default-env-vars[1].FLYTE_AWS_ACCESS_KEY_ID | string | `"minio"` | |
3232
| flyte-binary.configuration.inline.plugins.k8s.default-env-vars[2].FLYTE_AWS_SECRET_ACCESS_KEY | string | `"miniostorage"` | |
3333
| flyte-binary.configuration.inline.plugins.k8s.default-env-vars[3].FLYTE_PLATFORM_URL | string | `"{{ printf \"%s-grpc\" .Release.Name }}.{{ .Release.Namespace }}:8089"` | |
34-
| flyte-binary.configuration.inline.plugins.k8s.default-env-vars[4].FLYTE_PLATFORM_INSECURE | bool | `true` | |
34+
| flyte-binary.configuration.inline.plugins.k8s.default-env-vars[4].FLYTE_PLATFORM_INSECURE | string | `"true"` | |
3535
| flyte-binary.configuration.inline.storage.signedURL.stowConfigOverride.endpoint | string | `"http://localhost:30002"` | |
3636
| flyte-binary.configuration.inline.task_resources.defaults.cpu | string | `"500m"` | |
3737
| flyte-binary.configuration.inline.task_resources.defaults.ephemeralStorage | int | `0` | |

0 commit comments

Comments
 (0)