├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | /rebase-to-upstream.sh 2 | ceph-client-key 3 | ceph.client.admin.keyring 4 | ceph.conf 5 | ceph.mds.keyring 6 | ceph.mon.keyring 7 | ceph.osd.keyring 8 | ceph.rgw.keyring 9 | client-admin-key 10 | ceph-releases/devel/* 11 | 12 | __pycache__ 13 | *.pyc 14 | *.pyo 15 | *.log 16 | staging/ 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | `Containerfile` has moved 2 | ------------------------- 3 | 4 | This `ceph-container` GitHub repository is deprecated and read-only. **The Ceph developers have moved all development to the `Containerfile` in the primary `ceph` GitHub repository:** 5 | 6 | * `main`: https://github.com/ceph/ceph/blob/main/container/Containerfile 7 | 8 | Older releases: 9 | 10 | * `squid`: https://github.com/ceph/ceph/blob/squid/container/Containerfile 11 | * `reef`: https://github.com/ceph/ceph/blob/reef/container/Containerfile 12 | * `quincy`: https://github.com/ceph/ceph/blob/quincy/container/Containerfile 13 | 14 | Please make future contributions to these locations. 15 | 16 | 17 | History 18 | ------- 19 | 20 | This repository originally held the first experiments of putting Ceph into container images. Later on, this repository held a variety of operating systems and versions in file snippets with a templating system. We have simplified this to a single flat `Containerfile`, one per Ceph release. 21 | --------------------------------------------------------------------------------