postgresql - Cloud Foundry bosh Error 100: Can't find network -
i'm attempting setup service broker add postgres our cloud foundry installation. we're running our system on vmware. i'm using release in order that:
i need setup networks: section in manifest, , i'm setting there isn't working.
this networks in vmware vcenter ui:
and clusters , resource pools in vcenter ui:
i tried both , without quotes, around 'name' of network. i'm getting error saying bosh can't find network:
failed compiling packages > rootfs_lucid64/9b3f611b46e076b94b37645c98f9100e7bcef5dd: can't find network: vlan1130_lb_100.114.130.0 (00:00:01) failed compiling packages > postgresql93/06163819b694f8d9836586d024f64c11efe30180: can't find network: vlan1130_lb_100.114.130.0 (00:00:01) failed compiling packages > postgresql92/2867893e714aae6e6b76bd06e7aa30d47023c46e: can't find network: vlan1130_lb_100.114.130.0 (00:00:01) error 100: can't find network: vlan1130_lb_100.114.130.0 task 2430 error this latest configuration attempt:
networks: - name: default type: manual subnets: - range: 100.114.130.0/24 gateway: 100.114.130.1 cloud_properties: name: vlan1130_lb_100.114.130.0 i tried using single quotes below. got same error above!
networks: - name: default type: manual subnets: - range: 100.114.130.0/24 gateway: 100.114.130.1 cloud_properties: name: 'vlan1130_lb_100.114.130.0' our network we're on one: 100.114.130.0/24
so makes sense select vlan1130_lb_100.114.130.0 in config.
i've tried setting of these options in yaml file no quotes. , none of them seem work!
<ul> <li>ush_ucs_cloud_foundry: <a href="https://gist.github.com/bluethundr/18ac490e96a5e02fad65">postgres_2432_debug.txt</li> <li>ush_ucs_cloud_foundry_dvs: <a href="https://gist.github.com/bluethundr/4b02c7359b6415bde97f">postgres_2433_debug.txt</a></li> <li>ush_ucs_cloud_fo-dvuplinks-435272: <a href="https://gist.github.com/bluethundr/e357ad872a40ac85b9ca">postgres_2434_debug.txt</a> </li> <li>vlan1129_lb_100.114.129.0: <a href="https://gist.github.com/bluethundr/ebd88c27cab3cd2b6804">postgres_2435_debug.txt</a></li> <li>vlan1130_lb_100.114.130.0: <a href="https://gist.github.com/bluethundr/b7eeb43e3d96f1a85578">postgres_2436_debug.txt</a></li> <li>vlan14-esxi_mgmt-3.156.14.0: <a href="https://gist.github.com/bluethundr/dbde624e63842721a133">postgres_2437_debug.txt</li> </ul> i wouldn't expect vlan1129_lb_100.114.129.0 work, tried anyway, complete.
i've supplied debug dumps of each failed attempt next each setting see above. surely 1 of them must work! can see none of them did.
here's complete yaml file deployed 'bosh deploy' command:
name: cf-22b9f4d62bb6f0563b71 director_uuid: fd713790-b1bc-401a-8ea1-b8209f1cc90c releases: - name: cf-services-contrib version: 6 compilation: workers: 3 network: default reuse_compilation_vms: true cloud_properties: ram: 5120 disk: 10240 cpu: 2 update: canaries: 1 canary_watch_time: 30000-60000 update_watch_time: 30000-60000 max_in_flight: 4 networks: - name: default type: manual subnets: - range: 100.114.130.0/24 gateway: 100.114.130.1 cloud_properties: name: vlan1130_lb_100.114.130.0 resource_pools: - name: 'ush_ucs_cloud_foundry_nonprod_01_rp' network: default stemcell: name: bosh-vsphere-esxi-ubuntu-trusty-go_agent version: '2865.1' cloud_properties: cpu: 2 ram: 4096 disk: 10240 datacenters: - name: 'universal city' clusters: - ush_ucs_cloud_foundry_nonprod_01: {resource_pool: 'ush_ucs_cloud_foundry_nonprod_01_rp'} jobs: - name: gateways release: cf-services-contrib templates: - name: postgresql_gateway_ng instances: 1 resource_pool: 'ush_ucs_cloud_foundry_nonprod_01_rp' networks: - name: default default: [dns, gateway] properties: # service credentials uaa_client_id: "cf" uaa_endpoint: http://uaa.devcloudwest.example.com uaa_client_auth_credentials: username: admin password: secret - name: postgresql_service_node release: cf-services-contrib template: postgresql_node_ng instances: 1 resource_pool: 'ush_ucs_cloud_foundry_nonprod_01_rp' persistent_disk: 10000 properties: postgresql_node: plan: default networks: - name: default default: [dns, gateway] properties: networks: apps: default management: default cc: srv_api_uri: http://api.devcloudwest.example.com nats: address: 100.114.130.11 port: 25555 user: nats #change password: secret authorization_timeout: 5 service_plans: postgresql: default: description: "developer, 250mb storage, 10 connections" free: true job_management: high_water: 230 low_water: 20 configuration: capacity: 125 max_clients: 10 quota_files: 4 quota_data_size: 240 enable_journaling: true backup: enable: false lifecycle: enable: false serialization: enable snapshot: quota: 1 postgresql_gateway: token: f75df200-4daf-45b5-b92a-cb7fa1a25660 default_plan: default supported_versions: ["9.3"] version_aliases: current: "9.3" cc_api_version: v2 postgresql_node: supported_versions: ["9.3"] default_version: "9.3" max_tmp: 900 password: secret how can past issue?


Comments
Post a Comment