imgsync


Nameimgsync JSON
Version 1.5.1 PyPI version JSON
download
home_pagehttp://github.com/alvarolopez/imgsync/
Summaryimgsync will download sync images from several distribution repositories and send them to an OpenStack Image service (Glance).
upload_time2023-03-30 10:28:55
maintainer
docs_urlNone
authorAlvaro Lopez Garcia
requires_python
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # OpenStack Glance Image Synchronization tool

This application will download images from the official distribution
repository, and upload them to OpenStack Glance. It is possible to define
custom properties and prefixes for all the synced images.

## Available distribution repositories

Currently the following images repositories are supported:

### CentOS

- CentOS 6: http://cloud.centos.org/centos/6/images/
- CentOS 7: http://cloud.centos.org/centos/7/images/

### Debian

- Debian 9: https://cdimage.debian.org/cdimage/openstack/current-9/
- Debian testing: https://cdimage.debian.org/cdimage/openstack/testing/

### Ubuntu

- Ubuntu 14.04: https://cloud-images.ubuntu.com/trusty/
- Ubuntu 16.04: https://cloud-images.ubuntu.com/xenial/
- Ubuntu 18.04: https://cloud-images.ubuntu.com/bionic/

## Installation

Install it via PyPI:

    pip install imgsync

Or install it from the repo:

    git clone https://github.com/alvarolopez/imgsync
    pip install imgsync

## Configuration

Copy `/etc/imgsync/imgsync.conf.sample` into `/etc/imgsync/imgsync.conf` and
adjust it your your needs. Take into account the following:

- You need to configure your OpenStack Keystone authentication under the
  `[keystone_auth]` section. The user should be able to publicize images in
  your glance deployment (check your policy file).

- You can define a prefix to be used for all the distribution names with the
  `prefix` option.

- Additionally you can add some custom image properties, using the `properties`
  option, that can be repeated multiple times for multiple properties.

- The list of images to be downloaded is configured via the `distributions`
  option.

- CentOS distributions define additional options to allow the download of
  all the published images, or just the latest one. This is configured in
  the `[centos6]` and `[centos6]` sections. This is not possible for Debian and
  Ubuntu.

### Image properties

`imgsync` sets a property `source=imgsync` to all the images that donwloaded
and synced. This way we can identify if an image is uploaded into glance by us
or by anyone else. This property is hardcoded and cannot be reconfigured or
replaced by something else. Other properties set by `imgsync` are are stored with the
`imgsync.prefix` (like `imgsync.sha256` or `imgsync.sha512`)

Nevertheless, it is also possible to define additional properties in the form
"key=value" via the `properties` option in the configuration file (you can
specify this option several times).

