aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/heat/onap-rke/onap-oom.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/heat/onap-rke/onap-oom.yaml')
-rw-r--r--deployment/heat/onap-rke/onap-oom.yaml12
1 files changed, 12 insertions, 0 deletions
diff --git a/deployment/heat/onap-rke/onap-oom.yaml b/deployment/heat/onap-rke/onap-oom.yaml
index 075ed66d2..f3f82ef61 100644
--- a/deployment/heat/onap-rke/onap-oom.yaml
+++ b/deployment/heat/onap-rke/onap-oom.yaml
@@ -198,6 +198,17 @@ resources:
properties:
floating_network_id: { get_param: public_net_id }
port_id: { get_resource: nfs_private_port }
+ nfs_volume:
+ type: OS::Cinder::Volume
+ properties:
+ size: 200
+
+ nfs_volume_att:
+ type: OS::Cinder::VolumeAttachment
+ properties:
+ instance_uuid: { get_resource: nfs_vm }
+ volume_id: { get_resource: nfs_volume }
+
nfs_vm:
type: OS::Nova::Server
properties:
@@ -214,6 +225,7 @@ resources:
template:
get_file: nfs_vm_entrypoint.sh
params:
+ __nfs_volume_id__: { get_resource: nfs_volume }
__docker_proxy__: { get_param: docker_proxy }
__apt_proxy__: { get_param: apt_proxy }
__nfs_ip_addr__: { get_attr: [nfs_floating_ip, floating_ip_address] }