Since the application model only supports `local j...
# random
z
Since the application model only supports
local jar
. does that mean I need to build a custom image based on certain version of
flink
and bin place my uber jar to the
/opt/flink/usrlib
if I need to run a job other flink examples?
found https://github.com/apache/flink-kubernetes-operator/blob/main/examples/pod-template.yaml. Is that a common pattern people use, downloading the
jar
in the
initContainers
?
p
I’m building my image adding a fat jar inside
/opt/flink/usrlib
. This way I’m sure my deployments are not depending on external resources (like downloading)
How to do it here.
👍 1