I'm trying really hard to get salt-cloud
to provision new servers with one (or more) private networks attached.
SaltStack's documentation here said that I am supposed to add this "section" to the 'providers' configuration file:
networks:
- fixed:
# This is the private network
- private-network-id
# This is Rackspace's "PublicNet"
- 00000000-0000-0000-0000-000000000000
# This is Rackspace's "ServiceNet"
- 11111111-1111-1111-1111-111111111111
So I did that (replacing private-network-id
with the Private Network's UUID, of course).
Didn't work.
I tried adding the section to the 'profiles' configuration file.
Also didn't work.
I tried removing the -fixed:
atom (hence promoting the list underneath).
Still didn't work.
I'm at the end of my wits here. Can someone please tell me how I can provision a server using salt-cloud
and at the same time attach private networks (in addition to PublicNet and ServiceNet) to the instance?
Or is that simply not possible?