Skip to content

Commit 168255d

Browse files
flyte-boteapolinario
authored andcommitted
Update Flyte components (#4869)
* Update Flyte Components Signed-off-by: Flyte-Bot <[email protected]> * Add changelog and modify version in conf.py Signed-off-by: Eduardo Apolinario <[email protected]> * Remove grpc-gateway v1 from go.mod Signed-off-by: Eduardo Apolinario <[email protected]> * Update full list of changes and mention buf in list of changes. Signed-off-by: Eduardo Apolinario <[email protected]> * Update versions of minio and postgresql bitnami charts in flyte-sandbox helm chart. Signed-off-by: Eduardo Apolinario <[email protected]> * Run make helm Signed-off-by: Eduardo Apolinario <[email protected]> --------- Signed-off-by: Flyte-Bot <[email protected]> Signed-off-by: Eduardo Apolinario <[email protected]> Co-authored-by: eapolinario <[email protected]> Signed-off-by: Katrina Rogan <[email protected]>
1 parent ef6a558 commit 168255d

30 files changed

+457
-204
lines changed

CHANGELOG/CHANGELOG-v1.10.7.md

+184
Large diffs are not rendered by default.

charts/flyte-binary/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Chart for basic single Flyte executable deployment
4242
| configuration.auth.oidc.clientId | string | `""` | |
4343
| configuration.auth.oidc.clientSecret | string | `""` | |
4444
| configuration.co-pilot.image.repository | string | `"cr.flyte.org/flyteorg/flytecopilot"` | |
45-
| configuration.co-pilot.image.tag | string | `"v1.10.7-b4"` | |
45+
| configuration.co-pilot.image.tag | string | `"v1.10.7"` | |
4646
| configuration.database.dbname | string | `"flyte"` | |
4747
| configuration.database.host | string | `"127.0.0.1"` | |
4848
| configuration.database.options | string | `"sslmode=disable"` | |

charts/flyte-binary/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ configuration:
159159
# repository CoPilot sidecar image repository
160160
repository: cr.flyte.org/flyteorg/flytecopilot # FLYTECOPILOT_IMAGE
161161
# tag CoPilot sidecar image tag
162-
tag: v1.10.7-b4 # FLYTECOPILOT_TAG
162+
tag: v1.10.7 # FLYTECOPILOT_TAG
163163
# agentService Flyte Agent configuration
164164
agentService:
165165
defaultAgent:

charts/flyte-core/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ helm install gateway bitnami/contour -n flyte
9494
| configmap.clusters.clusterConfigs | list | `[]` | |
9595
| configmap.clusters.labelClusterMap | object | `{}` | |
9696
| configmap.console | object | `{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"}` | Configuration for Flyte console UI |
97-
| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b4","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration |
98-
| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b4","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/[email protected]/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) |
97+
| configmap.copilot | object | `{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7","name":"flyte-copilot-","start-timeout":"30s"}}}}` | Copilot configuration |
98+
| configmap.copilot.plugins.k8s.co-pilot | object | `{"image":"cr.flyte.org/flyteorg/flytecopilot:v1.10.7","name":"flyte-copilot-","start-timeout":"30s"}` | Structure documented [here](https://pkg.go.dev/github.com/lyft/[email protected]/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig) |
9999
| 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 |
100100
| 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). |
101101
| 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). |
@@ -129,7 +129,7 @@ helm install gateway bitnami/contour -n flyte
129129
| datacatalog.extraArgs | object | `{}` | Appends extra command line arguments to the main command |
130130
| datacatalog.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy |
131131
| datacatalog.image.repository | string | `"cr.flyte.org/flyteorg/datacatalog"` | Docker image for Datacatalog deployment |
132-
| datacatalog.image.tag | string | `"v1.10.7-b4"` | Docker image tag |
132+
| datacatalog.image.tag | string | `"v1.10.7"` | Docker image tag |
133133
| datacatalog.nodeSelector | object | `{}` | nodeSelector for Datacatalog deployment |
134134
| datacatalog.podAnnotations | object | `{}` | Annotations for Datacatalog pods |
135135
| datacatalog.podEnv | object | `{}` | Additional Datacatalog container environment variables |
@@ -163,7 +163,7 @@ helm install gateway bitnami/contour -n flyte
163163
| flyteadmin.extraArgs | object | `{}` | Appends extra command line arguments to the serve command |
164164
| flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | |
165165
| flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment |
166-
| flyteadmin.image.tag | string | `"v1.10.7-b4"` | |
166+
| flyteadmin.image.tag | string | `"v1.10.7"` | |
167167
| flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create |
168168
| flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment |
169169
| flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods |
@@ -221,7 +221,7 @@ helm install gateway bitnami/contour -n flyte
221221
| flytepropeller.extraArgs | object | `{}` | Appends extra command line arguments to the main command |
222222
| flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | |
223223
| flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment |
224-
| flytepropeller.image.tag | string | `"v1.10.7-b4"` | |
224+
| flytepropeller.image.tag | string | `"v1.10.7"` | |
225225
| flytepropeller.manager | bool | `false` | |
226226
| flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment |
227227
| flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods |
@@ -250,7 +250,7 @@ helm install gateway bitnami/contour -n flyte
250250
| flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files |
251251
| flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy |
252252
| flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment |
253-
| flytescheduler.image.tag | string | `"v1.10.7-b4"` | Docker image tag |
253+
| flytescheduler.image.tag | string | `"v1.10.7"` | Docker image tag |
254254
| flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment |
255255
| flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods |
256256
| flytescheduler.podEnv | object | `{}` | Additional Flytescheduler container environment variables |

