From 88f6d15cd2c0b434600dfcb6ff631d7803abb0c2 Mon Sep 17 00:00:00 2001 From: Flyte Bot Date: Fri, 12 May 2023 14:14:15 -0700 Subject: [PATCH] Update Flyte components (#3675) * Update Flyte Components Signed-off-by: Flyte-Bot * Add changelog and bump version in conf.py Signed-off-by: eduardo apolinario --------- Signed-off-by: Flyte-Bot Signed-off-by: eduardo apolinario Co-authored-by: eapolinario --- CHANGELOG/CHANGELOG-v1.6.0.md | 72 +++++++++++++++++++ charts/flyte-core/README.md | 8 +-- charts/flyte-core/values.yaml | 8 +-- charts/flyte/README.md | 10 +-- charts/flyte/values.yaml | 8 +-- .../flyte_aws_scheduler_helm_generated.yaml | 22 +++--- deployment/eks/flyte_generated.yaml | 20 +++--- .../flyte_helm_controlplane_generated.yaml | 18 ++--- .../eks/flyte_helm_dataplane_generated.yaml | 8 +-- deployment/eks/flyte_helm_generated.yaml | 26 +++---- deployment/gcp/flyte_generated.yaml | 20 +++--- .../flyte_helm_controlplane_generated.yaml | 18 ++--- .../gcp/flyte_helm_dataplane_generated.yaml | 8 +-- deployment/gcp/flyte_helm_generated.yaml | 26 +++---- deployment/sandbox/flyte_generated.yaml | 22 +++--- deployment/sandbox/flyte_helm_generated.yaml | 26 +++---- deployment/test/flyte_generated.yaml | 16 ++--- .../sandbox-bundled/manifests/complete.yaml | 4 +- docker/sandbox-bundled/manifests/dev.yaml | 4 +- go.mod | 4 +- go.sum | 8 +-- kustomize/overlays/eks/kustomization.yaml | 8 +-- kustomize/overlays/gcp/kustomization.yaml | 8 +-- kustomize/overlays/sandbox/kustomization.yaml | 8 +-- kustomize/overlays/test/kustomization.yaml | 8 +-- rsts/conf.py | 2 +- 26 files changed, 231 insertions(+), 159 deletions(-) create mode 100644 CHANGELOG/CHANGELOG-v1.6.0.md diff --git a/CHANGELOG/CHANGELOG-v1.6.0.md b/CHANGELOG/CHANGELOG-v1.6.0.md new file mode 100644 index 0000000000..c3958d015f --- /dev/null +++ b/CHANGELOG/CHANGELOG-v1.6.0.md @@ -0,0 +1,72 @@ +# Flyte v1.6.0 release + +In this release we're announcing support for writing backend plugins in python. This is in experimental state, feedback +and bug reports are welcome! + +## Database migrations + +This release contains a database migration that remediates an issue that we discovered with very old installations of Flyte. +For more details, please read the Flyte [https://github.com/flyteorg/flyte/releases/tag/v1.5.1](1.5.1 release notes). + + +## Platform + +As mentioned in the previous release, we are working to improve performance investigations. In this release we're announcing: +1. Runtime metrics UI +2. [Profile time spent in a task](https://github.com/flyteorg/flytekit/pull/1581) via @timeit decorator +3. [Lazy loading of flytekit dependencies](https://github.com/flyteorg/flytekit/pull/1590) + +## flytekit + +Lots of features shipped in 1.6, including: +1. [Prettified pyflyte run logs](https://github.com/flyteorg/flytekit/pull/1602) +2. [Simplified image builds via ImageSpec](https://github.com/flyteorg/flytekit/pull/1555) +3. [External backed plugins](https://github.com/flyteorg/flytekit/pull/1524) + +For a full changelog, go to https://github.com/flyteorg/flytekit/releases/tag/v1.6.0. + +## Console +* feat: show launchplan in execution table by @pradithya in https://github.com/flyteorg/flyteconsole/pull/738 +* feat: show launch plan information in workflow's schedules by @pradithya in https://github.com/flyteorg/flyteconsole/pull/739 +* fix: passthrough runtime env vars by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/741 +* chore: add fallback to task execution link by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/743 +* chore: allow custom subnav by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/734 +* fix: force node executions to pull their status by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/737 +* chore: fix details panel card padding by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/745 +* chore: fix crash by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/746 +* [UI Feature] Add full-list log output to execution detail panel by @james-union in https://github.com/flyteorg/flyteconsole/pull/744 +* TLM add log-message window to left panel by @james-union in https://github.com/flyteorg/flyteconsole/pull/748 +* [Snyk] Upgrade eslint from 8.31.0 to 8.33.0 by @EngHabu in https://github.com/flyteorg/flyteconsole/pull/695 +* chore: [tlm] comprehensive node execution query by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/749 +* chore: guard against /tasks failing by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/750 +* chore: propagate dynamic parent id by @ursucarina in https://github.com/flyteorg/flyteconsole/pull/751 +* Add support fetching description entity by @pingsutw in https://github.com/flyteorg/flyteconsole/pull/735 + +## Admin +* Infer GOOS and GOARCH from environment by @jeevb in https://github.com/flyteorg/flyteadmin/pull/550 +* Enrich TerminateExecution error to tell propeller the execution already terminated by @EngHabu in https://github.com/flyteorg/flyteadmin/pull/551 +* Address resolution by @wild-endeavor in https://github.com/flyteorg/flyteadmin/pull/546 +* Add migration to turn `parent_id` column into `bigint` only if necessary by @eapolinario in https://github.com/flyteorg/flyteadmin/pull/554 + +## Propeller +* Moved controller-runtime start out of webhook Run function by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/546 +* Fixing recovering of SKIPPED nodes by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/551 +* Remove resource injection on the node for container task by @ByronHsu in https://github.com/flyteorg/flytepropeller/pull/544 +* Infer GOOS and GOARCH from environment by @jeevb in https://github.com/flyteorg/flytepropeller/pull/552 +* fix makefile to read variables from environment and overrides by @jeevb in https://github.com/flyteorg/flytepropeller/pull/554 +* Remove BarrierTick by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/545 +* Check for TerminateExecution error and eat Precondition status by @EngHabu in https://github.com/flyteorg/flytepropeller/pull/553 +* Setting primaryContainerName by default on Pod plugin by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/555 +* Implement ability to specify additional/override annotations when using Vault Secret Manager by @pradithya in https://github.com/flyteorg/flytepropeller/pull/556 +* Maintaining Interruptible and OverwriteCache for reference launchplans by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/557 +* Added support for aborting task nodes reported as failures by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/541 +* Added support for EnvironmentVariables on ExecutionConfig by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/558 +* Fast fail if task resource requests exceed k8s resource limits by @hamersaw in https://github.com/flyteorg/flytepropeller/pull/488 + +## New Contributors +* @wckdman made their first contribution in https://github.com/flyteorg/flytekit/pull/1588 +* @peridotml made their first contribution in https://github.com/flyteorg/flytekit/pull/1599 +* @ringohoffman made their first contribution in https://github.com/flyteorg/flytekit/pull/1631 +* @elibixby made their first contribution in https://github.com/flyteorg/flytekit/pull/1615 +* @ByronHsu made their first contribution in https://github.com/flyteorg/flytepropeller/pull/544 + diff --git a/charts/flyte-core/README.md b/charts/flyte-core/README.md index 6d7461ea46..5d2b94fa28 100644 --- a/charts/flyte-core/README.md +++ b/charts/flyte-core/README.md @@ -151,7 +151,7 @@ helm install gateway bitnami/contour -n flyte | flyteadmin.extraArgs | object | `{}` | Appends extra command line arguments to the serve command | | flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | | | flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment | -| flyteadmin.image.tag | string | `"v1.1.92"` | | +| flyteadmin.image.tag | string | `"v1.1.94"` | | | flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create | | flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment | | flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods | @@ -173,7 +173,7 @@ helm install gateway bitnami/contour -n flyte | flyteconsole.ga.tracking_id | string | `"G-0QW4DJWJ20"` | | | flyteconsole.image.pullPolicy | string | `"IfNotPresent"` | | | flyteconsole.image.repository | string | `"cr.flyte.org/flyteorg/flyteconsole"` | Docker image for Flyteconsole deployment | -| flyteconsole.image.tag | string | `"v1.6.2"` | | +| flyteconsole.image.tag | string | `"v1.8.0"` | | | flyteconsole.nodeSelector | object | `{}` | nodeSelector for Flyteconsole deployment | | flyteconsole.podAnnotations | object | `{}` | Annotations for Flyteconsole pods | | flyteconsole.priorityClassName | string | `""` | Sets priorityClassName for flyte console pod(s). | @@ -193,7 +193,7 @@ helm install gateway bitnami/contour -n flyte | flytepropeller.extraArgs | object | `{}` | Appends extra command line arguments to the main command | | flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | | | flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment | -| flytepropeller.image.tag | string | `"v1.1.88"` | | +| flytepropeller.image.tag | string | `"v1.1.89"` | | | flytepropeller.manager | bool | `false` | | | flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment | | flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods | @@ -213,7 +213,7 @@ helm install gateway bitnami/contour -n flyte | 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 | `"v1.1.92"` | Docker image tag | +| flytescheduler.image.tag | string | `"v1.1.94"` | Docker image tag | | flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment | | flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods | | flytescheduler.priorityClassName | string | `""` | Sets priorityClassName for flyte scheduler pod(s). | diff --git a/charts/flyte-core/values.yaml b/charts/flyte-core/values.yaml index 7fbf6c423d..1ae7e4bae3 100755 --- a/charts/flyte-core/values.yaml +++ b/charts/flyte-core/values.yaml @@ -16,7 +16,7 @@ flyteadmin: image: # -- Docker image for Flyteadmin deployment repository: cr.flyte.org/flyteorg/flyteadmin # FLYTEADMIN_IMAGE - tag: v1.1.92 # FLYTEADMIN_TAG + tag: v1.1.94 # FLYTEADMIN_TAG pullPolicy: IfNotPresent # -- Additional flyteadmin container environment variables # @@ -97,7 +97,7 @@ flytescheduler: # -- Docker image for Flytescheduler deployment repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE # -- Docker image tag - tag: v1.1.92 # FLYTESCHEDULER_TAG + tag: v1.1.94 # FLYTESCHEDULER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytescheduler deployment @@ -212,7 +212,7 @@ flytepropeller: image: # -- Docker image for Flytepropeller deployment repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE - tag: v1.1.88 # FLYTEPROPELLER_TAG + tag: v1.1.89 # FLYTEPROPELLER_TAG pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytepropeller deployment resources: @@ -270,7 +270,7 @@ flyteconsole: image: # -- Docker image for Flyteconsole deployment repository: cr.flyte.org/flyteorg/flyteconsole # FLYTECONSOLE_IMAGE - tag: v1.6.2 # FLYTECONSOLE_TAG + tag: v1.8.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 08181ab824..c94b1d67f3 100644 --- a/charts/flyte/README.md +++ b/charts/flyte/README.md @@ -71,7 +71,7 @@ helm upgrade -f values-sandbox.yaml flyte . | contour.tolerations | list | `[]` | tolerations for Contour deployment | | daskoperator | object | `{"enabled":false}` | Optional: Dask Plugin using the Dask Operator | | daskoperator.enabled | bool | `false` | - enable or disable the dask operator deployment installation | -| flyte | object | `{"cluster_resource_manager":{"config":{"cluster_resources":{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}},"enabled":true,"service_account_name":"flyteadmin","templates":[{"key":"aa_namespace","value":"apiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ namespace }}\nspec:\n finalizers:\n - kubernetes\n"},{"key":"ab_project_resource_quota","value":"apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }}\nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }}\n limits.memory: {{ projectQuotaMemory }}\n"}]},"common":{"databaseSecret":{"name":"","secretManifest":{}},"flyteNamespaceTemplate":{"enabled":false},"ingress":{"albSSLRedirect":false,"annotations":{"nginx.ingress.kubernetes.io/app-root":"/console"},"enabled":true,"host":"","separateGrpcIngress":false,"separateGrpcIngressAnnotations":{"nginx.ingress.kubernetes.io/backend-protocol":"GRPC"},"tls":{"enabled":false},"webpackHMR":true}},"configmap":{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.30","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"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"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array"]}}},"k8s":{"plugins":{"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}},"datacatalog":{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v1.0.46"},"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":[]},"db":{"admin":{"database":{"dbname":"flyteadmin","host":"postgres","port":5432,"username":"postgres"}},"datacatalog":{"database":{"dbname":"datacatalog","host":"postgres","port":5432,"username":"postgres"}}},"deployRedoc":true,"flyteadmin":{"additionalVolumeMounts":[],"additionalVolumes":[],"affinity":{},"configPath":"/etc/flyte/config/*.yaml","env":[],"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteadmin","tag":"v1.1.92"},"initialProjects":["flytesnacks","flytetester","flyteexamples"],"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"loadBalancerSourceRanges":[],"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flyteconsole":{"affinity":{},"ga":{"enabled":true,"tracking_id":"G-0QW4DJWJ20"},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v1.6.2"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"275Mi"},"requests":{"cpu":"10m","memory":"250Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]},"flytepropeller":{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v1.1.88"},"manager":false,"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":[]},"flytescheduler":{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v1.1.92"},"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":[]},"storage":{"bucketName":"my-s3-bucket","custom":{},"gcs":null,"s3":{"region":"us-east-1"},"type":"sandbox"},"webhook":{"enabled":true,"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]}},"workflow_notifications":{"config":{},"enabled":false},"workflow_scheduler":{"enabled":true,"type":"native"}}` | ------------------------------------------------------------------- Core System settings This section consists of Core components of Flyte and their deployment settings. This includes FlyteAdmin service, Datacatalog, FlytePropeller and Flyteconsole | +| flyte | object | `{"cluster_resource_manager":{"config":{"cluster_resources":{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}},"enabled":true,"service_account_name":"flyteadmin","templates":[{"key":"aa_namespace","value":"apiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ namespace }}\nspec:\n finalizers:\n - kubernetes\n"},{"key":"ab_project_resource_quota","value":"apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }}\nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }}\n limits.memory: {{ projectQuotaMemory }}\n"}]},"common":{"databaseSecret":{"name":"","secretManifest":{}},"flyteNamespaceTemplate":{"enabled":false},"ingress":{"albSSLRedirect":false,"annotations":{"nginx.ingress.kubernetes.io/app-root":"/console"},"enabled":true,"host":"","separateGrpcIngress":false,"separateGrpcIngressAnnotations":{"nginx.ingress.kubernetes.io/backend-protocol":"GRPC"},"tls":{"enabled":false},"webpackHMR":true}},"configmap":{"adminServer":{"auth":{"appAuth":{"thirdPartyConfig":{"flyteClient":{"clientId":"flytectl","redirectUri":"http://localhost:53593/callback","scopes":["offline","all"]}}},"authorizedUris":["https://localhost:30081","http://flyteadmin:80","http://flyteadmin.flyte.svc.cluster.local:80"],"userAuth":{"openId":{"baseUrl":"https://accounts.google.com","clientId":"657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com","scopes":["profile","openid"]}}},"flyteadmin":{"eventVersion":2,"metadataStoragePrefix":["metadata","admin"],"metricsScope":"flyte:","profilerPort":10254,"roleNameKey":"iam.amazonaws.com/role","testing":{"host":"http://flyteadmin"}},"server":{"grpcPort":8089,"httpPort":8088,"security":{"allowCors":true,"allowedHeaders":["Content-Type","flyte-authorization"],"allowedOrigins":["*"],"secure":false,"useAuth":false}}},"catalog":{"catalog-cache":{"endpoint":"datacatalog:89","insecure":true,"type":"datacatalog"}},"console":{"BASE_URL":"/console","CONFIG_DIR":"/etc/flyte/config"},"copilot":{"plugins":{"k8s":{"co-pilot":{"image":"cr.flyte.org/flyteorg/flytecopilot:v0.0.30","name":"flyte-copilot-","start-timeout":"30s"}}}},"core":{"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"}},"datacatalogServer":{"application":{"grpcPort":8089,"grpcServerReflection":true,"httpPort":8080},"datacatalog":{"metrics-scope":"datacatalog","profiler-port":10254,"storage-prefix":"metadata/datacatalog"}},"domain":{"domains":[{"id":"development","name":"development"},{"id":"staging","name":"staging"},{"id":"production","name":"production"}]},"enabled_plugins":{"tasks":{"task-plugins":{"default-for-task-types":{"container":"container","container_array":"k8s-array","sidecar":"sidecar"},"enabled-plugins":["container","sidecar","k8s-array"]}}},"k8s":{"plugins":{"k8s":{"default-cpus":"100m","default-env-vars":[{"FLYTE_AWS_ENDPOINT":"http://minio.flyte:9000"},{"FLYTE_AWS_ACCESS_KEY_ID":"minio"},{"FLYTE_AWS_SECRET_ACCESS_KEY":"miniostorage"}],"default-memory":"200Mi"}}},"logger":{"logger":{"level":5,"show-source":true}},"remoteData":{"remoteData":{"region":"us-east-1","scheme":"local","signedUrls":{"durationMinutes":3}}},"resource_manager":{"propeller":{"resourcemanager":{"redis":null,"type":"noop"}}},"task_logs":{"plugins":{"logs":{"cloudwatch-enabled":false,"kubernetes-enabled":true,"kubernetes-template-uri":"http://localhost:30082/#/log/{{ \"{{\" }} .namespace {{ \"}}\" }}/{{ \"{{\" }} .podName {{ \"}}\" }}/pod?namespace={{ \"{{\" }} .namespace {{ \"}}\" }}"}}},"task_resource_defaults":{"task_resources":{"defaults":{"cpu":"100m","memory":"200Mi","storage":"5Mi"},"limits":{"cpu":2,"gpu":1,"memory":"1Gi","storage":"20Mi"}}}},"datacatalog":{"affinity":{},"configPath":"/etc/datacatalog/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/datacatalog","tag":"v1.0.46"},"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":[]},"db":{"admin":{"database":{"dbname":"flyteadmin","host":"postgres","port":5432,"username":"postgres"}},"datacatalog":{"database":{"dbname":"datacatalog","host":"postgres","port":5432,"username":"postgres"}}},"deployRedoc":true,"flyteadmin":{"additionalVolumeMounts":[],"additionalVolumes":[],"affinity":{},"configPath":"/etc/flyte/config/*.yaml","env":[],"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteadmin","tag":"v1.1.94"},"initialProjects":["flytesnacks","flytetester","flyteexamples"],"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"250m","ephemeral-storage":"100Mi","memory":"500Mi"},"requests":{"cpu":"10m","ephemeral-storage":"50Mi","memory":"50Mi"}},"secrets":{},"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"loadBalancerSourceRanges":[],"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]},"tolerations":[]},"flyteconsole":{"affinity":{},"ga":{"enabled":true,"tracking_id":"G-0QW4DJWJ20"},"image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flyteconsole","tag":"v1.8.0"},"nodeSelector":{},"podAnnotations":{},"replicaCount":1,"resources":{"limits":{"cpu":"500m","memory":"275Mi"},"requests":{"cpu":"10m","memory":"250Mi"}},"service":{"annotations":{},"type":"ClusterIP"},"tolerations":[]},"flytepropeller":{"affinity":{},"cacheSizeMbs":0,"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytepropeller","tag":"v1.1.89"},"manager":false,"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":[]},"flytescheduler":{"affinity":{},"configPath":"/etc/flyte/config/*.yaml","image":{"pullPolicy":"IfNotPresent","repository":"cr.flyte.org/flyteorg/flytescheduler","tag":"v1.1.94"},"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":[]},"storage":{"bucketName":"my-s3-bucket","custom":{},"gcs":null,"s3":{"region":"us-east-1"},"type":"sandbox"},"webhook":{"enabled":true,"service":{"annotations":{"projectcontour.io/upstream-protocol.h2c":"grpc"},"type":"ClusterIP"},"serviceAccount":{"annotations":{},"create":true,"imagePullSecrets":[]}},"workflow_notifications":{"config":{},"enabled":false},"workflow_scheduler":{"enabled":true,"type":"native"}}` | ------------------------------------------------------------------- Core System settings This section consists of Core components of Flyte and their deployment settings. This includes FlyteAdmin service, Datacatalog, FlytePropeller and Flyteconsole | | flyte.cluster_resource_manager | object | `{"config":{"cluster_resources":{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}},"enabled":true,"service_account_name":"flyteadmin","templates":[{"key":"aa_namespace","value":"apiVersion: v1\nkind: Namespace\nmetadata:\n name: {{ namespace }}\nspec:\n finalizers:\n - kubernetes\n"},{"key":"ab_project_resource_quota","value":"apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }}\nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }}\n limits.memory: {{ projectQuotaMemory }}\n"}]}` | Configuration for the Cluster resource manager component. This is an optional component, that enables automatic cluster configuration. This is useful to set default quotas, manage namespaces etc that map to a project/domain | | flyte.cluster_resource_manager.config.cluster_resources | object | `{"customData":[{"production":[{"projectQuotaCpu":{"value":"5"}},{"projectQuotaMemory":{"value":"4000Mi"}}]},{"staging":[{"projectQuotaCpu":{"value":"2"}},{"projectQuotaMemory":{"value":"3000Mi"}}]},{"development":[{"projectQuotaCpu":{"value":"4"}},{"projectQuotaMemory":{"value":"3000Mi"}}]}],"refresh":"5m","refreshInterval":"5m","standaloneDeployment":false,"templatePath":"/etc/flyte/clusterresource/templates"}` | ClusterResource parameters Refer to the [structure](https://pkg.go.dev/github.com/lyft/flyteadmin@v0.3.37/pkg/runtime/interfaces#ClusterResourceConfig) to customize. | | flyte.cluster_resource_manager.config.cluster_resources.standaloneDeployment | bool | `false` | Starts the cluster resource manager in standalone mode with requisite auth credentials to call flyteadmin service endpoints | @@ -136,7 +136,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flyteadmin.env | list | `[]` | Additional flyteadmin container environment variables e.g. SendGrid's API key - name: SENDGRID_API_KEY value: "" e.g. secret environment variable (you can combine it with .additionalVolumes): - name: SENDGRID_API_KEY valueFrom: secretKeyRef: name: sendgrid-secret key: api_key | | flyte.flyteadmin.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flyteadmin.image.repository | string | `"cr.flyte.org/flyteorg/flyteadmin"` | Docker image for Flyteadmin deployment | -| flyte.flyteadmin.image.tag | string | `"v1.1.92"` | Docker image tag | +| flyte.flyteadmin.image.tag | string | `"v1.1.94"` | Docker image tag | | flyte.flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create | | flyte.flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment | | flyte.flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods | @@ -151,7 +151,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flyteconsole.affinity | object | `{}` | affinity for Flyteconsole deployment | | flyte.flyteconsole.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flyteconsole.image.repository | string | `"cr.flyte.org/flyteorg/flyteconsole"` | Docker image for Flyteconsole deployment | -| flyte.flyteconsole.image.tag | string | `"v1.6.2"` | Docker image tag | +| flyte.flyteconsole.image.tag | string | `"v1.8.0"` | Docker image tag | | flyte.flyteconsole.nodeSelector | object | `{}` | nodeSelector for Flyteconsole deployment | | flyte.flyteconsole.podAnnotations | object | `{}` | Annotations for Flyteconsole pods | | flyte.flyteconsole.replicaCount | int | `1` | Replicas count for Flyteconsole deployment | @@ -162,7 +162,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flytepropeller.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flyte.flytepropeller.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flytepropeller.image.repository | string | `"cr.flyte.org/flyteorg/flytepropeller"` | Docker image for Flytepropeller deployment | -| flyte.flytepropeller.image.tag | string | `"v1.1.88"` | Docker image tag | +| flyte.flytepropeller.image.tag | string | `"v1.1.89"` | Docker image tag | | flyte.flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment | | flyte.flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods | | flyte.flytepropeller.replicaCount | int | `1` | Replicas count for Flytepropeller deployment | @@ -176,7 +176,7 @@ helm upgrade -f values-sandbox.yaml flyte . | flyte.flytescheduler.configPath | string | `"/etc/flyte/config/*.yaml"` | Default regex string for searching configuration files | | flyte.flytescheduler.image.pullPolicy | string | `"IfNotPresent"` | Docker image pull policy | | flyte.flytescheduler.image.repository | string | `"cr.flyte.org/flyteorg/flytescheduler"` | Docker image for Flytescheduler deployment | -| flyte.flytescheduler.image.tag | string | `"v1.1.92"` | Docker image tag | +| flyte.flytescheduler.image.tag | string | `"v1.1.94"` | Docker image tag | | flyte.flytescheduler.nodeSelector | object | `{}` | nodeSelector for Flytescheduler deployment | | flyte.flytescheduler.podAnnotations | object | `{}` | Annotations for Flytescheduler pods | | flyte.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 1aace56ce8..f8af1ef29d 100755 --- a/charts/flyte/values.yaml +++ b/charts/flyte/values.yaml @@ -16,7 +16,7 @@ flyte: # -- Docker image for Flyteadmin deployment repository: cr.flyte.org/flyteorg/flyteadmin # FLYTEADMIN_IMAGE # -- Docker image tag - tag: v1.1.92 # FLYTEADMIN_TAG + tag: v1.1.94 # FLYTEADMIN_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Additional flyteadmin container environment variables @@ -84,7 +84,7 @@ flyte: # -- Docker image for Flytescheduler deployment repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE # -- Docker image tag - tag: v1.1.92 # FLYTESCHEDULER_TAG + tag: v1.1.94 # FLYTESCHEDULER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytescheduler deployment @@ -178,7 +178,7 @@ flyte: # -- Docker image for Flytepropeller deployment repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE # -- Docker image tag - tag: v1.1.88 # FLYTEPROPELLER_TAG + tag: v1.1.89 # FLYTEPROPELLER_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flytepropeller deployment @@ -223,7 +223,7 @@ flyte: # -- Docker image for Flyteconsole deployment repository: cr.flyte.org/flyteorg/flyteconsole # FLYTECONSOLE_IMAGE # -- Docker image tag - tag: v1.6.2 # FLYTECONSOLE_TAG + tag: v1.8.0 # FLYTECONSOLE_TAG # -- Docker image pull policy pullPolicy: IfNotPresent # -- Default resources requests and limits for Flyteconsole deployment diff --git a/deployment/eks/flyte_aws_scheduler_helm_generated.yaml b/deployment/eks/flyte_aws_scheduler_helm_generated.yaml index 3e8aeb13ee..7a8a6c2cd6 100644 --- a/deployment/eks/flyte_aws_scheduler_helm_generated.yaml +++ b/deployment/eks/flyte_aws_scheduler_helm_generated.yaml @@ -868,7 +868,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -885,7 +885,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -899,7 +899,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -912,7 +912,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -935,7 +935,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1036,7 +1036,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1089,7 +1089,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.6.2" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -1255,7 +1255,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1309,7 +1309,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.88 + app.kubernetes.io/version: v1.1.89 annotations: configChecksum: "a9c71eeb913ac23741f1a6cdd8deb9681ecb6efdf2248c3513050c4c10ae7bb" spec: @@ -1320,7 +1320,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1343,7 +1343,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/eks/flyte_generated.yaml b/deployment/eks/flyte_generated.yaml index b8df2362b4..c274e0aa64 100644 --- a/deployment/eks/flyte_generated.yaml +++ b/deployment/eks/flyte_generated.yaml @@ -8724,7 +8724,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -8751,7 +8751,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8799,7 +8799,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -8846,7 +8846,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8863,7 +8863,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -8877,7 +8877,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -8897,7 +8897,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8951,7 +8951,7 @@ spec: - envFrom: - configMapRef: name: flyte-console-config - image: cr.flyte.org/flyteorg/flyteconsole:v1.6.2 + image: cr.flyte.org/flyteorg/flyteconsole:v1.8.0 name: flyteconsole ports: - containerPort: 8080 @@ -9002,7 +9002,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -9270,7 +9270,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/eks/flyte_helm_controlplane_generated.yaml b/deployment/eks/flyte_helm_controlplane_generated.yaml index 1b4384e302..35da8bb089 100644 --- a/deployment/eks/flyte_helm_controlplane_generated.yaml +++ b/deployment/eks/flyte_helm_controlplane_generated.yaml @@ -574,7 +574,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -591,7 +591,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -605,7 +605,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -618,7 +618,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -641,7 +641,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -742,7 +742,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -795,7 +795,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.6.2" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -952,7 +952,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -968,7 +968,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: diff --git a/deployment/eks/flyte_helm_dataplane_generated.yaml b/deployment/eks/flyte_helm_dataplane_generated.yaml index da75e6517f..a243b6adc8 100644 --- a/deployment/eks/flyte_helm_dataplane_generated.yaml +++ b/deployment/eks/flyte_helm_dataplane_generated.yaml @@ -452,7 +452,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -506,7 +506,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.88 + app.kubernetes.io/version: v1.1.89 annotations: configChecksum: "a9c71eeb913ac23741f1a6cdd8deb9681ecb6efdf2248c3513050c4c10ae7bb" spec: @@ -517,7 +517,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -540,7 +540,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/eks/flyte_helm_generated.yaml b/deployment/eks/flyte_helm_generated.yaml index 9cbc7b9f0c..9f6064e7a7 100644 --- a/deployment/eks/flyte_helm_generated.yaml +++ b/deployment/eks/flyte_helm_generated.yaml @@ -899,7 +899,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -916,7 +916,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -930,7 +930,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -943,7 +943,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -966,7 +966,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1067,7 +1067,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1120,7 +1120,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.6.2" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -1277,7 +1277,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -1293,7 +1293,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: @@ -1374,7 +1374,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1428,7 +1428,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.88 + app.kubernetes.io/version: v1.1.89 annotations: configChecksum: "a9c71eeb913ac23741f1a6cdd8deb9681ecb6efdf2248c3513050c4c10ae7bb" spec: @@ -1439,7 +1439,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1462,7 +1462,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/gcp/flyte_generated.yaml b/deployment/gcp/flyte_generated.yaml index 043187c75b..5accc9e0e6 100644 --- a/deployment/gcp/flyte_generated.yaml +++ b/deployment/gcp/flyte_generated.yaml @@ -8766,7 +8766,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -8793,7 +8793,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8841,7 +8841,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -8888,7 +8888,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -8905,7 +8905,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -8919,7 +8919,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -8939,7 +8939,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -8993,7 +8993,7 @@ spec: - envFrom: - configMapRef: name: flyte-console-config - image: cr.flyte.org/flyteorg/flyteconsole:v1.6.2 + image: cr.flyte.org/flyteorg/flyteconsole:v1.8.0 name: flyteconsole ports: - containerPort: 8080 @@ -9044,7 +9044,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -9312,7 +9312,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/gcp/flyte_helm_controlplane_generated.yaml b/deployment/gcp/flyte_helm_controlplane_generated.yaml index bd995e38d5..9ef1d0037c 100644 --- a/deployment/gcp/flyte_helm_controlplane_generated.yaml +++ b/deployment/gcp/flyte_helm_controlplane_generated.yaml @@ -589,7 +589,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -606,7 +606,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -620,7 +620,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -633,7 +633,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -656,7 +656,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -757,7 +757,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -810,7 +810,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.6.2" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -967,7 +967,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -983,7 +983,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: diff --git a/deployment/gcp/flyte_helm_dataplane_generated.yaml b/deployment/gcp/flyte_helm_dataplane_generated.yaml index 560f811504..8f6096f1f8 100644 --- a/deployment/gcp/flyte_helm_dataplane_generated.yaml +++ b/deployment/gcp/flyte_helm_dataplane_generated.yaml @@ -459,7 +459,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -513,7 +513,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.88 + app.kubernetes.io/version: v1.1.89 annotations: configChecksum: "ccfe4f10dade73d343d8be6945fcb0d49c00ef7a83e78bf11262fc9b419a030" spec: @@ -524,7 +524,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -547,7 +547,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/gcp/flyte_helm_generated.yaml b/deployment/gcp/flyte_helm_generated.yaml index cc907ada90..f1e1c659c6 100644 --- a/deployment/gcp/flyte_helm_generated.yaml +++ b/deployment/gcp/flyte_helm_generated.yaml @@ -922,7 +922,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -939,7 +939,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -953,7 +953,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -966,7 +966,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -989,7 +989,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -1090,7 +1090,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -1143,7 +1143,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.6.2" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -1300,7 +1300,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -1316,7 +1316,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: @@ -1396,7 +1396,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -1450,7 +1450,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.88 + app.kubernetes.io/version: v1.1.89 annotations: configChecksum: "ccfe4f10dade73d343d8be6945fcb0d49c00ef7a83e78bf11262fc9b419a030" spec: @@ -1461,7 +1461,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -1484,7 +1484,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/sandbox/flyte_generated.yaml b/deployment/sandbox/flyte_generated.yaml index 9e0fb1632f..26b974f2f2 100644 --- a/deployment/sandbox/flyte_generated.yaml +++ b/deployment/sandbox/flyte_generated.yaml @@ -2864,7 +2864,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -2894,7 +2894,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -2945,7 +2945,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -2971,7 +2971,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: sync-cluster-resources-goroutine volumeMounts: @@ -3014,7 +3014,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -3030,7 +3030,7 @@ spec: - seed-projects - flytesnacks - flyteexamples - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -3044,7 +3044,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -3064,7 +3064,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -3118,7 +3118,7 @@ spec: - envFrom: - configMapRef: name: flyte-console-config - image: cr.flyte.org/flyteorg/flyteconsole:v1.6.2 + image: cr.flyte.org/flyteorg/flyteconsole:v1.8.0 name: flyteconsole ports: - containerPort: 8080 @@ -3169,7 +3169,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: flytepropeller ports: @@ -3560,7 +3560,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: diff --git a/deployment/sandbox/flyte_helm_generated.yaml b/deployment/sandbox/flyte_helm_generated.yaml index e67d40009e..f6cda1223c 100644 --- a/deployment/sandbox/flyte_helm_generated.yaml +++ b/deployment/sandbox/flyte_helm_generated.yaml @@ -6703,7 +6703,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: run-migrations volumeMounts: @@ -6719,7 +6719,7 @@ spec: - flytesnacks - flytetester - flyteexamples - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: seed-projects volumeMounts: @@ -6732,7 +6732,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -6744,7 +6744,7 @@ spec: - mountPath: /etc/secrets/ name: admin-secrets - name: generate-secrets - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" command: ["/bin/sh", "-c"] args: @@ -6767,7 +6767,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: flyteadmin ports: @@ -6858,7 +6858,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - run - image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.92" + image: "cr.flyte.org/flyteorg/flyteadmin:v1.1.94" imagePullPolicy: "IfNotPresent" name: sync-cluster-resources volumeMounts: @@ -6908,7 +6908,7 @@ spec: runAsUser: 1000 fsGroupChangePolicy: "OnRootMismatch" containers: - - image: "cr.flyte.org/flyteorg/flyteconsole:v1.6.2" + - image: "cr.flyte.org/flyteorg/flyteconsole:v1.8.0" imagePullPolicy: "IfNotPresent" name: flyteconsole envFrom: @@ -7052,7 +7052,7 @@ spec: - precheck - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler-check volumeMounts: @@ -7067,7 +7067,7 @@ spec: - run - --config - /etc/flyte/config/*.yaml - image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.92" + image: "cr.flyte.org/flyteorg/flytescheduler:v1.1.94" imagePullPolicy: "IfNotPresent" name: flytescheduler ports: @@ -7144,7 +7144,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" name: flytepropeller ports: @@ -7191,7 +7191,7 @@ spec: labels: app: flyte-pod-webhook app.kubernetes.io/name: flyte-pod-webhook - app.kubernetes.io/version: v1.1.88 + app.kubernetes.io/version: v1.1.89 annotations: configChecksum: "77a1becb51025621fbbeb95c7bca83b0efbb96baa355f13333b94d7de0e7071" spec: @@ -7202,7 +7202,7 @@ spec: serviceAccountName: flyte-pod-webhook initContainers: - name: generate-secrets - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller @@ -7225,7 +7225,7 @@ spec: mountPath: /etc/flyte/config containers: - name: webhook - image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.88" + image: "cr.flyte.org/flyteorg/flytepropeller:v1.1.89" imagePullPolicy: "IfNotPresent" command: - flytepropeller diff --git a/deployment/test/flyte_generated.yaml b/deployment/test/flyte_generated.yaml index 94bb141ccf..3f7fade2f1 100644 --- a/deployment/test/flyte_generated.yaml +++ b/deployment/test/flyte_generated.yaml @@ -724,7 +724,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: webhook volumeMounts: @@ -751,7 +751,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -799,7 +799,7 @@ spec: - --config - /etc/flyte/config/*.yaml - serve - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: flyteadmin ports: @@ -854,7 +854,7 @@ spec: - /etc/flyte/config/*.yaml - migrate - run - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: run-migrations volumeMounts: @@ -870,7 +870,7 @@ spec: - seed-projects - flytetester - flytesnacks - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: seed-projects volumeMounts: @@ -884,7 +884,7 @@ spec: - /etc/flyte/config/*.yaml - clusterresource - sync - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: sync-cluster-resources volumeMounts: @@ -904,7 +904,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flyteadmin:v1.1.92 + image: cr.flyte.org/flyteorg/flyteadmin:v1.1.94 imagePullPolicy: IfNotPresent name: generate-secrets volumeMounts: @@ -972,7 +972,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: cr.flyte.org/flyteorg/flytepropeller:v1.1.88 + image: cr.flyte.org/flyteorg/flytepropeller:v1.1.89 imagePullPolicy: IfNotPresent name: flytepropeller ports: diff --git a/docker/sandbox-bundled/manifests/complete.yaml b/docker/sandbox-bundled/manifests/complete.yaml index 951053d3b5..7a0df4b0b4 100644 --- a/docker/sandbox-bundled/manifests/complete.yaml +++ b/docker/sandbox-bundled/manifests/complete.yaml @@ -765,7 +765,7 @@ type: Opaque --- apiVersion: v1 data: - haSharedSecret: TzB0a0RpZFdIazM3clRsTw== + haSharedSecret: N21JVXZVSWRqQnVscUNTTw== proxyPassword: "" proxyUsername: "" kind: Secret @@ -1267,7 +1267,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: 47c4695069d69171eaf85c66a392f785ce310c1c81afb96a2a3d59a296b0b5c0 + checksum/secret: ddaa1534cba9de2f89796363168a98b40b35716568b83652f60894aa238e860e labels: app: docker-registry release: flyte-sandbox diff --git a/docker/sandbox-bundled/manifests/dev.yaml b/docker/sandbox-bundled/manifests/dev.yaml index 4b445c51f1..e193d2fc49 100644 --- a/docker/sandbox-bundled/manifests/dev.yaml +++ b/docker/sandbox-bundled/manifests/dev.yaml @@ -499,7 +499,7 @@ metadata: --- apiVersion: v1 data: - haSharedSecret: UWZzQTVNUngzUVdTblcwZA== + haSharedSecret: b0NNOHBBN0x0SDdIc1ZybQ== proxyPassword: "" proxyUsername: "" kind: Secret @@ -875,7 +875,7 @@ spec: metadata: annotations: checksum/config: 8f50e768255a87f078ba8b9879a0c174c3e045ffb46ac8723d2eedbe293c8d81 - checksum/secret: 57ec1778703d5d1888c51960bcead5a5975c6321758abf3c0549b64631e60ede + checksum/secret: 803c7ae97796e523265a1b92cbab124c170e172ccc5685ada35b19f8d0092ad5 labels: app: docker-registry release: flyte-sandbox diff --git a/go.mod b/go.mod index 8dc9e9da22..775a69cfbe 100644 --- a/go.mod +++ b/go.mod @@ -4,8 +4,8 @@ go 1.19 require ( github.com/flyteorg/datacatalog v1.0.46 - github.com/flyteorg/flyteadmin v1.1.92 - github.com/flyteorg/flytepropeller v1.1.88 + github.com/flyteorg/flyteadmin v1.1.94 + github.com/flyteorg/flytepropeller v1.1.89 github.com/flyteorg/flytestdlib v1.0.17 github.com/golang/glog v1.0.0 github.com/spf13/cobra v1.4.0 diff --git a/go.sum b/go.sum index 505afc5531..8cdbcc0288 100644 --- a/go.sum +++ b/go.sum @@ -363,14 +363,14 @@ github.com/felixge/httpsnoop v1.0.1 h1:lvB5Jl89CsZtGIWuTcDM1E/vkVs49/Ml7JJe07l8S github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/flyteorg/datacatalog v1.0.46 h1:55zJCroLskg08MrSxZpo0S+uZhQagXJYQN0Rkv4KI8A= github.com/flyteorg/datacatalog v1.0.46/go.mod h1:VhtWkjCBJ9LZpt6uqTyKMYq1IAkW7dUeAdbWN9DI6h0= -github.com/flyteorg/flyteadmin v1.1.92 h1:OnsrtOqHwz3UoDQOALh633TJeYC+CXIMNh2zldvKV88= -github.com/flyteorg/flyteadmin v1.1.92/go.mod h1:dPAtnckmL5hi6uh9+FNPW1J5ujvCtwkcDt2n/zWSY5Y= +github.com/flyteorg/flyteadmin v1.1.94 h1:P6UuqUtKK9aBvMAVSdxEHfDePSoLBQ+tc9Wv5HOcKhc= +github.com/flyteorg/flyteadmin v1.1.94/go.mod h1:9vnzp7OX8u7Xz8NQV+kgKR1Y7lbn4lTKDQF8PLaHeiE= github.com/flyteorg/flyteidl v1.5.0 h1:vdaA5Cg9eqi5NMuASSod/AE7RXlHvzdWjSL9abDyd/M= github.com/flyteorg/flyteidl v1.5.0/go.mod h1:ckLjB51moX4L0oQml+WTCrPK50zrJf6IZJ6LPC0RB4I= github.com/flyteorg/flyteplugins v1.0.56 h1:kBTDgTpdSi7wcptk4cMwz5vfh1MU82VaUMMboe1InXw= github.com/flyteorg/flyteplugins v1.0.56/go.mod h1:aFCKSn8TPzxSAILIiogHtUnHlUCN9+y6Vf+r9R4KZDU= -github.com/flyteorg/flytepropeller v1.1.88 h1:JHo193uOLJcU1Us6dx1jWNb5k55/gL6fx+p0zzsaf5E= -github.com/flyteorg/flytepropeller v1.1.88/go.mod h1:rBTB2jJpSZL1SvbgyiVh5Cobh3Azi/FvawXMxqB/uvo= +github.com/flyteorg/flytepropeller v1.1.89 h1:ewgSdjFSgU597weLDoWjQMf3TT7BjQdCeTSMDPZV9nU= +github.com/flyteorg/flytepropeller v1.1.89/go.mod h1:rBTB2jJpSZL1SvbgyiVh5Cobh3Azi/FvawXMxqB/uvo= github.com/flyteorg/flytestdlib v1.0.17 h1:O+xuCLy1/H/Va4vA1vv/hFG555rCfGNh10ld9yIYumU= github.com/flyteorg/flytestdlib v1.0.17/go.mod h1:ghw/cjY0sEWIIbyCtcJnL/Gt7ZS7gf9SUi0CCPhbz3s= github.com/flyteorg/stow v0.3.6 h1:jt50ciM14qhKBaIrB+ppXXY+SXB59FNREFgTJqCyqIk= diff --git a/kustomize/overlays/eks/kustomization.yaml b/kustomize/overlays/eks/kustomization.yaml index 731b1015e3..112f3d15b9 100644 --- a/kustomize/overlays/eks/kustomization.yaml +++ b/kustomize/overlays/eks/kustomization.yaml @@ -21,11 +21,11 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v1.1.92 # FLYTEADMIN_TAG override the tag + newTag: v1.1.94 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v1.6.2 # FLYTECONSOLE_TAG the tag + newTag: v1.8.0 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name @@ -33,11 +33,11 @@ images: newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v1.1.88 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.89 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v1.1.88 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.89 # 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 8c3e82d0a7..96465eeac2 100644 --- a/kustomize/overlays/gcp/kustomization.yaml +++ b/kustomize/overlays/gcp/kustomization.yaml @@ -23,11 +23,11 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v1.1.92 # FLYTEADMIN_TAG override the tag + newTag: v1.1.94 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v1.6.2 # FLYTECONSOLE_TAG the tag + newTag: v1.8.0 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name @@ -35,11 +35,11 @@ images: newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v1.1.88 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.89 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v1.1.88 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.89 # 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 fdbc74e432..fa723c7e39 100644 --- a/kustomize/overlays/sandbox/kustomization.yaml +++ b/kustomize/overlays/sandbox/kustomization.yaml @@ -25,11 +25,11 @@ resources: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v1.1.92 # FLYTEADMIN_TAG override the tag + newTag: v1.1.94 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v1.6.2 # FLYTECONSOLE_TAG the tag + newTag: v1.8.0 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name @@ -37,11 +37,11 @@ images: newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v1.1.88 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.89 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v1.1.88 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.89 # 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 253bcd7365..db10ee1848 100644 --- a/kustomize/overlays/test/kustomization.yaml +++ b/kustomize/overlays/test/kustomization.yaml @@ -19,11 +19,11 @@ bases: images: # FlyteAdmin - name: flyteadmin # match images with this name - newTag: v1.1.92 # FLYTEADMIN_TAG override the tag + newTag: v1.1.94 # FLYTEADMIN_TAG override the tag newName: cr.flyte.org/flyteorg/flyteadmin # override the name # FlyteConsole - name: flyteconsole # match images with this name - newTag: v1.6.2 # FLYTECONSOLE_TAG the tag + newTag: v1.8.0 # FLYTECONSOLE_TAG the tag newName: cr.flyte.org/flyteorg/flyteconsole # override the namep # Flyte DataCatalog - name: datacatalog # match images with this name @@ -31,11 +31,11 @@ images: newName: cr.flyte.org/flyteorg/datacatalog # override the name # FlytePropeller - name: flytepropeller # match images with this name - newTag: v1.1.88 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.89 # FLYTEPROPELLER_TAG override the tag newName: cr.flyte.org/flyteorg/flytepropeller # override the name # Webhook - name: webhook # match images with this name - newTag: v1.1.88 # FLYTEPROPELLER_TAG override the tag + newTag: v1.1.89 # 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/rsts/conf.py b/rsts/conf.py index c7eb4c7ef4..c60c30fffd 100644 --- a/rsts/conf.py +++ b/rsts/conf.py @@ -30,7 +30,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "1.6.0-b1" +release = "1.6.0" # -- General configuration ---------------------------------------------------