summaryrefslogtreecommitdiffstats
path: root/releasenotes/notes/manila-with-managed-ceph-e5178fd06127624f.yaml
blob: 59f1fb99109550129ac59ce6dcdea6f987e9fbb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
prelude: >
    Support for Manila/CephFS with TripleO managed Ceph cluster
features:
  - |
    It is now possible to configure Manila with CephFS to use a
    TripleO managed Ceph cluster. When using the Heat environment
    file at environments/manila-cephfsnative-config.yaml Manila
    will be configured to use the TripleO managed Ceph cluster
    if CephMDS is deployed as well, which can be done using the
    file environments/services/ceph-mds.yaml
/span> Value specs for the tenant network. type: json TenantNetAdminStateUp: default: false description: This admin state of the network. type: boolean TenantNetEnableDHCP: default: false description: Whether to enable DHCP on the associated subnet. type: boolean TenantNetShared: default: false description: Whether this network is shared across all tenants. type: boolean TenantNetName: default: tenant description: The name of the tenant network. type: string TenantSubnetName: default: tenant_subnet description: The name of the tenant subnet in Neutron. type: string TenantAllocationPools: default: [{'start': '172.16.0.4', 'end': '172.16.0.250'}] description: Ip allocation pool range for the tenant network. type: json resources: TenantNetwork: type: OS::Neutron::Net properties: admin_state_up: {get_param: TenantNetAdminStateUp} name: {get_param: TenantNetName} shared: {get_param: TenantNetShared} value_specs: {get_param: TenantNetValueSpecs} TenantSubnet: type: OS::Neutron::Subnet properties: cidr: {get_param: TenantNetCidr} enable_dhcp: {get_param: TenantNetEnableDHCP} name: {get_param: TenantSubnetName} network: {get_resource: TenantNetwork} allocation_pools: {get_param: TenantAllocationPools} outputs: OS::stack_id: description: Neutron tenant network value: {get_resource: TenantNetwork}