1

When accessing an instance from a managed instance group on GCE, the deployed app container has a random container id (like c948a5850b6c) instead of a named one (like app). Is there a way to specify an id to simplify accessing the container?

Grzenio
  • 35,875
  • 47
  • 158
  • 240
udAL
  • 43
  • 8

1 Answers1

1

As far as I know you can only defined the Container Name but no the Container ID, but you can refer directly to his Container Name, so there is no need to refer to the Container ID.

More details

AlbertoVI
  • 102
  • 6
  • Yes, the thing is the container name is long. Since we access the container frequently, it becomes tedious. Thanks for the answer – udAL Apr 09 '19 at 12:24