Therefore, it is important that you configure glance to enable the proper
[policy protection rules](https://docs.openstack.org/developer/glance/property-protections.html)
so that only the configured user is able to write those properties (i.e. at
least `source`, `imgsync.sha512` and `imgsync.sha256`). Moreover, you need to
configure nova to exclude those properties when nova creates and uploads an
snapshot to glance, via the `non_inheritable_image_properties` option in your
`/etc/nova/nova.conf` configuration file (again, at least add `source`,
`imgsync.sha512` and `imgsync.sha256`).


            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/alvarolopez/imgsync/",
    "name": "imgsync",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Alvaro Lopez Garcia",
    "author_email": "aloga@ifca.unican.es",
    "download_url": "https://files.pythonhosted.org/packages/c9/b2/28d92e96072c02aab6baa82e3502fff4c8a55154a9ff902aec917ebbaff5/imgsync-1.5.1.tar.gz",
    "platform": null,
    "description": "# OpenStack Glance Image Synchronization tool\n\nThis application will download images from the official distribution\nrepository, and upload them to OpenStack Glance. It is possible to define\ncustom properties and prefixes for all the synced images.\n\n## Available distribution repositories\n\nCurrently the following images repositories are supported:\n\n### CentOS\n\n- CentOS 6: http://cloud.centos.org/centos/6/images/\n- CentOS 7: http://cloud.centos.org/centos/7/images/\n\n### Debian\n\n- Debian 9: https://cdimage.debian.org/cdimage/openstack/current-9/\n- Debian testing: https://cdimage.debian.org/cdimage/openstack/testing/\n\n### Ubuntu\n\n- Ubuntu 14.04: https://cloud-images.ubuntu.com/trusty/\n- Ubuntu 16.04: https://cloud-images.ubuntu.com/xenial/\n- Ubuntu 18.04: https://cloud-images.ubuntu.com/bionic/\n\n## Installation\n\nInstall it via PyPI:\n\n    pip install imgsync\n\nOr install it from the repo:\n\n    git clone https://github.com/alvarolopez/imgsync\n    pip install imgsync\n\n## Configuration\n\nCopy `/etc/imgsync/imgsync.conf.sample` into `/etc/imgsync/imgsync.conf` and\nadjust it your your needs. Take into account the following:\n\n- You need to configure your OpenStack Keystone authentication under the\n  `[keystone_auth]` section. The user should be able to publicize images in\n  your glance deployment (check your policy file).\n\n- You can define a prefix to be used for all the distribution names with the\n  `prefix` option.\n\n- Additionally you can add some custom image properties, using the `properties`\n  option, that can be repeated multiple times for multiple properties.\n\n- The list of images to be downloaded is configured via the `distributions`\n  option.\n\n- CentOS distributions define additional options to allow the download of\n  all the published images, or just the latest one. This is configured in\n  the `[centos6]` and `[centos6]` sections. This is not possible for Debian and\n  Ubuntu.\n\n### Image properties\n\n`imgsync` sets a property `source=imgsync` to all the images that donwloaded\nand synced. This way we can identify if an image is uploaded into glance by us\nor by anyone else. This property is hardcoded and cannot be reconfigured or\nreplaced by something else. Other properties set by `imgsync` are are stored with the\n`imgsync.prefix` (like `imgsync.sha256` or `imgsync.sha512`)\n\nNevertheless, it is also possible to define additional properties in the form\n\"key=value\" via the `properties` option in the configuration file (you can\nspecify this option several times).\n\nTherefore, it is important that you configure glance to enable the proper\n[policy protection rules](https://docs.openstack.org/developer/glance/property-protections.html)\nso that only the configured user is able to write those properties (i.e. at\nleast `source`, `imgsync.sha512` and `imgsync.sha256`). Moreover, you need to\nconfigure nova to exclude those properties when nova creates and uploads an\nsnapshot to glance, via the `non_inheritable_image_properties` option in your\n`/etc/nova/nova.conf` configuration file (again, at least add `source`,\n`imgsync.sha512` and `imgsync.sha256`).\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "imgsync will download sync images from several distribution repositories and send them to an OpenStack Image service (Glance).",
    "version": "1.5.1",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9b228d92e96072c02aab6baa82e3502fff4c8a55154a9ff902aec917ebbaff5",
                "md5": "ea60060fa75c292fa3e9f26e40eae455",
                "sha256": "f0620ce1b1248532bfc4639caf1745b47fbe1eb2d2da28ac9b68bdda63c07391"
            },
            "downloads": -1,
            "filename": "imgsync-1.5.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ea60060fa75c292fa3e9f26e40eae455",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18478,
            "upload_time": "2023-03-30T10:28:55",
            "upload_time_iso_8601": "2023-03-30T10:28:55.666046Z",
            "url": "https://files.pythonhosted.org/packages/c9/b2/28d92e96072c02aab6baa82e3502fff4c8a55154a9ff902aec917ebbaff5/imgsync-1.5.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-30 10:28:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "alvarolopez",
    "github_project": "imgsync",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "imgsync"
}
        
Elapsed time: 0.07222s