├── .github └── workflows │ └── build-packages.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── manifest.json ├── packaging ├── el8 │ └── main.spec └── focal │ ├── changelog │ ├── control │ ├── copyright │ ├── postinst │ ├── postrm │ ├── prerm │ ├── rules │ └── source │ └── format ├── src └── fakeroot │ └── usr │ └── share │ └── cockpit │ └── ceph-deploy │ ├── ceph-ansible-files │ ├── all-default.yml │ ├── hosts │ ├── hosts-default │ ├── nfss-default.yml │ ├── osds-default.yml │ └── smbs-default.yml │ ├── ceph-deploy.css │ ├── ceph-deploy.html │ ├── ceph-deploy.js │ ├── fontawesome │ ├── LICENSE.txt │ ├── attribution.js │ ├── css │ │ └── all.min.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── helper_scripts │ ├── ansible_runner │ ├── core_params │ ├── make_all │ ├── make_hosts │ ├── make_nfss │ ├── make_osds │ ├── make_rgwloadbalancers │ └── make_smbs │ ├── icons │ └── svg │ │ ├── arrow_down.svg │ │ ├── arrow_left_down.svg │ │ ├── bar_down.svg │ │ ├── bar_down_left.svg │ │ ├── bar_down_right.svg │ │ ├── bar_gap.svg │ │ ├── bar_right_down.svg │ │ ├── cd_logo_dark.svg │ │ ├── cd_logo_light.svg │ │ ├── fork_2.svg │ │ ├── fork_3.svg │ │ ├── join_2.svg │ │ └── join_3.svg │ ├── manifest.json │ ├── terminal.css │ ├── terminal.html │ ├── terminal.js │ ├── terminal │ ├── terminal.css │ ├── terminal.html │ └── terminal.js │ └── w3.css └── sync_ceph_deploy.sh /.github/workflows/build-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/.github/workflows/build-packages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/manifest.json -------------------------------------------------------------------------------- /packaging/el8/main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/packaging/el8/main.spec -------------------------------------------------------------------------------- /packaging/focal/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/packaging/focal/changelog -------------------------------------------------------------------------------- /packaging/focal/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/packaging/focal/control -------------------------------------------------------------------------------- /packaging/focal/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/packaging/focal/copyright -------------------------------------------------------------------------------- /packaging/focal/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/packaging/focal/postinst -------------------------------------------------------------------------------- /packaging/focal/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/packaging/focal/postrm -------------------------------------------------------------------------------- /packaging/focal/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/packaging/focal/prerm -------------------------------------------------------------------------------- /packaging/focal/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/packaging/focal/rules -------------------------------------------------------------------------------- /packaging/focal/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/all-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/all-default.yml -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/hosts -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/hosts-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/hosts-default -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/nfss-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/nfss-default.yml -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/osds-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/osds-default.yml -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/smbs-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-ansible-files/smbs-default.yml -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-deploy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-deploy.css -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-deploy.html -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-deploy.js -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/LICENSE.txt -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/attribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/attribution.js -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/ansible_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/ansible_runner -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/core_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/core_params -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_all -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_hosts -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_nfss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_nfss -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_osds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_osds -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_rgwloadbalancers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_rgwloadbalancers -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_smbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/helper_scripts/make_smbs -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/arrow_down.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/arrow_left_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/arrow_left_down.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_down.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_down_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_down_left.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_down_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_down_right.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_gap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_gap.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_right_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/bar_right_down.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/cd_logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/cd_logo_dark.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/cd_logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/cd_logo_light.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/fork_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/fork_2.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/fork_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/fork_3.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/join_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/join_2.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/join_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/icons/svg/join_3.svg -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/manifest.json -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/terminal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/terminal.css -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/terminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/terminal.html -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/terminal.js -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/terminal/terminal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/terminal/terminal.css -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/terminal/terminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/terminal/terminal.html -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/terminal/terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/terminal/terminal.js -------------------------------------------------------------------------------- /src/fakeroot/usr/share/cockpit/ceph-deploy/w3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/src/fakeroot/usr/share/cockpit/ceph-deploy/w3.css -------------------------------------------------------------------------------- /sync_ceph_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/45Drives/cockpit-ceph-deploy/HEAD/sync_ceph_deploy.sh --------------------------------------------------------------------------------