blob: e3358bfbd29e54c7f55d5bbf8712d51149c14bc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
@cephadm
Feature: Install a basic Ceph cluster
In order to be able to provide storage services
As an system administrator
I want to install a Ceph cluster in the following server infrastructure:
- 3 nodes with 8Gb RAM, 4 CPUs, and 3 storage devices of 20Gb each.
- Using Fedora32 image in each node
Scenario: Execute commands in cluster nodes
Given I log as root into ceph-node-00
And I execute in host
"""
curl --silent --remote-name --location https://raw.githubusercontent.com/ceph/ceph/octopus/src/cephadm/cephadm
chmod +x cephadm
"""
When I execute in host
"""
cephadm version
"""
Then I get results which contain
"""
ceph version quincy (dev)
"""
|