Get image name within container

5/29/2017

I'm trying to get the name of the container image from within the container.
I tried to look around the Downward APIs, but it seems that it's not possile:
https://kubernetes.io/docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/

For now my workaround is:

      env:
        - name: IMAGE
          value: "myimage:latest"

But do you have a better way?

Cheers

-- Joan
kubernetes

1 Answer

5/30/2017

Your solution is probably OK, assuming you build your containers with CI/CD. Please see this answer about how to access the kubernetes API from within a cluster as an alternative. Here's the link to POD API docs which should contain the image information.

-- Oswin Noetzelmann
Source: StackOverflow