{ "info": { "author": "Inktank", "author_email": "ceph-devel@vger.kernel.org", "bugtrack_url": null, "classifiers": [], "description": "========================================================\n ceph-deploy -- Deploy Ceph with minimal infrastructure\n========================================================\n\n``ceph-deploy`` is a way to deploy Ceph relying on just SSH access to\nthe servers, ``sudo``, and some Python. It runs fully on your\nworkstation, requiring no servers, databases, or anything like that.\n\nIf you set up and tear down Ceph clusters a lot, and want minimal\nextra bureaucracy, this is for you.\n\nThis ``README`` provides a brief overview of ceph-deploy, for thorough\ndocumentation please go to http://ceph.com/ceph-deploy/docs\n\n.. _what this tool is not:\n\nWhat this tool is not\n---------------------\nIt is not a generic deployment system, it is only for Ceph, and is designed\nfor users who want to quickly get Ceph running with sensible initial settings\nwithout the overhead of installing Chef, Puppet or Juju.\n\nIt does not handle client configuration beyond pushing the Ceph config file\nand users who want fine-control over security settings, partitions or directory\nlocations should use a tool such as Chef or Puppet.\n\n\nInstallation\n============\nDepending on what type of usage you are going to have with ``ceph-deploy`` you\nmight want to look into the different ways to install it. For automation, you\nmight want to ``bootstrap`` directly. Regular users of ``ceph-deploy`` would\nprobably install from the OS packages or from the Python Package Index.\n\nPython Package Index\n--------------------\nIf you are familiar with Python install tools (like ``pip`` and\n``easy_install``) you can easily install ``ceph-deploy`` like::\n\n pip install ceph-deploy\n\nor::\n\n easy_install ceph-deploy\n\n\nIt should grab all the dependencies for you and install into the current user's\nenvironment.\n\nWe highly recommend using ``virtualenv`` and installing dependencies in\na contained way.\n\n\nDEB\n---\nAll new releases of ``ceph-deploy`` are pushed to all ``ceph`` DEB release\nrepos.\n\nThe DEB release repos are found at::\n\n http://ceph.com/debian-{release}\n http://ceph.com/debian-testing\n\nThis means, for example, that installing ``ceph-deploy`` from\nhttp://ceph.com/debian-giant will install the same version as from\nhttp://ceph.com/debian-firefly or http://ceph.com/debian-testing.\n\nRPM\n---\nAll new releases of ``ceph-deploy`` are pushed to all ``ceph`` RPM release\nrepos.\n\nThe RPM release repos are found at::\n\n http://ceph.com/rpm-{release}\n http://ceph.com/rpm-testing\n\nMake sure you add the proper one for your distribution (i.e. el7 vs rhel7).\n\nThis means, for example, that installing ``ceph-deploy`` from\nhttp://ceph.com/rpm-giant will install the same version as from\nhttp://ceph.com/rpm-firefly or http://ceph.com/rpm-testing.\n\nbootstrapping\n-------------\nTo get the source tree ready for use, run this once::\n\n ./bootstrap\n\nYou can symlink the ``ceph-deploy`` script in this somewhere\nconvenient (like ``~/bin``), or add the current directory to ``PATH``,\nor just always type the full path to ``ceph-deploy``.\n\n\nSSH and Remote Connections\n==========================\n``ceph-deploy`` will attempt to connect via SSH to hosts when the hostnames do\nnot match the current host's hostname. For example, if you are connecting to\nhost ``node1`` it will attempt an SSH connection as long as the current host's\nhostname is *not* ``node1``.\n\nceph-deploy at a minimum requires that the machine from which the script is\nbeing run can ssh as root without password into each Ceph node.\n\nTo enable this generate a new ssh keypair for the root user with no passphrase\nand place the public key (``id_rsa.pub`` or ``id_dsa.pub``) in::\n\n /root/.ssh/authorized_keys\n\nand ensure that the following lines are in the sshd config::\n\n PermitRootLogin without-password\n PubkeyAuthentication yes\n\nThe machine running ceph-deploy does not need to have the Ceph packages\ninstalled unless it needs to admin the cluster directly using the ``ceph``\ncommand line tool.\n\n\nusernames\n---------\nWhen not specified the connection will be done with the same username as the\none executing ``ceph-deploy``. This is useful if the same username is shared in\nall the nodes but can be cumbersome if that is not the case.\n\nA way to avoid this is to define the correct usernames to connect with in the\nSSH config, but you can also use the ``--username`` flag as well::\n\n ceph-deploy --username ceph install node1\n\n``ceph-deploy`` then in turn would use ``ceph@node1`` to connect to that host.\n\nThis would be the same expectation for any action that warrants a connection to\na remote host.\n\n\nManaging an existing cluster\n============================\n\nYou can use ceph-deploy to provision nodes for an existing cluster.\nTo grab a copy of the cluster configuration file (normally\n``ceph.conf``)::\n\n ceph-deploy config pull HOST\n\nYou will usually also want to gather the encryption keys used for that\ncluster::\n\n ceph-deploy gatherkeys MONHOST\n\nAt this point you can skip the steps below that create a new cluster\n(you already have one) and optionally skip installation and/or monitor\ncreation, depending on what you are trying to accomplish.\n\n\nCreating a new cluster\n======================\n\nCreating a new configuration\n----------------------------\n\nTo create a new configuration file and secret key, decide what hosts\nwill run ``ceph-mon``, and run::\n\n ceph-deploy new MON [MON..]\n\nlisting the hostnames of the monitors. Each ``MON`` can be\n\n * a simple hostname. It must be DNS resolvable without the fully\n qualified domain name.\n * a fully qualified domain name. The hostname is assumed to be the\n leading component up to the first ``.``.\n * a ``HOST:FQDN`` pair, of both the hostname and a fully qualified\n domain name or IP address. For example, ``foo``,\n ``foo.example.com``, ``foo:something.example.com``, and\n ``foo:1.2.3.4`` are all valid. Note, however, that the hostname\n should match that configured on the host ``foo``.\n\nThe above will create a ``ceph.conf`` and ``ceph.mon.keyring`` in your\ncurrent directory.\n\n\nEdit initial cluster configuration\n----------------------------------\n\nYou want to review the generated ``ceph.conf`` file and make sure that\nthe ``mon_host`` setting contains the IP addresses you would like the\nmonitors to bind to. These are the IPs that clients will initially\ncontact to authenticate to the cluster, and they need to be reachable\nboth by external client-facing hosts and internal cluster daemons.\n\nInstalling packages\n===================\n\nTo install the Ceph software on the servers, run::\n\n ceph-deploy install HOST [HOST..]\n\nThis installs the current default *stable* release. You can choose a\ndifferent release track with command line options, for example to use\na release candidate::\n\n ceph-deploy install --testing HOST\n\nOr to test a development branch::\n\n ceph-deploy install --dev=wip-mds-now-works-no-kidding HOST [HOST..]\n\n\nProxy or Firewall Installs\n--------------------------\nIf attempting to install behind a firewall or through a proxy you can\nuse the ``--no-adjust-repos`` that will tell ceph-deploy to skip any changes\nto the distro's repository in order to install the packages and it will go\nstraight to package installation.\n\nThat will allow an environment without internet access to point to *its own\nrepositories*. This means that those repositories will need to be properly\nsetup (and mirrored with all the necessary dependencies) before attempting an\ninstall.\n\nAnother alternative is to set the ``wget`` env variables to point to the right\nhosts, for example, put following lines into ``/root/.wgetrc`` on each node\n(since ceph-deploy runs wget as root)::\n\n http_proxy=http://host:port\n ftp_proxy=http://host:port\n https_proxy=http://host:port\n\n\n\nDeploying monitors\n==================\n\nTo actually deploy ``ceph-mon`` to the hosts you chose, run::\n\n ceph-deploy mon create HOST [HOST..]\n\nWithout explicit hosts listed, hosts in ``mon_initial_members`` in the\nconfig file are deployed. That is, the hosts you passed to\n``ceph-deploy new`` are the default value here.\n\nGather keys\n===========\n\nTo gather authenticate keys (for administering the cluster and\nbootstrapping new nodes) to the local directory, run::\n\n ceph-deploy gatherkeys HOST [HOST...]\n\nwhere ``HOST`` is one of the monitor hosts.\n\nOnce these keys are in the local directory, you can provision new OSDs etc.\n\n\nDeploying OSDs\n==============\n\nTo prepare a node for running OSDs, run::\n\n ceph-deploy osd create HOST:DISK[:JOURNAL] [HOST:DISK[:JOURNAL] ...]\n\nAfter that, the hosts will be running OSDs for the given data disks.\nIf you specify a raw disk (e.g., ``/dev/sdb``), partitions will be\ncreated and GPT labels will be used to mark and automatically activate\nOSD volumes. If an existing partition is specified, the partition\ntable will not be modified. If you want to destroy the existing\npartition table on DISK first, you can include the ``--zap-disk``\noption.\n\nIf there is already a prepared disk or directory that is ready to become an\nOSD, you can also do::\n\n ceph-deploy osd activate HOST:DIR[:JOURNAL] [...]\n\nThis is useful when you are managing the mounting of volumes yourself.\n\n\nAdmin hosts\n===========\n\nTo prepare a host with a ``ceph.conf`` and ``ceph.client.admin.keyring``\nkeyring so that it can administer the cluster, run::\n\n ceph-deploy admin HOST [HOST ...]\n\nForget keys\n===========\n\nThe ``new`` and ``gatherkeys`` put some Ceph authentication keys in keyrings in\nthe local directory. If you are worried about them being there for security\nreasons, run::\n\n ceph-deploy forgetkeys\n\nand they will be removed. If you need them again later to deploy additional\nnodes, simply re-run::\n\n ceph-deploy gatherkeys HOST [HOST...]\n\nand they will be retrieved from an existing monitor node.\n\nMultiple clusters\n=================\n\nAll of the above commands take a ``--cluster=NAME`` option, allowing\nyou to manage multiple clusters conveniently from one workstation.\nFor example::\n\n ceph-deploy --cluster=us-west new\n vi us-west.conf\n ceph-deploy --cluster=us-west mon\n\nFAQ\n===\n\nBefore anything\n---------------\nMake sure you have the latest version of ``ceph-deploy``. It is actively\ndeveloped and releases are coming weekly (on average). The most recent versions\nof ``ceph-deploy`` will have a ``--version`` flag you can use, otherwise check\nwith your package manager and update if there is anything new.\n\nWhy is feature X not implemented?\n---------------------------------\nUsually, features are added when/if it is sensible for someone that wants to\nget started with ceph and said feature would make sense in that context. If\nyou believe this is the case and you've read \"`what this tool is not`_\" and\nstill think feature ``X`` should exist in ceph-deploy, open a feature request\nin the ceph tracker: http://tracker.ceph.com/projects/ceph-deploy/issues\n\nA command gave me an error, what is going on?\n---------------------------------------------\nMost of the commands for ``ceph-deploy`` are meant to be run remotely in a host\nthat you have configured when creating the initial config. If a given command\nis not working as expected try to run the command that failed in the remote\nhost and assert the behavior there.\n\nIf the behavior in the remote host is the same, then it is probably not\nsomething wrong with ``ceph-deploy`` per-se. Make sure you capture the output\nof both the ``ceph-deploy`` output and the output of the command in the remote\nhost.\n\nIssues with monitors\n--------------------\nIf your monitors are not starting, make sure that the ``{hostname}`` you used\nwhen you ran ``ceph-deploy mon create {hostname}`` match the actual ``hostname -s``\nin the remote host.\n\nNewer versions of ``ceph-deploy`` should warn you if the results are different\nbut that might prevent the monitors from reaching quorum.\n\nDeveloping ceph-deploy\n======================\nNow that you have cracked your teeth on Ceph, you might find that you want to\ncontribute to ceph-deploy.\n\nResources\n---------\nBug tracking: http://tracker.ceph.com/projects/ceph-deploy/issues\n\nMailing list and IRC info is the same as ceph http://ceph.com/resources/mailing-list-irc/\n\nSubmitting Patches\n------------------\nPlease add test cases to cover any code you add. You can test your changes\nby running ``tox`` (You will also need ``mock`` and ``pytest`` ) from inside\nthe git clone\n\nWhen creating a commit message please use ``git commit -s`` or otherwise add\n``Signed-off-by: Your Name `` to your commit message.\n\nPatches can then be submitted by a pull request on GitHub.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ceph/ceph-deploy", "keywords": "ceph deploy", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "ceph-deploy", "package_url": "https://pypi.org/project/ceph-deploy/", "platform": "", "project_url": "https://pypi.org/project/ceph-deploy/", "project_urls": { "Homepage": "https://github.com/ceph/ceph-deploy" }, "release_url": "https://pypi.org/project/ceph-deploy/2.0.1/", "requires_dist": null, "requires_python": "", "summary": "Deploy Ceph with minimal infrastructure", "version": "2.0.1" }, "last_serial": 3978464, "releases": { "1.1": [], "1.2": [ { "comment_text": "", "digests": { "md5": "6bf4dfb0c6e764f368bd84b59249bb47", "sha256": "f9a04fc2c1e83ce580975e34dbd177d540b035f3fd8db4af58c07edf26cc08b2" }, "downloads": -1, "filename": "ceph-deploy-1.2.tar.gz", "has_sig": false, "md5_digest": "6bf4dfb0c6e764f368bd84b59249bb47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30303, "upload_time": "2013-08-10T00:35:25", "url": "https://files.pythonhosted.org/packages/bd/c0/771bc19247db7679e71675dfc1370b06e991c5b9844166f30d594ca401dc/ceph-deploy-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "6998e62c79f6f05e82cb5451ed7caefc", "sha256": "e5674bc0622d97bd5c03298f374d19bedcbebf23f773cdb34a7052b90cd48747" }, "downloads": -1, "filename": "ceph-deploy-1.2.1.tar.gz", "has_sig": false, "md5_digest": "6998e62c79f6f05e82cb5451ed7caefc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31538, "upload_time": "2013-08-15T21:35:37", "url": "https://files.pythonhosted.org/packages/6f/d6/fd201871f6321acff819d600e9ac057da193a50a5b6279c3ce1294d40e9b/ceph-deploy-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "720e8a9bcef00bbef9f37b678cb78e31", "sha256": "d820bcda19268aa35cc2ef0457f021bbff59f02e98b6c04b75c23457acd58d60" }, "downloads": -1, "filename": "ceph-deploy-1.2.2.tar.gz", "has_sig": false, "md5_digest": "720e8a9bcef00bbef9f37b678cb78e31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32572, "upload_time": "2013-08-22T19:10:33", "url": "https://files.pythonhosted.org/packages/0a/d2/a0ff684a27aed21f892ced3e7afc310472cf522cddf9b4541897b8fa7cdd/ceph-deploy-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "890e95169c89199cc2e68e64854f6dd3", "sha256": "fe566b1646fe2398858126a5f3aed7e35c71a0e3c54bd97cdcd9a24dd8777175" }, "downloads": -1, "filename": "ceph-deploy-1.2.3.tar.gz", "has_sig": false, "md5_digest": "890e95169c89199cc2e68e64854f6dd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32852, "upload_time": "2013-08-29T21:08:05", "url": "https://files.pythonhosted.org/packages/05/6c/30036c033c98e4c2bdcecc9b52e3478ae0119ed87b13ce5413929b50fe14/ceph-deploy-1.2.3.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "3cd731e52c59a773cf03fef519d5efd2", "sha256": "1909753a31ea3e293918817f02b7477327170a318143438e87f7a8b58fbbc689" }, "downloads": -1, "filename": "ceph-deploy-1.2.5.tar.gz", "has_sig": false, "md5_digest": "3cd731e52c59a773cf03fef519d5efd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66144, "upload_time": "2013-09-18T13:32:35", "url": "https://files.pythonhosted.org/packages/b2/04/862d5607289557597d960a9fe82bd27a3cb581f7eff5ded9f9bd84d21bc1/ceph-deploy-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "6979b90f2a63ff81d49f866a523745bb", "sha256": "3c74bf517bc488188798528fb18af9cd6510ed9c6d0988e4c0ff92745e7dc0d0" }, "downloads": -1, "filename": "ceph-deploy-1.2.6.tar.gz", "has_sig": false, "md5_digest": "6979b90f2a63ff81d49f866a523745bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66188, "upload_time": "2013-09-18T15:46:48", "url": "https://files.pythonhosted.org/packages/a4/23/9ec8df150412a1f715d49924fcd3b2e156cd8185cbdf787ae012d0a6e2cf/ceph-deploy-1.2.6.tar.gz" } ], "1.2.7": [ { "comment_text": "", "digests": { "md5": "17904975cd713cd03d11ce655172da86", "sha256": "bc3ac8ba3d90cbf4ff0b40ab0dc95f247eec19aafdd9a976bfc849f00cd549a5" }, "downloads": -1, "filename": "ceph-deploy-1.2.7.tar.gz", "has_sig": false, "md5_digest": "17904975cd713cd03d11ce655172da86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69449, "upload_time": "2013-10-07T16:43:44", "url": "https://files.pythonhosted.org/packages/dd/98/14253da54a4ffb503e6ed4a9439e5761614d20d695a0126978fc5fb9cf73/ceph-deploy-1.2.7.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "d39b6413d1d93968eeb7122b10c7d5f9", "sha256": "f4c42299b23417ec796bce2d8e9890d570b6837ebcc867c0427e20f2ce07ede5" }, "downloads": -1, "filename": "ceph-deploy-1.3.tar.gz", "has_sig": false, "md5_digest": "d39b6413d1d93968eeb7122b10c7d5f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66050, "upload_time": "2013-11-01T12:43:26", "url": "https://files.pythonhosted.org/packages/25/c8/7342f4767ec49fdc8b72481a4ebf2b0d0b46ffd2cd76c7c369443ac017ae/ceph-deploy-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "edb533b859ab31a0be37f9aba057e9b9", "sha256": "f2df51e3791ecf5e6df407a5701db1ceafc37768bc4fafaa10eba02def02e574" }, "downloads": -1, "filename": "ceph-deploy-1.3.1.tar.gz", "has_sig": false, "md5_digest": "edb533b859ab31a0be37f9aba057e9b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65811, "upload_time": "2013-11-07T13:52:41", "url": "https://files.pythonhosted.org/packages/9a/85/91676461df37a0f1414f5510c667fd8428d6bbab1002170931c094056c57/ceph-deploy-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "2c25db9820599c1a0e2442122a8c20e8", "sha256": "b0908e220b1f56a5d80846643e74645aadf094a84aa40a9db7f21e87d7c65429" }, "downloads": -1, "filename": "ceph-deploy-1.3.2.tar.gz", "has_sig": false, "md5_digest": "2c25db9820599c1a0e2442122a8c20e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67009, "upload_time": "2013-11-13T13:30:21", "url": "https://files.pythonhosted.org/packages/a3/9e/171ebbf9f27f1b4cf52cbb36f85ec5c225aea544c22d201a98dea9a5ad12/ceph-deploy-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "22de98e99eddd5c83fb0f80a2f274945", "sha256": "97e6b3188fded41ffe26c8b8f355bfcc451cbf02414931bfab4888cda57fc3ed" }, "downloads": -1, "filename": "ceph-deploy-1.3.3.tar.gz", "has_sig": false, "md5_digest": "22de98e99eddd5c83fb0f80a2f274945", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67974, "upload_time": "2013-11-26T20:20:21", "url": "https://files.pythonhosted.org/packages/d7/16/da6b3138b45e593228ffdc7e79432b2dde908905ddb0da9c08dbc7659b3f/ceph-deploy-1.3.3.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "8f33dbcd23f50b30ec8e669ae8c1e1b7", "sha256": "1d592108524d78c0b6436cf911d6005717b0e62f847a85a7039ce0441425b642" }, "downloads": -1, "filename": "ceph-deploy-1.3.5.tar.gz", "has_sig": false, "md5_digest": "8f33dbcd23f50b30ec8e669ae8c1e1b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72213, "upload_time": "2014-02-05T20:37:18", "url": "https://files.pythonhosted.org/packages/b4/78/163f6f2178e3ecacc744a36b18c31bc08847bbc8a45ffd774af4df017a0b/ceph-deploy-1.3.5.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "e45cc736f85f1fa3e77cceba1a2c2d74", "sha256": "2b5f31471b0a195f30d430de718f485faa074903276326992de789c006f6dc21" }, "downloads": -1, "filename": "ceph-deploy-1.4.0.tar.gz", "has_sig": false, "md5_digest": "e45cc736f85f1fa3e77cceba1a2c2d74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75918, "upload_time": "2014-03-20T12:44:53", "url": "https://files.pythonhosted.org/packages/83/d3/1c0e298059b9df295a17e81f2047a459cf77bce2dee57503acb7aa1b2798/ceph-deploy-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "aff34d46604ef15ad343c22dc47efcd5", "sha256": "050331bef8cfcdcdd753c295fab3ab497e4a98da6f0ed417cfbf726010d57b75" }, "downloads": -1, "filename": "ceph-deploy-1.5.0.tar.gz", "has_sig": false, "md5_digest": "aff34d46604ef15ad343c22dc47efcd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80001, "upload_time": "2014-04-28T19:33:18", "url": "https://files.pythonhosted.org/packages/74/32/67b5e408e165238bb04c299cbf7db1dc11e9f79cb2779ab06ce10b7e006e/ceph-deploy-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "241cf109f7ccffabe2812e30dbbd28a7", "sha256": "cfda975e59c4da5154ec99bb893e61f6b9579ed20a89ca84c754529de55aa2cc" }, "downloads": -1, "filename": "ceph-deploy-1.5.1.tar.gz", "has_sig": false, "md5_digest": "241cf109f7ccffabe2812e30dbbd28a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80136, "upload_time": "2014-05-01T16:37:06", "url": "https://files.pythonhosted.org/packages/3a/8d/aad15b4bf5e031621bd883ffc7175f080227bcf410a31887f35b8d49b56a/ceph-deploy-1.5.1.tar.gz" } ], "1.5.10": [ { "comment_text": "", "digests": { "md5": "e199e920eae6009d477aa66f3dd78fed", "sha256": "b09215beedae5250632993c52992a45175929c58b84291b00d44962ddd2040f8" }, "downloads": -1, "filename": "ceph-deploy-1.5.10.tar.gz", "has_sig": false, "md5_digest": "e199e920eae6009d477aa66f3dd78fed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84420, "upload_time": "2014-07-31T19:59:01", "url": "https://files.pythonhosted.org/packages/c7/52/269a35a1793093d6de298686ed95dbc9accc6d77446a668b33f5a895db6c/ceph-deploy-1.5.10.tar.gz" } ], "1.5.11": [ { "comment_text": "", "digests": { "md5": "e8f8961101295b03e15dac704b3b220e", "sha256": "04d64a1de31ecd8ca9033038a3727c3132b61aa8684cfbaa34c944e382f98a36" }, "downloads": -1, "filename": "ceph-deploy-1.5.11.tar.gz", "has_sig": false, "md5_digest": "e8f8961101295b03e15dac704b3b220e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85251, "upload_time": "2014-08-13T13:19:42", "url": "https://files.pythonhosted.org/packages/01/ea/16e322ddaf2c423dcd7b59873fcf403ff4c0cd2f2a8180dd95c0756b8389/ceph-deploy-1.5.11.tar.gz" } ], "1.5.12": [ { "comment_text": "", "digests": { "md5": "ebf0443d8a85590fb40d685e6950e232", "sha256": "09379acae1b90b50b06fee731686dba1a68faeb396f62debd5f2fb41844fc6fa" }, "downloads": -1, "filename": "ceph-deploy-1.5.12.tar.gz", "has_sig": false, "md5_digest": "ebf0443d8a85590fb40d685e6950e232", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86598, "upload_time": "2014-08-25T20:37:14", "url": "https://files.pythonhosted.org/packages/cb/0b/fefdafd1c1aedb6db9e5fd93b556a9e88be9785927fbaafc7df295832ec2/ceph-deploy-1.5.12.tar.gz" } ], "1.5.13": [ { "comment_text": "", "digests": { "md5": "989fec060c476622beaf493697c07f68", "sha256": "c55e4e3999b7881e013bb0d0f851996b410e35e6bc991831eb363f6a92f58544" }, "downloads": -1, "filename": "ceph-deploy-1.5.13.tar.gz", "has_sig": false, "md5_digest": "989fec060c476622beaf493697c07f68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90978, "upload_time": "2014-09-03T12:54:25", "url": "https://files.pythonhosted.org/packages/60/0b/04d28c24aa5d828ebddd3c14d2d192dff16393ad83aa034b5b6759ebc06e/ceph-deploy-1.5.13.tar.gz" } ], "1.5.14": [ { "comment_text": "", "digests": { "md5": "912a81129386882a74eda5afa05b58f4", "sha256": "25169975b766f1073b62af09b0d3a9c6f00b4a1364eb8c0ad38123598ab80a79" }, "downloads": -1, "filename": "ceph-deploy-1.5.14.tar.gz", "has_sig": false, "md5_digest": "912a81129386882a74eda5afa05b58f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91197, "upload_time": "2014-09-09T20:45:12", "url": "https://files.pythonhosted.org/packages/6a/79/8ca7c1f4560926c3d42fb4058e268c0fdba7aa61da971ef741213d875419/ceph-deploy-1.5.14.tar.gz" } ], "1.5.16": [ { "comment_text": "", "digests": { "md5": "27c994353253c84ced78dc5e3783df4b", "sha256": "ed70922137388567e79ddfbd08b7e212d8ead8c6bc1c9abc25f929fda45ac1f0" }, "downloads": -1, "filename": "ceph-deploy-1.5.16.tar.gz", "has_sig": false, "md5_digest": "27c994353253c84ced78dc5e3783df4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92559, "upload_time": "2014-09-30T13:30:32", "url": "https://files.pythonhosted.org/packages/56/87/a3966eab3c2ea618322fb18eaecbcfde370a71f4d5a7199499f66d2eb0b0/ceph-deploy-1.5.16.tar.gz" } ], "1.5.17": [ { "comment_text": "", "digests": { "md5": "b8121c5ffa92e1ceffa2859d921185e5", "sha256": "e409f391ef3799bb0fa066e5e2bf46a663817d8d51071f7a241dbd9bef12aa5c" }, "downloads": -1, "filename": "ceph-deploy-1.5.17.tar.gz", "has_sig": false, "md5_digest": "b8121c5ffa92e1ceffa2859d921185e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92714, "upload_time": "2014-10-06T16:12:44", "url": "https://files.pythonhosted.org/packages/c2/26/331f03e25d5aa20ae6eba80e2548ff831fa1269eac42863f91b1323004d5/ceph-deploy-1.5.17.tar.gz" } ], "1.5.18": [ { "comment_text": "", "digests": { "md5": "96891e9faa9658eddfe816d8425dadd7", "sha256": "615330865370e918d7e767f0086d62a2a9fd0a8cc84a4552783c8e754799975c" }, "downloads": -1, "filename": "ceph-deploy-1.5.18.tar.gz", "has_sig": false, "md5_digest": "96891e9faa9658eddfe816d8425dadd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92848, "upload_time": "2014-10-09T17:33:53", "url": "https://files.pythonhosted.org/packages/79/a9/5f0346edb29b26b49233e2195ff8753f553f0e4bb48e734edff3b63f08e6/ceph-deploy-1.5.18.tar.gz" } ], "1.5.19": [ { "comment_text": "", "digests": { "md5": "8ce90ca7bb410a7a7230fc4070d40c8d", "sha256": "afa2c06f55e706432d865f71a88733dbb43343ef3b57b6a8b88b55520062cc4c" }, "downloads": -1, "filename": "ceph-deploy-1.5.19.tar.gz", "has_sig": false, "md5_digest": "8ce90ca7bb410a7a7230fc4070d40c8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92410, "upload_time": "2014-11-13T19:24:45", "url": "https://files.pythonhosted.org/packages/56/8e/9fccb2f8511a1316b72051d7eb5d3bf1b2b81e67fa5d482e5e00276c3fb8/ceph-deploy-1.5.19.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "524d7820bb346464520551d247d58f59", "sha256": "326ea935e28a0469b46a641b5b14dde1aa724189c7c5fcd9e56936ba908f1d17" }, "downloads": -1, "filename": "ceph-deploy-1.5.2.tar.gz", "has_sig": false, "md5_digest": "524d7820bb346464520551d247d58f59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80130, "upload_time": "2014-05-07T18:56:21", "url": "https://files.pythonhosted.org/packages/f2/c5/0cbfc8a7d1f858783ae02ea273927dd10839435942964a3bbf7ae3a67e22/ceph-deploy-1.5.2.tar.gz" } ], "1.5.20": [ { "comment_text": "", "digests": { "md5": "31c67baa842ef9ee5645c931c5248eff", "sha256": "b5274e2baffa6a473b80be43e530ba17be1ae8d29ae0b90c5a0f8cb9cd993334" }, "downloads": -1, "filename": "ceph-deploy-1.5.20.tar.gz", "has_sig": false, "md5_digest": "31c67baa842ef9ee5645c931c5248eff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92440, "upload_time": "2014-11-13T19:27:27", "url": "https://files.pythonhosted.org/packages/09/03/7537aa87fda0817238087ffdcf94dba1c77dd7b39a422d599f9150911733/ceph-deploy-1.5.20.tar.gz" } ], "1.5.21": [ { "comment_text": "", "digests": { "md5": "762402c62951f9bc75cd97213f6c07d5", "sha256": "1dc632f45247a278c05fa5bdeba38da5fcce782ad6a9e61e24b253b8e83a5690" }, "downloads": -1, "filename": "ceph-deploy-1.5.21.tar.gz", "has_sig": false, "md5_digest": "762402c62951f9bc75cd97213f6c07d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92566, "upload_time": "2014-12-10T15:52:26", "url": "https://files.pythonhosted.org/packages/6e/3e/a3e8167b98f3ffa321e32871d5f15341ffda293f4ebecf5163bed31e3126/ceph-deploy-1.5.21.tar.gz" } ], "1.5.22": [ { "comment_text": "", "digests": { "md5": "c6d197fce5d7ee309a29f2c9cf3b227c", "sha256": "d0cddac8d660d3f8515e0771cfca435e67d0e043b531467599c4230990660c13" }, "downloads": -1, "filename": "ceph-deploy-1.5.22.tar.gz", "has_sig": false, "md5_digest": "c6d197fce5d7ee309a29f2c9cf3b227c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 94288, "upload_time": "2015-03-09T16:20:15", "url": "https://files.pythonhosted.org/packages/21/01/8d986ebce72127c594b8e10d0c0aa84134a442584047c09328df03c90745/ceph-deploy-1.5.22.tar.gz" } ], "1.5.23": [ { "comment_text": "", "digests": { "md5": "5d5e38c5e62b5d44a58b4a807a64a0e9", "sha256": "6c3bd73ee545641c2941d361805ea4eba429e7b799fe37d0cca3098dd7d1db8a" }, "downloads": -1, "filename": "ceph-deploy-1.5.23.tar.gz", "has_sig": false, "md5_digest": "5d5e38c5e62b5d44a58b4a807a64a0e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95902, "upload_time": "2015-04-08T14:24:34", "url": "https://files.pythonhosted.org/packages/8f/fc/3aa88073038c950e8940c084ee3de55238825c0359d0db48be52635da170/ceph-deploy-1.5.23.tar.gz" } ], "1.5.24": [ { "comment_text": "", "digests": { "md5": "cb9ec1cccd937ad4e85fd7cf2bf6b64e", "sha256": "02f111d16b3dbd91bdca3cf999fd3b12383dbea6806777ee50ab1499bc697e37" }, "downloads": -1, "filename": "ceph-deploy-1.5.24.tar.gz", "has_sig": false, "md5_digest": "cb9ec1cccd937ad4e85fd7cf2bf6b64e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98009, "upload_time": "2015-05-18T20:36:55", "url": "https://files.pythonhosted.org/packages/18/64/8e1fbcb1b57a3870e75d67ee889e3b13330744fbd23478c066dd69ac9db4/ceph-deploy-1.5.24.tar.gz" } ], "1.5.25": [ { "comment_text": "", "digests": { "md5": "7a0c04174f45b343a4ffe25c8d9caf48", "sha256": "5c7b55bb5c12c88a9b387163006cf1c4df10a650e3b56ccbc220bcc2d9d621a9" }, "downloads": -1, "filename": "ceph-deploy-1.5.25.tar.gz", "has_sig": false, "md5_digest": "7a0c04174f45b343a4ffe25c8d9caf48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98416, "upload_time": "2015-05-26T17:45:08", "url": "https://files.pythonhosted.org/packages/52/7f/e383089ec71b91eb36867983a158cf176a34c493a04f7b17ec8fd1a6afc4/ceph-deploy-1.5.25.tar.gz" } ], "1.5.26": [ { "comment_text": "", "digests": { "md5": "44f648d39e8502fc0150ac2fe69c30af", "sha256": "2fe9c0fb1527397301709f60e44e5d9d31bc96322af8ec12a33c379faaa9d63f" }, "downloads": -1, "filename": "ceph-deploy-1.5.26.tar.gz", "has_sig": false, "md5_digest": "44f648d39e8502fc0150ac2fe69c30af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105195, "upload_time": "2015-07-20T21:24:38", "url": "https://files.pythonhosted.org/packages/74/8a/2acfe6fe13ca5714ce03f8413dd19576f9ecea40e89605ef7ce82283db49/ceph-deploy-1.5.26.tar.gz" } ], "1.5.27": [ { "comment_text": "", "digests": { "md5": "3a8fe3e2b31d7d77f2a6e46441e1f621", "sha256": "2645b724278e832ac460e81553228e4d6da04806023a1ae5808224f09835c1b2" }, "downloads": -1, "filename": "ceph-deploy-1.5.27.tar.gz", "has_sig": false, "md5_digest": "3a8fe3e2b31d7d77f2a6e46441e1f621", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106408, "upload_time": "2015-08-05T23:24:33", "url": "https://files.pythonhosted.org/packages/9c/15/29a66e2f656ba790d7c2082ff8f8e7e29cae3eb44597e1b8fde782bf69cb/ceph-deploy-1.5.27.tar.gz" } ], "1.5.28": [ { "comment_text": "", "digests": { "md5": "9babcfed4c9297fca00967e7c60e1759", "sha256": "4ba0e69231ed62f39f68ea4689436c152bbf0d1a2f702bba15d4e8027fc463b5" }, "downloads": -1, "filename": "ceph-deploy-1.5.28.tar.gz", "has_sig": false, "md5_digest": "9babcfed4c9297fca00967e7c60e1759", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107058, "upload_time": "2015-08-26T21:44:12", "url": "https://files.pythonhosted.org/packages/86/bb/1d0500e8a9c39718c6aa66fc1d3e5857f312e891ab2abc4ebd86010f4e05/ceph-deploy-1.5.28.tar.gz" } ], "1.5.29": [ { "comment_text": "", "digests": { "md5": "cafac7188062a9fd44bc179ecf248dad", "sha256": "ee3f9f0aaacdd5633ae710fa2f7909be0f45b49e7472974326d80750fbd1c40e" }, "downloads": -1, "filename": "ceph-deploy-1.5.29.tar.gz", "has_sig": false, "md5_digest": "cafac7188062a9fd44bc179ecf248dad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108013, "upload_time": "2015-12-09T20:21:22", "url": "https://files.pythonhosted.org/packages/48/69/8860d73cee4a1d3045e607c40ee1b883a5bf3a136127b91722d01c8b20bc/ceph-deploy-1.5.29.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "398514c4c845fecbe522b8fb0eec7c05", "sha256": "bac1bcad27ca85df23d7446bb731d26479ee0f178deb9310444b725fd2c0771c" }, "downloads": -1, "filename": "ceph-deploy-1.5.3.tar.gz", "has_sig": false, "md5_digest": "398514c4c845fecbe522b8fb0eec7c05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81062, "upload_time": "2014-05-30T18:24:45", "url": "https://files.pythonhosted.org/packages/95/a2/4b9062cd5917937e1beaaf99559862e299d014e5722415410e688d3692bc/ceph-deploy-1.5.3.tar.gz" } ], "1.5.30": [ { "comment_text": "", "digests": { "md5": "c48437256c2287be0b47799390221ed1", "sha256": "f9c1c3a22519cafe32872f57328ef2ed42bbab913ef9089989508dcf7c610c00" }, "downloads": -1, "filename": "ceph-deploy-1.5.30.tar.gz", "has_sig": false, "md5_digest": "c48437256c2287be0b47799390221ed1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108077, "upload_time": "2016-01-06T18:45:43", "url": "https://files.pythonhosted.org/packages/fc/12/bc4a9c167c4536e84fb2ef26c368a99867cb9c5a539d967be54dbb613794/ceph-deploy-1.5.30.tar.gz" } ], "1.5.31": [ { "comment_text": "", "digests": { "md5": "d97569b1d6046d9bd77ba0c98f84ab3d", "sha256": "5147a745e5950ef1d0efad652eecef15d619c3c20a69d168bceb97e1fc85eef6" }, "downloads": -1, "filename": "ceph-deploy-1.5.31.tar.gz", "has_sig": false, "md5_digest": "d97569b1d6046d9bd77ba0c98f84ab3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108118, "upload_time": "2016-01-06T18:46:27", "url": "https://files.pythonhosted.org/packages/1b/08/d7b97eef261ad0970c43b9288f417baea9f271fcdf792d365cd815f44e73/ceph-deploy-1.5.31.tar.gz" } ], "1.5.32": [ { "comment_text": "", "digests": { "md5": "cc336b7a5346c306bd4d991370c2a912", "sha256": "ed86621bd7cc2c4135e6f93266f851bbb384c9a7dcefc0a8ff5c6d1dc066415f" }, "downloads": -1, "filename": "ceph-deploy-1.5.32.tar.gz", "has_sig": false, "md5_digest": "cc336b7a5346c306bd4d991370c2a912", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108846, "upload_time": "2016-04-14T13:39:13", "url": "https://files.pythonhosted.org/packages/ef/40/4e9ce12bdd38ad22c4f3b318255533d69b466d3c731f2297936d248347a7/ceph-deploy-1.5.32.tar.gz" } ], "1.5.33": [ { "comment_text": "", "digests": { "md5": "980ff17b69a0f8cb465063ed5ba4ce77", "sha256": "483da90646e2c9fd3f4d9de905fea95c568765f84d10850067332d58107d7bb3" }, "downloads": -1, "filename": "ceph-deploy-1.5.33.tar.gz", "has_sig": false, "md5_digest": "980ff17b69a0f8cb465063ed5ba4ce77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108573, "upload_time": "2016-08-15T12:31:44", "url": "https://files.pythonhosted.org/packages/88/a9/2cb4d165d8c6afba2203433cdca27c972c5661524396619584098ff3504a/ceph-deploy-1.5.33.tar.gz" } ], "1.5.34": [ { "comment_text": "", "digests": { "md5": "3345e1c64b80e510d74c6d2ce6b7923b", "sha256": "8c6b7c480cee9216d00c48ec414a51792be2e358584128245481395c8b34e03d" }, "downloads": -1, "filename": "ceph-deploy-1.5.34.tar.gz", "has_sig": false, "md5_digest": "3345e1c64b80e510d74c6d2ce6b7923b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112763, "upload_time": "2016-08-15T12:33:07", "url": "https://files.pythonhosted.org/packages/a2/17/3fd72f4862ee6ec3b82d9bea8f4e7bb3ba4b1f24ebfe4d03b87091f1369c/ceph-deploy-1.5.34.tar.gz" } ], "1.5.35": [ { "comment_text": "", "digests": { "md5": "10ce8e5b52765c36160b3bfac668931e", "sha256": "43de455ebb1238af2d412a80622944e905df6caf94745a1263095a2f9cbc34d7" }, "downloads": -1, "filename": "ceph-deploy-1.5.35.tar.gz", "has_sig": false, "md5_digest": "10ce8e5b52765c36160b3bfac668931e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113588, "upload_time": "2016-08-15T13:32:18", "url": "https://files.pythonhosted.org/packages/9e/16/81dcf97a02b0e06ffed9d73eeea73d1d516f6d66be692a29ecda48482369/ceph-deploy-1.5.35.tar.gz" } ], "1.5.36": [ { "comment_text": "", "digests": { "md5": "42cd8100cd3fe84cf91886749f51d505", "sha256": "028ece525d48458ad6ae59a6038e54dea1d4b51c22038952570a80e1b05692d7" }, "downloads": -1, "filename": "ceph-deploy-1.5.36.tar.gz", "has_sig": false, "md5_digest": "42cd8100cd3fe84cf91886749f51d505", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113699, "upload_time": "2016-09-02T11:39:11", "url": "https://files.pythonhosted.org/packages/23/f0/f144b1b55534a3e10d269dbfbe092e0aaa1c4b826c24f5df9320ae9bdfce/ceph-deploy-1.5.36.tar.gz" } ], "1.5.37": [ { "comment_text": "", "digests": { "md5": "dcb34989552bad91e6a45a1cbae294eb", "sha256": "c2f3497cd949704a449603f02fd112286d1549807b5f623d54f31fad8da5e871" }, "downloads": -1, "filename": "ceph-deploy-1.5.37.tar.gz", "has_sig": false, "md5_digest": "dcb34989552bad91e6a45a1cbae294eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113544, "upload_time": "2017-01-03T22:13:55", "url": "https://files.pythonhosted.org/packages/d3/86/07629c87eb9657e8f0558b5b606cf11ea17947e74ef53ff47ca5f0cb475d/ceph-deploy-1.5.37.tar.gz" } ], "1.5.38": [ { "comment_text": "", "digests": { "md5": "eb526df5ef774220edb8c55eec68b6b0", "sha256": "8abec2b57684c0b4747a264ab72b0e4b1e399d3d774d5a49da993ba99767c9b0" }, "downloads": -1, "filename": "ceph-deploy-1.5.38.tar.gz", "has_sig": false, "md5_digest": "eb526df5ef774220edb8c55eec68b6b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115167, "upload_time": "2017-05-19T20:52:31", "url": "https://files.pythonhosted.org/packages/6c/e3/3d94660ba5c7f9b520cc50ec91a7e95af57867321a4f16c81d46cf4eb7f5/ceph-deploy-1.5.38.tar.gz" } ], "1.5.39": [ { "comment_text": "", "digests": { "md5": "79758619164bfa53d051a3c8c365eb22", "sha256": "03729b363329f611a0da5e7fc5d0eff1fd585089ef96ab7e59943aa265e5993e" }, "downloads": -1, "filename": "ceph-deploy-1.5.39.tar.gz", "has_sig": false, "md5_digest": "79758619164bfa53d051a3c8c365eb22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114704, "upload_time": "2017-09-01T12:52:34", "url": "https://files.pythonhosted.org/packages/63/59/c2752952b7867faa2d63ba47c47da96e2f43f5124029975b579020df3665/ceph-deploy-1.5.39.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "a485a4f8873c7981ed2c4542a784bd6e", "sha256": "cc521e9da30bba9161c5e4d66e520a075896034db312ea010a5168495d143bb5" }, "downloads": -1, "filename": "ceph-deploy-1.5.4.tar.gz", "has_sig": false, "md5_digest": "a485a4f8873c7981ed2c4542a784bd6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82436, "upload_time": "2014-06-06T15:40:54", "url": "https://files.pythonhosted.org/packages/de/61/5504788034b867ce3b3df9964f43c5ba862f64f25f4bee0f4ec479d7e52c/ceph-deploy-1.5.4.tar.gz" } ], "1.5.5": [ { "comment_text": "", "digests": { "md5": "ef9856e28e18fbe04bba2c44a1747174", "sha256": "b835f7ece2c7e5363bc4a9eb13c74d547742e4c6891e1b01543d563b8243b9e9" }, "downloads": -1, "filename": "ceph-deploy-1.5.5.tar.gz", "has_sig": false, "md5_digest": "ef9856e28e18fbe04bba2c44a1747174", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116431, "upload_time": "2014-07-01T20:51:41", "url": "https://files.pythonhosted.org/packages/c9/77/f28307a920f3799b3067915f69ed835086fbed362b5518be4ddf05c6a35e/ceph-deploy-1.5.5.tar.gz" } ], "1.5.6": [ { "comment_text": "", "digests": { "md5": "57197be647c583d494099e1b2ce90fba", "sha256": "2f7f9470eea64d38eac4d10aaadd79d52e560bab1aee72c21b8e404edf66f409" }, "downloads": -1, "filename": "ceph-deploy-1.5.6.tar.gz", "has_sig": false, "md5_digest": "57197be647c583d494099e1b2ce90fba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116436, "upload_time": "2014-07-01T20:53:21", "url": "https://files.pythonhosted.org/packages/64/47/177e18449dcc0817c0f1359ecca9dc6737174a903ae38e21fd708be3fcae/ceph-deploy-1.5.6.tar.gz" } ], "1.5.7": [ { "comment_text": "", "digests": { "md5": "20c77d2c80add70a246002998fb5f561", "sha256": "5e56c5cbc54b9e202219b21df0086b766fd77bde650a9deb54278e1ffa5cbab1" }, "downloads": -1, "filename": "ceph-deploy-1.5.7.tar.gz", "has_sig": false, "md5_digest": "20c77d2c80add70a246002998fb5f561", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116488, "upload_time": "2014-07-01T20:53:33", "url": "https://files.pythonhosted.org/packages/30/2c/a19bef604c3187f942f5246c0615a1565a04f42f245db8c7edbc81e13e5d/ceph-deploy-1.5.7.tar.gz" } ], "1.5.8": [ { "comment_text": "", "digests": { "md5": "c39267e948e693f0d6749e59419a1307", "sha256": "74b8756a0504a707da993404606585b0553526b05618e31d1493e54469954936" }, "downloads": -1, "filename": "ceph-deploy-1.5.8.tar.gz", "has_sig": false, "md5_digest": "c39267e948e693f0d6749e59419a1307", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117044, "upload_time": "2014-07-09T17:41:38", "url": "https://files.pythonhosted.org/packages/07/23/c5e8d5b16f60c60780ec151a5e684308c926e27ab694a040d9d86108373d/ceph-deploy-1.5.8.tar.gz" } ], "1.5.9": [ { "comment_text": "", "digests": { "md5": "c76555c637a917e0110cd6cc225350db", "sha256": "d75b74c6db58bf7acdbe9ee0159ea75bd2e4b90b06be7e937972a676061283e1" }, "downloads": -1, "filename": "ceph-deploy-1.5.9.tar.gz", "has_sig": false, "md5_digest": "c76555c637a917e0110cd6cc225350db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84102, "upload_time": "2014-07-14T17:41:16", "url": "https://files.pythonhosted.org/packages/5d/c3/d6401af4559f2011767ed2a12246af8bf433a2c2200ba8b1cdd3dc02c651/ceph-deploy-1.5.9.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "e3a805cfa4a37ef5c942d9fa6c827494", "sha256": "f76eaea777fe4f19b855d3a94eedba6231a4f1310814f28dc0193181a3e938f4" }, "downloads": -1, "filename": "ceph-deploy-2.0.0.tar.gz", "has_sig": false, "md5_digest": "e3a805cfa4a37ef5c942d9fa6c827494", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113786, "upload_time": "2018-01-16T23:13:33", "url": "https://files.pythonhosted.org/packages/e4/bc/62e70c44407a34f1891d8b53e445617f3d3d70bc5db594c66ffb279c2952/ceph-deploy-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "2dd9c21f5373b3513ab6bfa38d96426d", "sha256": "aa34fa0ef75946d4aff63dbe639c7add4034b90b974954c7bde54fb4fc0817e5" }, "downloads": -1, "filename": "ceph-deploy-2.0.1.tar.gz", "has_sig": false, "md5_digest": "2dd9c21f5373b3513ab6bfa38d96426d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115140, "upload_time": "2018-06-19T17:59:56", "url": "https://files.pythonhosted.org/packages/1f/15/8dcbd2054670a8761d6484e588739cac5681e5661e9379862d121188b545/ceph-deploy-2.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2dd9c21f5373b3513ab6bfa38d96426d", "sha256": "aa34fa0ef75946d4aff63dbe639c7add4034b90b974954c7bde54fb4fc0817e5" }, "downloads": -1, "filename": "ceph-deploy-2.0.1.tar.gz", "has_sig": false, "md5_digest": "2dd9c21f5373b3513ab6bfa38d96426d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115140, "upload_time": "2018-06-19T17:59:56", "url": "https://files.pythonhosted.org/packages/1f/15/8dcbd2054670a8761d6484e588739cac5681e5661e9379862d121188b545/ceph-deploy-2.0.1.tar.gz" } ] }