Home > Enterprise >  How do I start a kubernetes job from an image in a local file system?
How do I start a kubernetes job from an image in a local file system?

Time:10-13

Seems like an obvious thing do. Very common in other similar systems. But I'm not seeing how to do it in kubernetes. What am I missing?

CodePudding user response:

You can try running a local secure registry, creating a pod (using a YAML file) from a Docker image in a local registry:

See this link.

CodePudding user response:

Assuming that by a kubernetes job you refer to an app you can simply do so by creating a deployment following this tutorial.

  • Related