Reputation: 215
I'm deploying Deis Paas on Google Cloud. In the official provisioning guide available at http://docs.deis.io/en/latest/installing_deis/install-platform/ there are a few commands.
I don't understand on which domain this command refers
deisctl config platform set domain=example.com
what should I put instead of "example.com"?
Upvotes: 0
Views: 44
Reputation: 3905
Are you following these docs? http://docs.deis.io/en/latest/installing_deis/gce/#deis-on-gce
If so then the domain will be your/company domain.
Once you have this in your configs, you can create subdomains from DEIS CLI itself which can also be written in config files. This helps automating the provisioning of subdomains and if need be during scaling using dynamic provisioning.
More details:
domain.com
and
your webapp on web.domain.com
, while your database can be running
on db.domain.com
.CNAME
and A Records
manually or you can let DEIS do it for you.v1-web.domain.com
.web.domain.com
. All this happening based on the rules that you specify in configurations of you application.Hope this is enough. If not you should read more about how Google App-Engine works, or rather give it a try.
Upvotes: 1