charts/flyte-core/values.yaml

+5-5
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.10.7-b4 # FLYTEADMIN_TAG
19+
tag: v1.10.7 # FLYTEADMIN_TAG
2020
pullPolicy: IfNotPresent
2121
# -- Additional flyteadmin container environment variables
2222
#
@@ -134,7 +134,7 @@ flytescheduler:
134134
# -- Docker image for Flytescheduler deployment
135135
repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE
136136
# -- Docker image tag
137-
tag: v1.10.7-b4 # FLYTESCHEDULER_TAG
137+
tag: v1.10.7 # FLYTESCHEDULER_TAG
138138
# -- Docker image pull policy
139139
pullPolicy: IfNotPresent
140140
# -- Default resources requests and limits for Flytescheduler deployment
@@ -192,7 +192,7 @@ datacatalog:
192192
# -- Docker image for Datacatalog deployment
193193
repository: cr.flyte.org/flyteorg/datacatalog # DATACATALOG_IMAGE
194194
# -- Docker image tag
195-
tag: v1.10.7-b4 # DATACATALOG_TAG
195+
tag: v1.10.7 # DATACATALOG_TAG
196196
# -- Docker image pull policy
197197
pullPolicy: IfNotPresent
198198
# -- Default resources requests and limits for Datacatalog deployment
@@ -270,7 +270,7 @@ flytepropeller:
270270
image:
271271
# -- Docker image for Flytepropeller deployment
272272
repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE
273-
tag: v1.10.7-b4 # FLYTEPROPELLER_TAG
273+
tag: v1.10.7 # FLYTEPROPELLER_TAG
274274
pullPolicy: IfNotPresent
275275
# -- Default resources requests and limits for Flytepropeller deployment
276276
resources:
@@ -681,7 +681,7 @@ configmap:
681681
# -- Structure documented [here](https://pkg.go.dev/github.com/lyft/[email protected]/go/tasks/pluginmachinery/flytek8s/config#FlyteCoPilotConfig)
682682
co-pilot:
683683
name: flyte-copilot-
684-
image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7-b4 # FLYTECOPILOT_IMAGE
684+
image: cr.flyte.org/flyteorg/flytecopilot:v1.10.7 # FLYTECOPILOT_IMAGE
685685
start-timeout: 30s
686686

687687
# -- Core propeller configuration

charts/flyte-sandbox/Chart.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ dependencies:
1010
version: 6.0.0
1111
- name: minio
1212
repository: https://charts.bitnami.com/bitnami
13-
version: 12.1.1
13+
version: 12.6.7
1414
- name: postgresql
1515
repository: https://charts.bitnami.com/bitnami
16-
version: 12.1.9
17-
digest: sha256:e7155e540bbdb98f690eb12e2bd301a19d8b36833336f6991410cb44d8d9bb5e
18-
generated: "2023-10-28T10:05:34.269916+08:00"
16+
version: 12.8.1
17+
digest: sha256:f63a6ba148c681162253c24f0ba200ab7d5b7934a398824cb7b4f35d8f9166de
18+
generated: "2024-02-13T17:51:58.270175-08:00"

charts/flyte-sandbox/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ version: 0.1.0
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "1.16.0"
24+
appVersion: "1.16.1"
2525

2626
dependencies:
2727
- name: docker-registry
@@ -37,10 +37,10 @@ dependencies:
3737
repository: https://kubernetes.github.io/dashboard/
3838
condition: kubernetes-dashboard.enabled
3939
- name: minio
40-
version: 12.1.1
40+
version: 12.6.7
4141
repository: https://charts.bitnami.com/bitnami
4242
condition: minio.enabled
4343
- name: postgresql
44-
version: 12.1.9
44+
version: 12.8.1
4545
repository: https://charts.bitnami.com/bitnami
4646
condition: postgresql.enabled

charts/flyte-sandbox/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# flyte-sandbox
22

3-
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square)
3+
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.1](https://img.shields.io/badge/AppVersion-1.16.1-informational?style=flat-square)
44

55
A Helm chart for the Flyte local sandbox
66

@@ -9,8 +9,8 @@ A Helm chart for the Flyte local sandbox
99
| Repository | Name | Version |
1010
|------------|------|---------|
1111
| file://../flyte-binary | flyte-binary | v0.1.10 |
12-
| https://charts.bitnami.com/bitnami | minio | 12.1.1 |
13-
| https://charts.bitnami.com/bitnami | postgresql | 12.1.9 |
12+
| https://charts.bitnami.com/bitnami | minio | 12.6.7 |
13+
| https://charts.bitnami.com/bitnami | postgresql | 12.8.1 |
1414
| https://helm.twun.io/ | docker-registry | 2.2.2 |
1515
| https://kubernetes.github.io/dashboard/ | kubernetes-dashboard | 6.0.0 |
1616

0 commit comments

Comments
 (0)