diff --git a/CHANGELOG/CHANGELOG-v0.18.1.md b/CHANGELOG/CHANGELOG-v0.18.1.md new file mode 100644 index 0000000000..0a5499ecf5 --- /dev/null +++ b/CHANGELOG/CHANGELOG-v0.18.1.md @@ -0,0 +1,39 @@ +# 0.18.1 Release ChangeLog + +[Closed Issues](https://github.com/flyteorg/flyte/issues?q=is%3Aissue+milestone%3A0.18.1+is%3Aclosed) + +## UX + +### FlyteKit +See the [flytekit 0.24.0 release](https://github.com/flyteorg/flytekit/releases/tag/v0.24.0) for the full list of changes. Here are some of the highlights: + +1. We've added the following models to the top-level of the flytekit package. The classes will not move from their original locations, but importing from the top level will always be safer as we promise not to break these. + ```python + - Annotations, AuthRole, Labels + - WorkflowExecutionPhase + - Literal, LiteralType, Scalar, BlobType, Blob, BlobMetadata + ``` + + Instead of `from flytekit.models.common import Labels, Annotations`, please now do + ```python + from flytekit import Labels, Annotations + ``` +2. Support for python pickle. Starting in this release, flytekit is going to pickle inputs and outputs for types which it doesn't have a specific transformer for. This brings a lot of more freedom in porting over code to flyte's model, since it won't force users to write a type transformer in order to use existing code. Keep in mind that all the caveats around pickling code apply in this case. +4. We added a cookiecutter template, simplifying the Getting started docs and also unlocking the path to cookiecutter templates for specific use-cases, e.g. pytorch-enabled samples, etc. +5. Faster installation in Apple M1 Macs. We're now requiring pyarrow 6.0, which contains prebuilt wheels for the M1. + +### FlyteConsole +1. Added new UI for Workflow details including execution bar chart. +2. Added new bar chart user-selected filter for workflow executions. +3. Added new launch form controls ("Advanced Options") +4. Minor bug fixes + +## System +1. Performance improvements for executions. + 1. Smaller workflow CRDs, + 2. Better handling of partial failures in large fanout scenarios, +3. All flyte containers now run as non-root users. [Docs](https://docs.flyte.org/en/latest/deployment/security/security.html) (Thanks @frsann) +4. Stability and bug fixes + +## Documentation +1. Plugin Setup [Docs](https://docs.flyte.org/en/latest/deployment/plugin_setup/index.html) (e.g. MPI, Tensorflow, Spark Operators, AWS Batch & Athena, Snowflake and Google BigQuery) diff --git a/charts/flyte-core/README.md b/charts/flyte-core/README.md index 49b697b2f2..225607b73f 100644 --- a/charts/flyte-core/README.md +++ b/charts/flyte-core/README.md @@ -94,12 +94,12 @@ helm install gateway bitnami/contour -n flyte | configmap.task_logs.plugins.logs.cloudwatch-enabled | bool | `false` | One option is to enable cloudwatch logging for EKS, update the region and log group accordingly | | configmap.task_resource_defaults | object | `{"task_resources":{"defaults":{"cpu":"100m","memory":"100Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}` | Task default resources configuration Refer to the full [structure](https://pkg.go.dev/github.com/lyft/flyteadmin@v0.3.37/pkg/runtime/interfaces#TaskResourceConfiguration). | | configmap.task_resource_defaults.task_resources | object | `{"defaults":{"cpu":"100m","memory":"100Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}` | Task default resources parameters | -| datacatalog | object | `{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v0.3.9"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"NodePort"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | DATACATALOG SETTINGS | +| datacatalog | object | `{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v0.3.16"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"NodePort"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | DATACATALOG SETTINGS | | datacatalog.affinity | object | `{}` | affinity for Datacatalog deployment | | datacatalog.configPath | string | `"/etc/datacatalog/config/*.yaml"` | Default regex string for searching configuration files | | datacatalog.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | datacatalog.image.repository | string | `"cr.flyte.org/flyteorg/datacatalog"` | Docker image for Datacatalog deployment | -| datacatalog.image.tag | string | `"v0.3.9"` | Docker image tag | +| datacatalog.image.tag | string | `"v0.3.16"` | Docker image tag | | datacatalog.nodeSelector | object | `{}` | nodeSelector for Datacatalog deployment | | datacatalog.podAnnotations | object | `{}` | Annotations for Datacatalog pods | | datacatalog.replicaCount | int | `1` | Replicas count for Datacatalog deployment | @@ -126,7 +126,7 @@ helm install gateway bitnami/contour -n flyte | flyteadmin.deployRedoc | bool | `true` | Deploys a Redoc container in Flyteadmin's pod | | flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | | | flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment | -| flyteadmin.image.tag | string | `"v0.6.43"` | | +| flyteadmin.image.tag | string | `"v0.6.53"` | | | flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create | | flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment | | flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods | @@ -139,7 +139,7 @@ helm install gateway bitnami/contour -n flyte | flyteadmin.serviceAccount.create | bool | `true` | Should a service account be created for flyteadmin | | flyteadmin.serviceAccount.imagePullSecrets | object | `{}` | ImapgePullSecrets to automatically assign to the service account | | flyteadmin.tolerations | list | `[]` | tolerations for Flyteadmin deployment | -| flyteconsole | object | `{"affinity":{},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v0.29.0"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"250Mi"},"requests":{"cpu":"10m","memory":"50Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]}` | FLYTECONSOLE SETTINGS | +| flyteconsole | object | `{"affinity":{},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v0.30.0"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"250Mi"},"requests":{"cpu":"10m","memory":"50Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]}` | FLYTECONSOLE SETTINGS | | flyteconsole.affinity | object | `{}` | affinity for Flyteconsole deployment | | flyteconsole.image.repository | string | `"cr.flyte.org/flyteorg/flyteconsole"` | Docker image for Flyteconsole deployment | | flyteconsole.nodeSelector | object | `{}` | nodeSelector for Flyteconsole deployment | @@ -148,7 +148,7 @@ helm install gateway bitnami/contour -n flyte | flyteconsole.resources | object | `{"limits":{"cpu":"500m","memory":"250Mi"},"requests":{"cpu":"10m","memory":"50Mi"}}` | Default resources requests and limits for Flyteconsole deployment | | flyteconsole.service | object | `{"annotations":{},"type":"ClusterIP"}` | Service settings for Flyteconsole | | flyteconsole.tolerations | list | `[]` | tolerations for Flyteconsole deployment | -| flytepropeller | object | `{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v0.14.13"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"200m","ephemeral-storage":"100Mi","memory":"200Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | FLYTEPROPELLER SETTINGS | +| flytepropeller | object | `{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v0.15.17"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"200m","ephemeral-storage":"100Mi","memory":"200Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | FLYTEPROPELLER SETTINGS | | flytepropeller.affinity | object | `{}` | affinity for Flytepropeller deployment | | flytepropeller.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment | @@ -161,12 +161,12 @@ helm install gateway bitnami/contour -n flyte | flytepropeller.serviceAccount.create | bool | `true` | Should a service account be created for FlytePropeller | | flytepropeller.serviceAccount.imagePullSecrets | object | `{}` | ImapgePullSecrets to automatically assign to the service account | | flytepropeller.tolerations | list | `[]` | tolerations for Flytepropeller deployment | -| flytescheduler | object | `{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v0.6.43"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | FLYTESCHEDULER SETTINGS | +| flytescheduler | object | `{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v0.6.53"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | FLYTESCHEDULER SETTINGS | | flytescheduler.affinity | object | `{}` | affinity for Flytescheduler deployment | | flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment | -| flytescheduler.image.tag | string | `"v0.6.43"` | Docker image tag | +| flytescheduler.image.tag | string | `"v0.6.53"` | Docker image tag | | flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment | | flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods | | flytescheduler.resources | object | `{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}}` | Default resources requests and limits for Flytescheduler deployment | diff --git a/charts/flyte-core/values.yaml b/charts/flyte-core/values.yaml index 864f459808..613316a297 100755 --- a/charts/flyte-core/values.yaml +++ b/charts/flyte-core/values.yaml @@ -15,7 +15,7 @@ flyteadmin: image: # -- Docker image for Flyteadmin deployment repository: cr.flyte.org/flyteorg/flyteadmin - tag: v0.6.43 # FLYTEADMIN_TAG + tag: v0.6.53 # FLYTEADMIN_TAG pullPolicy: IfNotPresent # -- Default resources requests and limits for Flyteadmin deployment resources: @@ -71,7 +71,7 @@ flytescheduler: # -- Docker image for Flytescheduler deployment repository: cr.flyte.org/flyteorg/flytescheduler # -- Docker image tag - tag: v0.6.43 # FLYTESCHEDULER_TAG + tag: v0.6.53 # FLYTESCHEDULER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytescheduler deployment @@ -116,7 +116,7 @@ datacatalog: # -- Docker image for Datacatalog deployment repository: cr.flyte.org/flyteorg/datacatalog # -- Docker image tag - tag: v0.3.9 # DATACATALOG_TAG + tag: v0.3.16 # DATACATALOG_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Datacatalog deployment @@ -163,7 +163,7 @@ flytepropeller: image: # -- Docker image for Flytepropeller deployment repository: cr.flyte.org/flyteorg/flytepropeller - tag: v0.14.13 # FLYTEPROPELLER_TAG + tag: v0.15.17 # FLYTEPROPELLER_TAG pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytepropeller deployment resources: @@ -206,7 +206,7 @@ flyteconsole: image: # -- Docker image for Flyteconsole deployment repository: cr.flyte.org/flyteorg/flyteconsole - tag: v0.29.0 # FLYTECONSOLE_TAG + tag: v0.30.0 # FLYTECONSOLE_TAG pullPolicy: IfNotPresent # -- Default resources requests and limits for Flyteconsole deployment resources: diff --git a/charts/flyte/README.md b/charts/flyte/README.md index 1e094d9246..654a82f2bd 100644 --- a/charts/flyte/README.md +++ b/charts/flyte/README.md @@ -115,12 +115,12 @@ helm install gateway bitnami/contour -n flyte | contour.replicaCount | int | `1` | Replicas count for Contour deployment | | contour.serviceAccountAnnotations | object | `{}` | Annotations for ServiceAccount attached to Contour pods | | contour.tolerations | list | `[]` | tolerations for Contour deployment | -| datacatalog | object | `{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v0.3.9"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"NodePort"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | DATACATALOG SETTINGS | +| datacatalog | object | `{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v0.3.16"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"NodePort"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | DATACATALOG SETTINGS | | datacatalog.affinity | object | `{}` | affinity for Datacatalog deployment | | datacatalog.configPath | string | `"/etc/datacatalog/config/*.yaml"` | Default regex string for searching configuration files | | datacatalog.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | datacatalog.image.repository | string | `"cr.flyte.org/flyteorg/datacatalog"` | Docker image for Datacatalog deployment | -| datacatalog.image.tag | string | `"v0.3.9"` | Docker image tag | +| datacatalog.image.tag | string | `"v0.3.16"` | Docker image tag | | datacatalog.nodeSelector | object | `{}` | nodeSelector for Datacatalog deployment | | datacatalog.podAnnotations | object | `{}` | Annotations for Datacatalog pods | | datacatalog.replicaCount | int | `1` | Replicas count for Datacatalog deployment | @@ -147,7 +147,7 @@ helm install gateway bitnami/contour -n flyte | flyteadmin.deployRedoc | bool | `true` | Deploys a Redoc container in Flyteadmin's pod | | flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment | -| flyteadmin.image.tag | string | `"v0.6.49"` | Docker image tag | +| flyteadmin.image.tag | string | `"v0.6.53"` | Docker image tag | | flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create | | flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment | | flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods | @@ -160,23 +160,23 @@ helm install gateway bitnami/contour -n flyte | flyteadmin.serviceAccount.create | bool | `true` | Should a service account be created for flyteadmin | | flyteadmin.serviceAccount.imagePullSecrets | object | `{}` | ImapgePullSecrets to automatically assign to the service account | | flyteadmin.tolerations | list | `[]` | tolerations for Flyteadmin deployment | -| flyteconsole | object | `{"affinity":{},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v0.29.0"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"250Mi"},"requests":{"cpu":"10m","memory":"50Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]}` | FLYTECONSOLE SETTINGS | +| flyteconsole | object | `{"affinity":{},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v0.30.0"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"250Mi"},"requests":{"cpu":"10m","memory":"50Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]}` | FLYTECONSOLE SETTINGS | | flyteconsole.affinity | object | `{}` | affinity for Flyteconsole deployment | | flyteconsole.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyteconsole.image.repository | string | `"cr.flyte.org/flyteorg/flyteconsole"` | Docker image for Flyteconsole deployment | -| flyteconsole.image.tag | string | `"v0.29.0"` | Docker image tag | +| flyteconsole.image.tag | string | `"v0.30.0"` | Docker image tag | | flyteconsole.nodeSelector | object | `{}` | nodeSelector for Flyteconsole deployment | | flyteconsole.podAnnotations | object | `{}` | Annotations for Flyteconsole pods | | flyteconsole.replicaCount | int | `1` | Replicas count for Flyteconsole deployment | | flyteconsole.resources | object | `{"limits":{"cpu":"500m","memory":"250Mi"},"requests":{"cpu":"10m","memory":"50Mi"}}` | Default resources requests and limits for Flyteconsole deployment | | flyteconsole.service | object | `{"annotations":{},"type":"ClusterIP"}` | Service settings for Flyteconsole | | flyteconsole.tolerations | list | `[]` | tolerations for Flyteconsole deployment | -| flytepropeller | object | `{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v0.14.13"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"200m","ephemeral-storage":"100Mi","memory":"200Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | FLYTEPROPELLER SETTINGS | +| flytepropeller | object | `{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v0.15.17"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"200m","ephemeral-storage":"100Mi","memory":"200Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | FLYTEPROPELLER SETTINGS | | flytepropeller.affinity | object | `{}` | affinity for Flytepropeller deployment | | flytepropeller.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment | -| flytepropeller.image.tag | string | `"v0.14.13"` | Docker image tag | +| flytepropeller.image.tag | string | `"v0.15.17"` | Docker image tag | | flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment | | flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods | | flytepropeller.replicaCount | int | `1` | Replicas count for Flytepropeller deployment | @@ -186,12 +186,12 @@ helm install gateway bitnami/contour -n flyte | flytepropeller.serviceAccount.create | bool | `true` | Should a service account be created for FlytePropeller | | flytepropeller.serviceAccount.imagePullSecrets | object | `{}` | ImapgePullSecrets to automatically assign to the service account | | flytepropeller.tolerations | list | `[]` | tolerations for Flytepropeller deployment | -| flytescheduler | object | `{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v0.6.49"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | FLYTESCHEDULER SETTINGS | +| flytescheduler | object | `{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v0.6.53"},"nodeSelector":{},"podAnnotations":{},"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":{}},"tolerations":[]}` | FLYTESCHEDULER SETTINGS | | flytescheduler.affinity | object | `{}` | affinity for Flytescheduler deployment | | flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment | -| flytescheduler.image.tag | string | `"v0.6.49"` | Docker image tag | +| flytescheduler.image.tag | string | `"v0.6.53"` | Docker image tag | | flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment | | flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods | | flytescheduler.resources | object | `{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}}` | Default resources requests and limits for Flytescheduler deployment | diff --git a/charts/flyte/values.yaml b/charts/flyte/values.yaml index f014f9fd01..8b25cfe6be 100755 --- a/charts/flyte/values.yaml +++ b/charts/flyte/values.yaml @@ -16,7 +16,7 @@ flyteadmin: # -- Docker image for Flyteadmin deployment repository: cr.flyte.org/flyteorg/flyteadmin # -- Docker image tag - tag: v0.6.49 # FLYTEADMIN_TAG + tag: v0.6.53 # FLYTEADMIN_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flyteadmin deployment @@ -73,7 +73,7 @@ flytescheduler: # -- Docker image for Flytescheduler deployment repository: cr.flyte.org/flyteorg/flytescheduler # -- Docker image tag - tag: v0.6.49 # FLYTESCHEDULER_TAG + tag: v0.6.53 # FLYTESCHEDULER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytescheduler deployment @@ -118,7 +118,7 @@ datacatalog: # -- Docker image for Datacatalog deployment repository: cr.flyte.org/flyteorg/datacatalog # -- Docker image tag - tag: v0.3.9 # DATACATALOG_TAG + tag: v0.3.16 # DATACATALOG_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Datacatalog deployment @@ -166,7 +166,7 @@ flytepropeller: # -- Docker image for Flytepropeller deployment repository: cr.flyte.org/flyteorg/flytepropeller # -- Docker image tag - tag: v0.14.13 # FLYTEPROPELLER_TAG + tag: v0.15.17 # FLYTEPROPELLER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytepropeller deployment @@ -211,7 +211,7 @@ flyteconsole: # -- Docker image for Flyteconsole deployment repository: cr.flyte.org/flyteorg/flyteconsole # -- Docker image tag - tag: v0.29.0 # FLYTECONSOLE_TAG + tag: v0.30.0 # FLYTECONSOLE_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flyteconsole deployment diff --git a/deployment/eks/flyte_core_helm_generated.yaml b/deployment/eks/flyte_core_helm_generated.yaml index d08c9f5805..6ad7f03cad 100644 --- a/deployment/eks/flyte_core_helm_generated.yaml +++ b/deployment/eks/flyte_core_helm_generated.yaml @@ -783,7 +783,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -800,7 +800,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -814,7 +814,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -825,7 +825,7 @@ spec: - mountPath: /etc/flyte/config name: config-volume - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -848,7 +848,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -929,7 +929,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v0.29.0" + - image: "cr.flyte.org/flyteorg/flyteconsole:v0.30.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -996,7 +996,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1010,7 +1010,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1089,7 +1089,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1142,7 +1142,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v0.14.13 + app.kubernetes.io/version: v0.15.17 annotations: configChecksum: "e7425fcb5931f5a1ccfc272ff07af80519fc001d873e6f3d360f56e1ff940a9" spec: @@ -1153,7 +1153,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1176,7 +1176,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1232,7 +1232,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: diff --git a/deployment/eks/flyte_generated.yaml b/deployment/eks/flyte_generated.yaml index dcad2c8df6..064967f45d 100644 --- a/deployment/eks/flyte_generated.yaml +++ b/deployment/eks/flyte_generated.yaml @@ -8632,7 +8632,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: cr.flyte.org/flyteorg/datacatalog:v0.3.9 + image: cr.flyte.org/flyteorg/datacatalog:v0.3.16 imagePullPolicy: IfNotPresent name: datacatalog ports: @@ -8655,7 +8655,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/datacatalog:v0.3.9 + image: cr.flyte.org/flyteorg/datacatalog:v0.3.16 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8716,7 +8716,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -8743,7 +8743,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8791,7 +8791,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -8838,7 +8838,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8855,7 +8855,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -8869,7 +8869,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -8889,7 +8889,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8943,7 +8943,7 @@ spec: - envFrom: - configMapRef: name: flyte-console-config - image: cr.flyte.org/flyteorg/flyteconsole:v0.29.0 + image: cr.flyte.org/flyteorg/flyteconsole:v0.30.0 name: flyteconsole ports: - containerPort: 8080 @@ -8990,7 +8990,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -9258,7 +9258,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/eks/flyte_helm_generated.yaml b/deployment/eks/flyte_helm_generated.yaml index 1524ce2db7..848199f92e 100644 --- a/deployment/eks/flyte_helm_generated.yaml +++ b/deployment/eks/flyte_helm_generated.yaml @@ -1329,7 +1329,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1346,7 +1346,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -1360,7 +1360,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1371,7 +1371,7 @@ spec: - mountPath: /etc/flyte/config name: config-volume - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -1394,7 +1394,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1475,7 +1475,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "Always" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v0.29.0" + - image: "cr.flyte.org/flyteorg/flyteconsole:v0.30.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -1542,7 +1542,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1556,7 +1556,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1635,7 +1635,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1688,7 +1688,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v0.14.13 + app.kubernetes.io/version: v0.15.17 annotations: configChecksum: "f0f56517059d2ab9e6397a7c55ccb4bfbfaa54bf5662902582c768494539b44" spec: @@ -1699,7 +1699,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1722,7 +1722,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1904,7 +1904,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: diff --git a/deployment/gcp/flyte_core_helm_generated.yaml b/deployment/gcp/flyte_core_helm_generated.yaml index e842167e27..df96aac384 100644 --- a/deployment/gcp/flyte_core_helm_generated.yaml +++ b/deployment/gcp/flyte_core_helm_generated.yaml @@ -783,7 +783,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -799,7 +799,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -812,7 +812,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -822,7 +822,7 @@ spec: - mountPath: /etc/flyte/config name: config-volume - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -845,7 +845,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -916,7 +916,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v0.29.0" + - image: "cr.flyte.org/flyteorg/flyteconsole:v0.30.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -984,7 +984,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -997,7 +997,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1062,7 +1062,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.43" + image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.53" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -1075,7 +1075,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.43" + image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.53" imagePullPolicy: "IfNotPresent" name: flytescheduler resources: @@ -1141,7 +1141,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1187,7 +1187,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v0.14.13 + app.kubernetes.io/version: v0.15.17 annotations: configChecksum: "06fa4b4fb82a374700c8dcc5c2911b763e25eeef535488cb6166e201c0d8a1a" spec: @@ -1198,7 +1198,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1221,7 +1221,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1277,7 +1277,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.43" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: diff --git a/deployment/gcp/flyte_generated.yaml b/deployment/gcp/flyte_generated.yaml index 0fea1ebe73..da68248aa3 100644 --- a/deployment/gcp/flyte_generated.yaml +++ b/deployment/gcp/flyte_generated.yaml @@ -8674,7 +8674,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: cr.flyte.org/flyteorg/datacatalog:v0.3.9 + image: cr.flyte.org/flyteorg/datacatalog:v0.3.16 imagePullPolicy: IfNotPresent name: datacatalog ports: @@ -8697,7 +8697,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/datacatalog:v0.3.9 + image: cr.flyte.org/flyteorg/datacatalog:v0.3.16 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8758,7 +8758,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -8785,7 +8785,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8833,7 +8833,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -8880,7 +8880,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8897,7 +8897,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -8911,7 +8911,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -8931,7 +8931,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8985,7 +8985,7 @@ spec: - envFrom: - configMapRef: name: flyte-console-config - image: cr.flyte.org/flyteorg/flyteconsole:v0.29.0 + image: cr.flyte.org/flyteorg/flyteconsole:v0.30.0 name: flyteconsole ports: - containerPort: 8080 @@ -9032,7 +9032,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -9300,7 +9300,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/gcp/flyte_helm_generated.yaml b/deployment/gcp/flyte_helm_generated.yaml index 7c03e7decf..a60233a90d 100644 --- a/deployment/gcp/flyte_helm_generated.yaml +++ b/deployment/gcp/flyte_helm_generated.yaml @@ -913,7 +913,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -930,7 +930,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -944,7 +944,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -955,7 +955,7 @@ spec: - mountPath: /etc/flyte/config name: config-volume - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -978,7 +978,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1059,7 +1059,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "Always" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v0.29.0" + - image: "cr.flyte.org/flyteorg/flyteconsole:v0.30.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -1134,7 +1134,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -1148,7 +1148,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -1223,7 +1223,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.49" + image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.53" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -1239,7 +1239,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.49" + image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.53" imagePullPolicy: "IfNotPresent" name: flytescheduler resources: @@ -1313,7 +1313,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1366,7 +1366,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v0.14.13 + app.kubernetes.io/version: v0.15.17 annotations: configChecksum: "e6061ecfb96415f4871fd08abec51204dec69e23cb6d8f5d89583676657de08" spec: @@ -1377,7 +1377,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1400,7 +1400,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1530,7 +1530,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: diff --git a/deployment/sandbox/flyte_generated.yaml b/deployment/sandbox/flyte_generated.yaml index 680a630866..23956f7182 100644 --- a/deployment/sandbox/flyte_generated.yaml +++ b/deployment/sandbox/flyte_generated.yaml @@ -2777,7 +2777,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: cr.flyte.org/flyteorg/datacatalog:v0.3.9 + image: cr.flyte.org/flyteorg/datacatalog:v0.3.16 imagePullPolicy: IfNotPresent name: datacatalog ports: @@ -2795,7 +2795,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/datacatalog:v0.3.9 + image: cr.flyte.org/flyteorg/datacatalog:v0.3.16 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -2856,7 +2856,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -2886,7 +2886,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -2937,7 +2937,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -2963,7 +2963,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: sync-cluster-resources-goroutine volumeMounts: @@ -3006,7 +3006,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -3022,7 +3022,7 @@ spec: - seed-projects - flytesnacks - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -3036,7 +3036,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -3056,7 +3056,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -3110,7 +3110,7 @@ spec: - envFrom: - configMapRef: name: flyte-console-config - image: cr.flyte.org/flyteorg/flyteconsole:v0.29.0 + image: cr.flyte.org/flyteorg/flyteconsole:v0.30.0 name: flyteconsole ports: - containerPort: 8080 @@ -3157,7 +3157,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -3548,7 +3548,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/sandbox/flyte_helm_generated.yaml b/deployment/sandbox/flyte_helm_generated.yaml index 5ae95e0bc2..2ae120fbd0 100644 --- a/deployment/sandbox/flyte_helm_generated.yaml +++ b/deployment/sandbox/flyte_helm_generated.yaml @@ -3251,7 +3251,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -3267,7 +3267,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -3280,7 +3280,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -3290,7 +3290,7 @@ spec: - mountPath: /etc/flyte/config name: config-volume - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -3313,7 +3313,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -3404,7 +3404,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "Always" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v0.29.0" + - image: "cr.flyte.org/flyteorg/flyteconsole:v0.30.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -3472,7 +3472,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -3485,7 +3485,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/datacatalog:v0.3.9" + image: "cr.flyte.org/flyteorg/datacatalog:v0.3.16" imagePullPolicy: "IfNotPresent" name: datacatalog ports: @@ -3550,7 +3550,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.49" + image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.53" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -3565,7 +3565,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.49" + image: "cr.flyte.org/flyteorg/flytescheduler:v0.6.53" imagePullPolicy: "IfNotPresent" name: flytescheduler resources: @@ -3742,7 +3742,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -3788,7 +3788,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v0.14.13 + app.kubernetes.io/version: v0.15.17 annotations: configChecksum: "75bc68f92c6e42261dbda75899da728751f494060a31ad9088def7aa8c96e53" spec: @@ -3799,7 +3799,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -3822,7 +3822,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v0.14.13" + image: "cr.flyte.org/flyteorg/flytepropeller:v0.15.17" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -3878,7 +3878,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.49" + image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.53" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: diff --git a/deployment/test/flyte_generated.yaml b/deployment/test/flyte_generated.yaml index 7c46efc116..922c54d8e0 100644 --- a/deployment/test/flyte_generated.yaml +++ b/deployment/test/flyte_generated.yaml @@ -637,7 +637,7 @@ spec: - --config - /etc/datacatalog/config/*.yaml - serve - image: cr.flyte.org/flyteorg/datacatalog:v0.3.9 + image: cr.flyte.org/flyteorg/datacatalog:v0.3.16 imagePullPolicy: IfNotPresent name: datacatalog ports: @@ -655,7 +655,7 @@ spec: - /etc/datacatalog/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/datacatalog:v0.3.9 + image: cr.flyte.org/flyteorg/datacatalog:v0.3.16 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -716,7 +716,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -743,7 +743,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -791,7 +791,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -846,7 +846,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -862,7 +862,7 @@ spec: - seed-projects - flytetester - flytesnacks - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -876,7 +876,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -896,7 +896,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v0.6.43 + image: cr.flyte.org/flyteorg/flyteadmin:v0.6.53 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -960,7 +960,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.name - image: cr.flyte.org/flyteorg/flytepropeller:v0.14.13 + image: cr.flyte.org/flyteorg/flytepropeller:v0.15.17 imagePullPolicy: IfNotPresent name: flytepropeller ports: diff --git a/kustomize/overlays/eks/kustomization.yaml b/kustomize/overlays/eks/kustomization.yaml index 4b2f9e4e64..01624de20e 100644 --- a/kustomize/overlays/eks/kustomization.yaml +++ b/kustomize/overlays/eks/kustomization.yaml @@ -21,23 +21,23 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v0.6.43 # FLYTEADMIN_TAG override the tag + newTag: v0.6.53 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v0.29.0 # FLYTECONSOLE_TAG the tag + newTag: v0.30.0 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name - newTag: v0.3.9 # DATACATALOG_TAG override the tag + newTag: v0.3.16 # DATACATALOG_TAG override the tag newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v0.14.13 # FLYTEPROPELLER_TAG override the tag + newTag: v0.15.17 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v0.14.13 # FLYTEPROPELLER_TAG override the tag + newTag: v0.15.17 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Override postgres image to use alpine based (rather smaller) docker image - name: postgres diff --git a/kustomize/overlays/gcp/kustomization.yaml b/kustomize/overlays/gcp/kustomization.yaml index 5496642c1a..288218900e 100644 --- a/kustomize/overlays/gcp/kustomization.yaml +++ b/kustomize/overlays/gcp/kustomization.yaml @@ -23,23 +23,23 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v0.6.43 # FLYTEADMIN_TAG override the tag + newTag: v0.6.53 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v0.29.0 # FLYTECONSOLE_TAG the tag + newTag: v0.30.0 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name - newTag: v0.3.9 # DATACATALOG_TAG override the tag + newTag: v0.3.16 # DATACATALOG_TAG override the tag newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v0.14.13 # FLYTEPROPELLER_TAG override the tag + newTag: v0.15.17 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v0.14.13 # FLYTEPROPELLER_TAG override the tag + newTag: v0.15.17 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Override postgres image to use alpine based (rather smaller) docker image - name: postgres diff --git a/kustomize/overlays/sandbox/kustomization.yaml b/kustomize/overlays/sandbox/kustomization.yaml index 2cb9737d9b..ea6595c349 100644 --- a/kustomize/overlays/sandbox/kustomization.yaml +++ b/kustomize/overlays/sandbox/kustomization.yaml @@ -25,23 +25,23 @@ resources: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v0.6.43 # FLYTEADMIN_TAG override the tag + newTag: v0.6.53 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v0.29.0 # FLYTECONSOLE_TAG the tag + newTag: v0.30.0 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name - newTag: v0.3.9 # DATACATALOG_TAG override the tag + newTag: v0.3.16 # DATACATALOG_TAG override the tag newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v0.14.13 # FLYTEPROPELLER_TAG override the tag + newTag: v0.15.17 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v0.14.13 # FLYTEPROPELLER_TAG override the tag + newTag: v0.15.17 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Override postgres image to use alpine based (rather smaller) docker image - name: postgres diff --git a/kustomize/overlays/test/kustomization.yaml b/kustomize/overlays/test/kustomization.yaml index 21fccf030a..94a3d60feb 100644 --- a/kustomize/overlays/test/kustomization.yaml +++ b/kustomize/overlays/test/kustomization.yaml @@ -19,23 +19,23 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v0.6.43 # FLYTEADMIN_TAG override the tag + newTag: v0.6.53 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v0.29.0 # FLYTECONSOLE_TAG the tag + newTag: v0.30.0 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name - newTag: v0.3.9 # DATACATALOG_TAG override the tag + newTag: v0.3.16 # DATACATALOG_TAG override the tag newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v0.14.13 # FLYTEPROPELLER_TAG override the tag + newTag: v0.15.17 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v0.14.13 # FLYTEPROPELLER_TAG override the tag + newTag: v0.15.17 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Override postgres image to use alpine based (rather smaller) docker image - name: postgres