Browse Source

Merge pull request #6659 from joelddiaz/ami_and_docker_storage_setup

docker storage setup for ami building
Kenny Woodson 7 years ago
parent
commit
4ac04c4d38

+ 5 - 0
playbooks/aws/provisioning_vars.yml.example

@@ -93,6 +93,11 @@ openshift_aws_ssh_key_name: # myuser_key
 # --------- #
 # Variables in this section apply to building a node AMI for use in your
 # openshift cluster.
+# openshift-ansible will perform the container runtime storage setup when specified
+# The current storage setup with require a drive if using a separate storage device
+# for the container runtime.
+container_runtime_docker_storage_type: overlay2
+container_runtime_docker_storage_setup_device: /dev/xvdb
 
 # must specify a base_ami when building an AMI
 openshift_aws_base_ami: # ami-12345678

+ 1 - 1
roles/openshift_aws/tasks/provision_instance.yml

@@ -42,5 +42,5 @@
 
 - name: add host to nodes
   add_host:
-    groups: nodes
+    groups: nodes,g_new_node_hosts
     name: "{{ instancesout.instances[0].public_dns_name }}"