network: type: dynamic cloud_properties: net_id: <dhcp-network_uuid>
bosh micro deployment microbosh-openstack --> this would say "No deployment set"
Next when i execute this:
bosh micro deploy ~/bosh-workspace/stemcells/bosh-stemcell-XXXX-openstack-kvm-ubuntu.tgz --> This would simply not proceed saying - No target set.
Then just out of experiment, i deployed a dummy VM and specified the IP address of the deployed VM in the micro_bosh.yml as:
network: type: dynamic
ip: <xyz>
cloud_properties: net_id: <dhcp-network_uuid>
This would let the deployment to proceed but would set the "Target" wrong for the deployed micro-bosh VM.
Can someone help me with the right configuration options in the micro_bosh.yml for deploying with DHCP based networks?
Note - i do not want to use VIP or IP. I want openstack's DHCP networking to pick up the IP and per the document only providing the net_id and type as dynamic - it should work.
To unsubscribe from this group and stop receiving emails from it, send an email to bosh-dev+u...@cloudfoundry.org.
There are different ways that networking can be configured. If your OpenStack has Quantum running, then you can use advanced compositions of subnets to isolate and protect each job, thus providing greater security. In this section, no advanced networking will be used.
Only a single public floating IP is required. Replace your allocated floating IP with 2.3.4.5
below.
Again if i don't want to use floating IPs here - what are my options?
Basically if i am using DHCP - what should i specify in this section of the demo.yml (in bold):
<% director_uuid = "DIRECTOR_UUID" protocol = "http" cf_release = "141" ip_address = "2.3.4.5" common_password = "c1oudc0wc1oudc0w" root_domain = "#{ip_address}.xip.io" deployment_name = "cf-demo" %>
And can i use no static IPs for (in bold) and leave that section out if i am using DHCP:
- name: router template: - gorouter instances: 1 resource_pool: common networks: - name: default default: [dns, gateway] - name: floating static_ips: - <%= ip_address %>
Appreciate your help here.
Thanks,
Sudipto