Hi all, I have a fork of flyte with some changes I...
# ask-the-community
a
Hi all, I have a fork of flyte with some changes I've made. I want to deploy this to our current cluster which is done via the helm chart in flyte-core (single cluster). I notice in the helm chart the image used is https://github.com/flyteorg/flyte/blob/master/charts/flyte-core/templates/propeller/deployment.yaml#L72C9-L72C102
image: "{{ .Values.flytepropeller.image.repository }}:{{ .Values.flytepropeller.image.tag }}"
. I was wondering how this image is created, and how I would create a new version from my fork of flyte?
I think
make build_native_flyte
does the job
k
you can build an image for propeller in the /root directory.
Copy code
docker build --push --platform linux/amd64 -t pingsutw/propeller:v1 -f Dockerfile.flytepropeller .