DEV Community

Discussion on: (UPDATED) Sitecore Managed Cloud Containers: Using Your "Latest" Image

Collapse
 
dylanyoung_dev profile image
Dylan Young

Would this still require a run of the pipeline? Also I must admit I don't know everything about tagging strategies, but wouldn't using the Latest tag, cause issues? Example, lets say you run your CI process to build and push the images to the ACR with the latest tag, and then you still at this point have production also running off this latest version. If for some reason a node goes down, wouldn't that new node, now use a different version of the code base vs the existing nodes?

But either way, good post, and I guess in some situations this wouldn't necessarily cause any issues, depends on a case by case scenario :-)

Collapse
 
kmac23va profile image
Kenneth McAndrew

I'm about to post an update, it seems that whatever process Sitecore uses only picked up my "latest" tag because I changed the pipeline. If I just ran the pipeline, it didn't seem to like it. Plus a few folks on Slack are more about using the specific tags. I understand that for the basic images, but client images I'd think it's okay. But I'll bow to the guidance until someone figures this out. There really doesn't seem to be a reason to have to update the codebase every time. But maybe that's just me. :)

Collapse
 
dylanyoung_dev profile image
Dylan Young

I like the exploration, and I wish the latest method would've worked. One of my thoughts, was maybe there's a way to fire into the pipeline, update the file and push in a CD process in your own devops process. But of course this is full of potential issues.

The other ponderance I've had, is could you pull the managed cloud code base into your own repo, that way you could build around it. But I'm not sure if that would work, due to security limitations.

But if you come up with another approach, you should definitely blog about it.