<!here>, we have included an important security fi...
# announcements
h
<!here>, we have included an important security fix in the flyte v1.1.0 release. We highly encourage everyone to upgrade. A CVE will be released on July 12th that will include more information about the vulnerability. If you have specific questions, please donโ€™t hesitate to DM me until then.
๐Ÿ‘ 4
r
are the docker images for flyteadmin/propeller/scheduler/console tagged as latest fine? there are some newer ones, eg. flytepropeller has v1.1.15-patch1 but v1.1.14 is marked as latest, wondering which to use
h
I would encourage you to pick the ones tagged with the flyte release since thatโ€™s where most of the testing/validation happens. e.g. (
flyteadmin-release:v1.1.0
)
๐Ÿ‘ 1
s
Also, what is the best way to upgrade the version? I did download latest helm values but doing
helm template
, looks like the templates are still pointing to
v1.0.2
h
@Yuvraj, Can you take a look at this?
are you using flyte-core helm chart?
s
Yes
r
you can set the image in the values yaml, eg.
Copy code
flytescheduler:
  image:
    tag: v1.1.0
    repository: <http://cr.flyte.org/flyteorg/flytescheduler-release|cr.flyte.org/flyteorg/flytescheduler-release>
    pullPolicy: IfNotPresent
then doing helm upgrade worked fine for me
๐Ÿ™Œ 1
y
@Shahwar Saleem You can also use helm registry
Copy code
helm repo add flyteorg <https://helm.flyte.org>
helm repo update
helm upgrade -n flyte --create-namespace flyte flyteorg/flyte-core -f <https://raw.githubusercontent.com/flyteorg/flyte/master/charts/flyte-core/values-eks.yaml> -f values-override.yaml --install (It wll install the latest helm release)
๐Ÿ™ 1
s
Thanks @Yuvraj I can see latest images in templates now!
๐ŸŽ‰ 1
158 Views