From 931113c83c7082b0e5652f23d761e65567f3d3fb Mon Sep 17 00:00:00 2001 From: Geoff Jacobs Date: Wed, 21 Aug 2019 14:29:03 +1000 Subject: [PATCH] ITOPS-2059 adding a playbook to set up the clone nfs server --- aws_clone_nfs.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 aws_clone_nfs.yml diff --git a/aws_clone_nfs.yml b/aws_clone_nfs.yml new file mode 100644 index 0000000..0d299c4 --- /dev/null +++ b/aws_clone_nfs.yml @@ -0,0 +1,17 @@ +--- +- hosts: aws_node_local + become: true + + vars: + # See group_vars/aws_node_local.yml, which pull vars from the environment. + atl_product_family: "nfs_server" + atl_product_edition: "nfs_server" + atl_product_user: "atlassian" + + atl_nfs_mountpoint: "{{ atl_shared_mountpoint }}/{{ atl_product_user }}/shared" + atl_nfs_target: "{{ atl_shared_mountpoint }}/{{ atl_product_user }}/shared" + + roles: + - role: linux_common + - role: aws_common + - role: nfs_server \ No newline at end of file