]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/commitdiff
Review feedback 584/head
authorJim Curtis <jim.curtis@redhat.com>
Tue, 6 Dec 2016 02:17:27 +0000 (18:17 -0800)
committerJim Curtis <jim.curtis@redhat.com>
Tue, 6 Dec 2016 02:17:27 +0000 (18:17 -0800)
ansible/private-docker-registry/README.md
ansible/private-docker-registry/roles/docker-registry/tasks/main.yml
ansible/private-docker-registry/roles/test-client/tasks/main.yml

index 287554f640ab6c0b039e793ba12a7cf1cbabe6ba..0e25cdae3fe512dbf3797014c7733be701190b25 100644 (file)
@@ -17,7 +17,7 @@ push an image to the private docker registry on the other node.
 ## Running Vagrant to Provision and Test
 
 * Edit vagrant_variables.yml and change the `vagrant_box` variable if needed
-* Use `vsgrant up` command to deploy and provision the VMs
+* Use `vagrant up` command to deploy and provision the VMs
 
 When the playbook completes successfully, it will have started the private
 docker registry container and used the other VM to test pushing a test image
@@ -28,7 +28,7 @@ to that private docker container.
 When you are ready to provision onto an existing machine, first make sure
 that docker is installed on that machine.
 
-In the top directory of this playbook where the site.yml file exist, add
+In the top directory of this playbook where the `site.yml` file exist, add
 an `ansible-hosts` file to specify the machine you want to provision.  It
 should look something like this:
 
index 5947b684727b3c37323f0a4b620c065e51a0fb2d..29550603e86cc54aa622413eede155c0c83cb06f 100644 (file)
@@ -1,6 +1,8 @@
 ---
 - name: create directory for self-signed SSL cert
-  file: path=/var/registry/certs state=directory
+  file: 
+    path: /var/registry/certs 
+    state: directory
 
 - name: create self-signed cfssl json file
   template:
index 34d223096c6b37a23b30082f554137fcd2a5817f..d4a0716956a555386dd62087429a012dd7d4ee9c 100644 (file)
@@ -1,6 +1,8 @@
 ---
 - name: create directory for self-signed cert of docker-registry
-  file: path=/etc/docker/certs.d/{{ hostvars['docker-registry']['ansible_default_ipv4']['address'] }}:5000 state=directory
+  file: 
+    path: /etc/docker/certs.d/{{ hostvars['docker-registry']['ansible_default_ipv4']['address'] }}:5000 
+    state: directory
 
 - name: copy self-signed cert of docker-registry
   copy: