Bug 1357688
| Summary: | [Docs][Director] The public VIP must now be explicitly set with PublicVirtualFixedIPs | ||
|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Alexander Chuzhoy <sasha> |
| Component: | documentation | Assignee: | Dan Macpherson <dmacpher> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | RHOS Documentation Team <rhos-docs> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 10.0 (Newton) | CC: | bnemec, dbecker, dmacpher, dyasny, jschluet, jslagle, lbopf, mburns, mcornea, morazi, rhel-osp-director-maint, srevivo |
| Target Milestone: | ga | Keywords: | Documentation |
| Target Release: | 10.0 (Newton) | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2017-05-18 08:04:54 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Alexander Chuzhoy
2016-07-18 21:44:49 UTC
[stack@instack ~]$ cat network-environment.yaml
resource_registry:
OS::TripleO::BlockStorage::Net::SoftwareConfig: /home/stack/nic-configs/cinder-storage.yaml
OS::TripleO::Compute::Net::SoftwareConfig: /home/stack/nic-configs/compute.yaml
OS::TripleO::Controller::Net::SoftwareConfig: /home/stack/nic-configs/controller.yaml
OS::TripleO::ObjectStorage::Net::SoftwareConfig: /home/stack/nic-configs/swift-storage.yaml
OS::TripleO::CephStorage::Net::SoftwareConfig: /home/stack/nic-configs/ceph-storage.yaml
parameter_defaults:
NeutronExternalNetworkBridge: "''"
InternalApiNetCidr: 192.168.100.0/24
StorageNetCidr: 192.168.110.0/24
StorageMgmtNetCidr: 192.168.120.0/24
TenantNetCidr: 192.168.150.0/24
ExternalNetCidr: 192.168.200.0/24
InternalApiAllocationPools: [{'start': '192.168.100.10', 'end': '192.168.100.200'}]
StorageAllocationPools: [{'start': '192.168.110.10', 'end': '192.168.110.200'}]
StorageMgmtAllocationPools: [{'start': '192.168.120.10', 'end': '192.168.120.200'}]
TenantAllocationPools: [{'start': '192.168.150.10', 'end': '192.168.150.200'}]
# Use an External allocation pool which will leave room for floating IPs
ExternalAllocationPools: [{'start': '192.168.200.180', 'end': '192.168.200.200'}]
# Set to the router gateway on the external network
ExternalInterfaceDefaultRoute: 192.168.200.1
DnsServers: ["10.16.36.29"]
ControlPlaneSubnetCidr: "24"
ControlPlaneDefaultRoute: 192.0.2.1
EC2MetadataIp: 192.0.2.1
Apparently some things changed in how we allocate ips which has broken the previous process for deploying with ssl. I've attached an upstream doc patch that should get this working again. Note that this is a doc bug. There's nothing to do on the development side here. We also need to add stuff from here: http://docs.openstack.org/developer/tripleo-docs/advanced_deployment/ssl.html#deploying-an-ssl-environment Specifically the tls-endpoints-* environment files. Those are new for OSP 10 and must be included in new SSL deployments. Updating summary and moving to 'NEW' to be triaged as resources allow. *** Bug 1385906 has been marked as a duplicate of this bug. *** I can confirm that the OSP 10 docs include all of the necessary details mentioned here. |