-
Notifications
You must be signed in to change notification settings - Fork 71
Nested atomicapp applications error on the same namespace #398
Comments
I hit this issue on EDIT: I didn't really provide any info there. I did Let me know if I need to provide any more info. |
@cdrage I thought we talked about the implementation for this.. If we are deploying two instances of the same application:
we would create image names: or something along those lines |
Yes, you're right, we should do it along those lines (especially for the Docker provider). I was a tad confused with projectatomic/nulecule#187 and @rtnpro proposal. But his one has to do more with namespacing in the answers.conf. The docker provider should detect if it is an inherited application and act accordingly with naming the Docker containers. |
@cdrage ping? we need to sync up on this. |
@rtnpro this will be fixed before GA. are you good with @dustymabe 's proposal on the naming scheme? |
This semi-relates to issue #397
When using:
atomicapp
container with inherited / nestedatomicapp
applicationYou encounter an error where you're unable to deploy the second inherited
atomicapp
application, ending up with athis namespace is already in use
error.This is due to the fact that you cannot assign a unique namespace to the inherited
atomicapp
container as well as the fact that our current regex expressionif re.match("%s_+%s+_+[a-zA-Z0-9]{12}" % (self.default_name, self.namespace), container):
withindocker.py
will match the firstatomicapp
container that was deployed.The text was updated successfully, but these errors were encountered: