Skip to content

Commit

Permalink
Update Flyte components (#2189)
Browse files Browse the repository at this point in the history
Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Yee Hing Tong <[email protected]>
  • Loading branch information
flyte-bot authored Feb 18, 2022
1 parent 5be0457 commit 230ad92
Show file tree
Hide file tree
Showing 22 changed files with 630 additions and 164 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG/CHANGELOG-v0.19.3-b3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 0.19.3-b3 Change Log

## System
* Properly control Athena token length in plugin
* Relaxed StructuredDataset column compatibility

10 changes: 5 additions & 5 deletions charts/flyte-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ helm install gateway bitnami/contour -n flyte
| datacatalog.extraArgs | object | `{}` | Appends extra command line arguments to the main command |
| 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.22"` | Docker image tag |
| datacatalog.image.tag | string | `"v0.3.23"` | 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 |
Expand Down Expand Up @@ -135,7 +135,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 | `"v0.6.92"` | |
| flyteadmin.image.tag | string | `"v0.6.104"` | |
| flyteadmin.initialProjects | list | `["flytesnacks","flytetester","flyteexamples"]` | Initial projects to create |
| flyteadmin.nodeSelector | object | `{}` | nodeSelector for Flyteadmin deployment |
| flyteadmin.podAnnotations | object | `{}` | Annotations for Flyteadmin pods |
Expand All @@ -155,7 +155,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 | `"v0.41.0"` | |
| flyteconsole.image.tag | string | `"v0.43.0"` | |
| flyteconsole.nodeSelector | object | `{}` | nodeSelector for Flyteconsole deployment |
| flyteconsole.podAnnotations | object | `{}` | Annotations for Flyteconsole pods |
| flyteconsole.replicaCount | int | `1` | Replicas count for Flyteconsole deployment |
Expand All @@ -170,7 +170,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 | `"v0.16.19"` | |
| flytepropeller.image.tag | string | `"v0.16.29"` | |
| flytepropeller.manager | bool | `false` | |
| flytepropeller.nodeSelector | object | `{}` | nodeSelector for Flytepropeller deployment |
| flytepropeller.podAnnotations | object | `{}` | Annotations for Flytepropeller pods |
Expand All @@ -185,7 +185,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 | `"v0.6.92"` | Docker image tag |
| flytescheduler.image.tag | string | `"v0.6.104"` | 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 |
Expand Down
10 changes: 5 additions & 5 deletions charts/flyte-core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ flyteadmin:
image:
# -- Docker image for Flyteadmin deployment
repository: cr.flyte.org/flyteorg/flyteadmin # FLYTEADMIN_IMAGE
tag: v0.6.92 # FLYTEADMIN_TAG
tag: v0.6.104 # FLYTEADMIN_TAG
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Flyteadmin deployment
resources:
Expand Down Expand Up @@ -76,7 +76,7 @@ flytescheduler:
# -- Docker image for Flytescheduler deployment
repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE
# -- Docker image tag
tag: v0.6.92 # FLYTESCHEDULER_TAG
tag: v0.6.104 # FLYTESCHEDULER_TAG
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Flytescheduler deployment
Expand Down Expand Up @@ -122,7 +122,7 @@ datacatalog:
# -- Docker image for Datacatalog deployment
repository: cr.flyte.org/flyteorg/datacatalog # DATACATALOG_IMAGE
# -- Docker image tag
tag: v0.3.22 # DATACATALOG_TAG
tag: v0.3.23 # DATACATALOG_TAG
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Datacatalog deployment
Expand Down Expand Up @@ -173,7 +173,7 @@ flytepropeller:
image:
# -- Docker image for Flytepropeller deployment
repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE
tag: v0.16.19 # FLYTEPROPELLER_TAG
tag: v0.16.29 # FLYTEPROPELLER_TAG
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Flytepropeller deployment
resources:
Expand Down Expand Up @@ -221,7 +221,7 @@ flyteconsole:
image:
# -- Docker image for Flyteconsole deployment
repository: cr.flyte.org/flyteorg/flyteconsole # FLYTECONSOLE_IMAGE
tag: v0.41.0 # FLYTECONSOLE_TAG
tag: v0.43.0 # FLYTECONSOLE_TAG
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Flyteconsole deployment
resources:
Expand Down
12 changes: 6 additions & 6 deletions charts/flyte/README.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions charts/flyte/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ flyte:
# -- Docker image for Flyteadmin deployment
repository: cr.flyte.org/flyteorg/flyteadmin # FLYTEADMIN_IMAGE
# -- Docker image tag
tag: v0.6.92 # FLYTEADMIN_TAG
tag: v0.6.104 # FLYTEADMIN_TAG
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Flyteadmin deployment
Expand Down Expand Up @@ -73,7 +73,7 @@ flyte:
# -- Docker image for Flytescheduler deployment
repository: cr.flyte.org/flyteorg/flytescheduler # FLYTESCHEDULER_IMAGE
# -- Docker image tag
tag: v0.6.92 # FLYTESCHEDULER_TAG
tag: v0.6.104 # FLYTESCHEDULER_TAG
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Flytescheduler deployment
Expand Down Expand Up @@ -118,7 +118,7 @@ flyte:
# -- Docker image for Datacatalog deployment
repository: cr.flyte.org/flyteorg/datacatalog # DATACATALOG_IMAGE
# -- Docker image tag
tag: v0.3.22 # DATACATALOG_TAG
tag: v0.3.23 # DATACATALOG_TAG
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Datacatalog deployment
Expand Down Expand Up @@ -167,7 +167,7 @@ flyte:
# -- Docker image for Flytepropeller deployment
repository: cr.flyte.org/flyteorg/flytepropeller # FLYTEPROPELLER_IMAGE
# -- Docker image tag
tag: v0.16.19 # FLYTEPROPELLER_TAG
tag: v0.16.29 # FLYTEPROPELLER_TAG
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Flytepropeller deployment
Expand Down Expand Up @@ -212,7 +212,7 @@ flyte:
# -- Docker image for Flyteconsole deployment
repository: cr.flyte.org/flyteorg/flyteconsole # FLYTECONSOLE_IMAGE
# -- Docker image tag
tag: v0.41.0 # FLYTECONSOLE_TAG
tag: v0.43.0 # FLYTECONSOLE_TAG
# -- Docker image pull policy
pullPolicy: IfNotPresent
# -- Default resources requests and limits for Flyteconsole deployment
Expand Down
26 changes: 13 additions & 13 deletions deployment/eks/flyte_aws_scheduler_helm_generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ spec:
- /etc/flyte/config/*.yaml
- migrate
- run
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.92"
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.104"
imagePullPolicy: "IfNotPresent"
name: run-migrations
volumeMounts:
Expand All @@ -882,7 +882,7 @@ spec:
- flytesnacks
- flytetester
- flyteexamples
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.92"
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.104"
imagePullPolicy: "IfNotPresent"
name: seed-projects
volumeMounts:
Expand All @@ -896,7 +896,7 @@ spec:
- /etc/flyte/config/*.yaml
- clusterresource
- sync
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.92"
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.104"
imagePullPolicy: "IfNotPresent"
name: sync-cluster-resources
volumeMounts:
Expand All @@ -907,7 +907,7 @@ spec:
- mountPath: /etc/flyte/config
name: config-volume
- name: generate-secrets
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.92"
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.104"
imagePullPolicy: "IfNotPresent"
command: ["/bin/sh", "-c"]
args:
Expand All @@ -930,7 +930,7 @@ spec:
- --config
- /etc/flyte/config/*.yaml
- serve
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.92"
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.104"
imagePullPolicy: "IfNotPresent"
name: flyteadmin
ports:
Expand Down Expand Up @@ -1012,7 +1012,7 @@ spec:
runAsUser: 1000
fsGroupChangePolicy: "OnRootMismatch"
containers:
- image: "cr.flyte.org/flyteorg/flyteconsole:v0.41.0"
- image: "cr.flyte.org/flyteorg/flyteconsole:v0.43.0"
imagePullPolicy: "IfNotPresent"
name: flyteconsole
envFrom:
Expand Down Expand Up @@ -1079,7 +1079,7 @@ spec:
- /etc/datacatalog/config/*.yaml
- migrate
- run
image: "cr.flyte.org/flyteorg/datacatalog:v0.3.22"
image: "cr.flyte.org/flyteorg/datacatalog:v0.3.23"
imagePullPolicy: "IfNotPresent"
name: run-migrations
volumeMounts:
Expand All @@ -1093,7 +1093,7 @@ spec:
- --config
- /etc/datacatalog/config/*.yaml
- serve
image: "cr.flyte.org/flyteorg/datacatalog:v0.3.22"
image: "cr.flyte.org/flyteorg/datacatalog:v0.3.23"
imagePullPolicy: "IfNotPresent"
name: datacatalog
ports:
Expand Down Expand Up @@ -1173,7 +1173,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.name
image: "cr.flyte.org/flyteorg/flytepropeller:v0.16.19"
image: "cr.flyte.org/flyteorg/flytepropeller:v0.16.29"
imagePullPolicy: "IfNotPresent"
name: flytepropeller
ports:
Expand Down Expand Up @@ -1226,7 +1226,7 @@ spec:
labels:
app: flyte-pod-webhook
app.kubernetes.io/name: flyte-pod-webhook
app.kubernetes.io/version: v0.16.19
app.kubernetes.io/version: v0.16.29
annotations:
configChecksum: "0d6064977e729ccf7ff28a5198b11fe0679dafc50d2636d8783578243394d0a"
spec:
Expand All @@ -1237,7 +1237,7 @@ spec:
serviceAccountName: flyte-pod-webhook
initContainers:
- name: generate-secrets
image: "cr.flyte.org/flyteorg/flytepropeller:v0.16.19"
image: "cr.flyte.org/flyteorg/flytepropeller:v0.16.29"
imagePullPolicy: "IfNotPresent"
command:
- flytepropeller
Expand All @@ -1260,7 +1260,7 @@ spec:
mountPath: /etc/flyte/config
containers:
- name: webhook
image: "cr.flyte.org/flyteorg/flytepropeller:v0.16.19"
image: "cr.flyte.org/flyteorg/flytepropeller:v0.16.29"
imagePullPolicy: "IfNotPresent"
command:
- flytepropeller
Expand Down Expand Up @@ -1316,7 +1316,7 @@ spec:
- /etc/flyte/config/*.yaml
- clusterresource
- sync
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.92"
image: "cr.flyte.org/flyteorg/flyteadmin:v0.6.104"
imagePullPolicy: "IfNotPresent"
name: sync-cluster-resources
volumeMounts:
Expand Down
24 changes: 12 additions & 12 deletions deployment/eks/flyte_generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8632,7 +8632,7 @@ spec:
- --config
- /etc/datacatalog/config/*.yaml
- serve
image: cr.flyte.org/flyteorg/datacatalog:v0.3.22
image: cr.flyte.org/flyteorg/datacatalog:v0.3.23
imagePullPolicy: IfNotPresent
name: datacatalog
ports:
Expand All @@ -8655,7 +8655,7 @@ spec:
- /etc/datacatalog/config/*.yaml
- migrate
- run
image: cr.flyte.org/flyteorg/datacatalog:v0.3.22
image: cr.flyte.org/flyteorg/datacatalog:v0.3.23
imagePullPolicy: IfNotPresent
name: run-migrations
volumeMounts:
Expand Down Expand Up @@ -8716,7 +8716,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: cr.flyte.org/flyteorg/flytepropeller:v0.16.19
image: cr.flyte.org/flyteorg/flytepropeller:v0.16.29
imagePullPolicy: IfNotPresent
name: webhook
volumeMounts:
Expand All @@ -8743,7 +8743,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: cr.flyte.org/flyteorg/flytepropeller:v0.16.19
image: cr.flyte.org/flyteorg/flytepropeller:v0.16.29
imagePullPolicy: IfNotPresent
name: generate-secrets
volumeMounts:
Expand Down Expand Up @@ -8791,7 +8791,7 @@ spec:
- --config
- /etc/flyte/config/*.yaml
- serve
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.92
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.104
imagePullPolicy: IfNotPresent
name: flyteadmin
ports:
Expand Down Expand Up @@ -8838,7 +8838,7 @@ spec:
- /etc/flyte/config/*.yaml
- migrate
- run
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.92
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.104
imagePullPolicy: IfNotPresent
name: run-migrations
volumeMounts:
Expand All @@ -8855,7 +8855,7 @@ spec:
- flytesnacks
- flytetester
- flyteexamples
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.92
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.104
imagePullPolicy: IfNotPresent
name: seed-projects
volumeMounts:
Expand All @@ -8869,7 +8869,7 @@ spec:
- /etc/flyte/config/*.yaml
- clusterresource
- sync
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.92
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.104
imagePullPolicy: IfNotPresent
name: sync-cluster-resources
volumeMounts:
Expand All @@ -8889,7 +8889,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.92
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.104
imagePullPolicy: IfNotPresent
name: generate-secrets
volumeMounts:
Expand Down Expand Up @@ -8943,7 +8943,7 @@ spec:
- envFrom:
- configMapRef:
name: flyte-console-config
image: cr.flyte.org/flyteorg/flyteconsole:v0.41.0
image: cr.flyte.org/flyteorg/flyteconsole:v0.43.0
name: flyteconsole
ports:
- containerPort: 8080
Expand Down Expand Up @@ -8990,7 +8990,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.name
image: cr.flyte.org/flyteorg/flytepropeller:v0.16.19
image: cr.flyte.org/flyteorg/flytepropeller:v0.16.29
imagePullPolicy: IfNotPresent
name: flytepropeller
ports:
Expand Down Expand Up @@ -9258,7 +9258,7 @@ spec:
- /etc/flyte/config/*.yaml
- clusterresource
- sync
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.92
image: cr.flyte.org/flyteorg/flyteadmin:v0.6.104
imagePullPolicy: IfNotPresent
name: sync-cluster-resources
volumeMounts:
Expand Down
Loading

0 comments on commit 230ad92

Please sign in to comment.