Hi, is there any helm chart for kedro-viz deployme...
# questions
a
Hi, is there any helm chart for kedro-viz deployment as a visualisation hub for pipelines/projects?
d
no, but this is interesting - how would you use this?
a
just as a central point that hosts kedro viz that allows you to browse different pipelines from different kedro projects, so you can also link to it from documentation
and why helm chart - because k8s is already in use and used to manage services deployments
d
yeah super interesting - would you mind creating an issue? this is a cool direction
a
I'm not that familiar with new kedro-viz capabilities - I was under impression that it can already do it, but just needs to be hosted
correct me if I'm wrong
d
So I think you could do it with the
--load-file
syntax
or embedding it as a react component
but I’m not sure we’ve ever really invested in decoupling it from the source code of a kedro codebase
a
ideally you could configure which repositories the code comes from and it would allow you to navigate to specific repo/branch/pipeline in URL to get to browse specific pipeline from specific repo
(in kedro viz)
d
yeah today it actually needs live Kedro objects, we’re exploring doing it straight from AST which would help in this direction
a
@Kacper Leśniara
and AST is?
d
Oh parsing the Python syntax tree without running the code
a
oh okay. For now I guess we could do it by having one nginx-or whatever proxy setup and plug into cicd of each of kedro projects to also do
kedro viz build
and push it to location that can be hosted under specific url path that will correspond to given repo/branch/pipeline(?) https://docs.kedro.org/projects/kedro-viz/en/v9.0.0/platform_agnostic_sharing_with_kedro_viz.html
d
yeah that’s very doable
a
is there anything similar to this done before or you are not aware of any published use case like that?
d
Not for many projects at once, no
a
> would you mind creating an issue? this is a cool direction I'd rather let it be for now, if you create one I can comment on it from my perspective. I could create one when I think about this more.
👍 2
n
Wouldn’t the Kedro viz build and static website host be enough?
a
I need to try this out