diff options
author | Sandra McCann <samccann@redhat.com> | 2019-08-08 21:17:26 +0200 |
---|---|---|
committer | Alicia Cozine <879121+acozine@users.noreply.github.com> | 2019-08-08 21:17:26 +0200 |
commit | ed21aba4422e82fe633e2e164ff5810bdb597595 (patch) | |
tree | 088c3fccc14b38b1d724b99a775a9c3337066c89 /docs | |
parent | Autointerpreter table (#60148) (diff) | |
download | ansible-ed21aba4422e82fe633e2e164ff5810bdb597595.tar.xz ansible-ed21aba4422e82fe633e2e164ff5810bdb597595.zip |
add link to content collector tool (#59881)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docsite/rst/dev_guide/collections_tech_preview.rst | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/docsite/rst/dev_guide/collections_tech_preview.rst b/docs/docsite/rst/dev_guide/collections_tech_preview.rst index 9eeab02152..bb657141f4 100644 --- a/docs/docsite/rst/dev_guide/collections_tech_preview.rst +++ b/docs/docsite/rst/dev_guide/collections_tech_preview.rst @@ -267,9 +267,19 @@ Once you upload a version of a collection, you cannot delete or modify that vers uploading. The only way to change a collection is to release a new version. The latest version of a collection (by highest version number) will be the version displayed everywhere in Galaxy; however, users will still be able to download older versions. +Migrating Ansible content to a collection +========================================= + +You can experiment with migrating existing modules into a collection using the `content_collector tool <https://github.com/ansible/content_collector>`_. The ``content_collector`` is a playbook that helps you migrate content from an Ansible distribution into a collection. + +.. warning:: + + This tool is in active development and is provided only for experimentation and feedback at this point. + +See the `content_collector README <https://github.com/ansible/content_collector>`_ for full details and usage guidelines. Installing collections ----------------------- +====================== You can use the ``ansible-galaxy collection install`` command to install a collection on your system. The collection by default is installed at ``/path/ansible_collections/my_namespace/my_collection``. You can optionally add the ``-p`` option to specify an alternate location. |