Hank Huang
07/21/2023, 3:25 PMKevin Su
07/21/2023, 3:38 PMYicheng Lu
07/21/2023, 3:45 PMkubectl get svc
to see the port number and manually add that port to VSCode.Hank Huang
07/21/2023, 4:11 PMssh -L 30080:localhost:30080 gcp
to project it to my localhost.Kevin Su
07/21/2023, 4:18 PMssh -L 30084:localhost:30084 gcp
Hank Huang
07/21/2023, 4:19 PMKevin Su
07/21/2023, 4:40 PMHank Huang
07/21/2023, 4:40 PMKevin Su
07/21/2023, 4:42 PMYicheng Lu
07/21/2023, 4:44 PMKevin Su
07/21/2023, 5:05 PMHank Huang
07/21/2023, 5:40 PMflytekit-deck-standard
in my image, I should follow (pip install flytekitplugins-deck-standard
) this right?Kevin Su
07/21/2023, 5:41 PMHank Huang
07/21/2023, 5:53 PMYicheng Lu
07/21/2023, 5:54 PMHank Huang
07/21/2023, 5:56 PMYicheng Lu
07/21/2023, 5:56 PMHank Huang
07/21/2023, 5:56 PMFROM python:3.9-slim-buster
USER root
WORKDIR /root
ENV PYTHONPATH /root
RUN apt-get update && apt-get install build-essential -y
RUN apt-get install git -y
RUN pip install -U git+<https://github.com/hhcs9527/flytekit.git@>"mashumaro-serialize-dataclass#egg=flytekitplugins-deck-standard&subdirectory=plugins/flytekit-deck-standard"
ENV FLYTE_INTERNAL_IMAGE "localhost:30000/flytekit:mashumaro-serialize-dataclass"
FROM python:3.9-slim-buster
USER root
WORKDIR /root
ENV PYTHONPATH /root
RUN apt-get update && apt-get install build-essential -y
RUN apt-get install git -y
RUN pip install -U
RUN pip install flytekitplugins-deck-standard
git+<https://github.com/hhcs9527/flytekit.git@mashumaro-serialize-dataclass>
ENV FLYTE_INTERNAL_IMAGE "localhost:30000/flytekit:mashumaro-serialize-dataclass"
Yicheng Lu
07/21/2023, 5:58 PMHank Huang
07/21/2023, 6:04 PMYicheng Lu
07/21/2023, 6:06 PMFROM python:3.9-slim-buster
USER root
WORKDIR /root
ENV PYTHONPATH /root
RUN apt-get update && apt-get install build-essential -y
RUN apt-get install git -y
# The following line is an example of how to install your modified plugins. In this case, it demonstrates how to install the 'deck' plugin.
RUN pip install -U git+<https://github.com/Yicheng-Lu-llll/flytekit.git@>"demo#egg=flytekitplugins-deck-standard&subdirectory=plugins/flytekit-deck-standard" # replace with your own repo and branch
RUN pip install -U git+<https://github.com/Yicheng-Lu-llll/flytekit.git@demo> # replace with your own repo and branch
ENV FLYTE_INTERNAL_IMAGE "localhost:30000/flytekit:demo" # replace with your own image name and tag
Would you mind try this one? just replace with your repo and branchHank Huang
07/21/2023, 6:06 PMYicheng Lu
07/21/2023, 6:22 PMFROM
ghcr.io/flyteorg/flytekit:py3.9-sqlalchemy-1.9.0a0 in this caseHank Huang
07/21/2023, 6:26 PMYicheng Lu
07/21/2023, 6:28 PMFROM <http://ghcr.io/flyteorg/flytekit:py3.9-sqlalchemy-1.9.0a0|ghcr.io/flyteorg/flytekit:py3.9-sqlalchemy-1.9.0a0>
RUN pip install -U git+<https://github.com/hhcs9527/flytekit.git@mashumaro-serialize-dataclass>
Hank Huang
07/21/2023, 6:36 PMFROM <http://ghcr.io/flyteorg/flytekit:py3.9-sqlalchemy-1.9.0a0|ghcr.io/flyteorg/flytekit:py3.9-sqlalchemy-1.9.0a0>
git+<https://github.com/hhcs9527/flytekit.git@mashumaro-serialize-dataclass>
USER root
WORKDIR /root
ENV PYTHONPATH /root
RUN apt-get update && apt-get install build-essential -y
RUN apt-get install git -y
RUN pip install flytekitplugins-deck-standard
RUN pip install -U git+<https://github.com/hhcs9527/flytekit.git@>"mashumaro-serialize-dataclass#egg=flytekitplugins-deck-standard&subdirectory=plugins/flytekit-deck-standard"
RUN pip install -U git+<https://github.com/hhcs9527/flytekit.git@mashumaro-serialize-dataclass>
ENV FLYTE_INTERNAL_IMAGE "localhost:30000/flytekit:mashumaro-serialize-dataclass"
the above is my latest docker file, but still not. working…Kevin Su
07/21/2023, 6:39 PMgit+<https://github.com/hhcs9527/flytekit.git@mashumaro-serialize-dataclass>
should be ?
pip install git+<https://github.com/hhcs9527/flytekit.git@mashumaro-serialize-dataclass>
Hank Huang
07/21/2023, 7:02 PMFROM <http://ghcr.io/flyteorg/flytekit:py3.9-sqlalchemy-1.9.0a0|ghcr.io/flyteorg/flytekit:py3.9-sqlalchemy-1.9.0a0>
RUN pip install git+<https://github.com/hhcs9527/flytekit.git@mashumaro-serialize-dataclass>
USER root
WORKDIR /root
ENV PYTHONPATH /root
RUN apt-get update && apt-get install build-essential -y
RUN apt-get install git -y
RUN pip install flytekitplugins-deck-standard
RUN pip install -U git+<https://github.com/hhcs9527/flytekit.git@>"mashumaro-serialize-dataclass#egg=flytekitplugins-deck-standard&subdirectory=plugins/flytekit-deck-standard"
RUN pip install -U git+<https://github.com/hhcs9527/flytekit.git@mashumaro-serialize-dataclass>
ENV FLYTE_INTERNAL_IMAGE "localhost:30000/flytekit:mashumaro-serialize-dataclass"
Kevin Su
07/21/2023, 7:06 PMFROM <http://ghcr.io/flyteorg/flytekit:py3.9-sqlalchemy-1.9.0a0|ghcr.io/flyteorg/flytekit:py3.9-sqlalchemy-1.9.0a0>
USER root
WORKDIR /root
ENV PYTHONPATH /root
RUN apt-get update && apt-get install build-essential -y
RUN apt-get install git -y
RUN pip install git+<https://github.com/hhcs9527/flytekit.git@>"mashumaro-serialize-dataclass#egg=flytekitplugins-deck-standard&subdirectory=plugins/flytekit-deck-standard"
RUN pip install git+<https://github.com/hhcs9527/flytekit.git@mashumaro-serialize-dataclass>
Hank Huang
07/22/2023, 1:08 AMYicheng Lu
07/22/2023, 1:09 AMHank Huang
07/22/2023, 1:19 AMrmi before it push
Yicheng Lu
07/22/2023, 1:20 AMHank Huang
07/22/2023, 1:20 AM