You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -127,6 +128,49 @@ After successful deployment, the installer automatically:
127
128
2.**Validates Hypervisors**: Lists available hypervisors to confirm successful deployment
128
129
3.**Provides Status**: Displays deployment status and service availability
129
130
131
+
## Deploy Ceph
132
+
133
+
JetBrew supports deploying an external Ceph cluster that can be integrated with RHOSO for block storage (Cinder), image storage (Glance), and VM disk storage (Nova). The Ceph deployment is performed separately from the main RHOSO deployment.
134
+
135
+
### Prerequisites
136
+
137
+
Before deploying Ceph, ensure:
138
+
-**Sufficient Nodes**: You have enough nodes available.
139
+
-**Registry Access**: Access to Red Hat registry (`registry.redhat.io`) with valid credentials.
140
+
-**rhos release rpm**: Make sure You have Redhat openstack rpm.
141
+
142
+
### Configuration
143
+
144
+
#### Required Variables
145
+
146
+
Edit the `ansible/group_vars/all.yml` file and configure the following mandatory variables:
147
+
148
+
```yaml
149
+
# External ceph deploy vars
150
+
ceph_node_count: 3
151
+
ansible_ssh_password: "{{ ssh_password }}"
152
+
153
+
rhos_release_rpm:
154
+
ceph_version: "7.1"
155
+
156
+
# Registry credentials used by external ceph
157
+
registry_url: "registry.redhat.io"
158
+
registry_username:
159
+
registry_password:
160
+
```
161
+
- `ceph_node_count` Number of nodes assigned for the Ceph cluster.
162
+
- `ansible_ssh_password`Defaults to `ssh_password` if already defined, or can be explicitly set here.
163
+
- `rhos_release_rpm`Path or URL to the RHOS release RPM.
164
+
- `ceph_version`Desired Ceph version to deploy.
165
+
- `registry_url`Registry URL where Ceph images are hosted.
166
+
- `registry_username`Username for registry authentication.
167
+
- `registry_password`Password for registry authentication.
0 commit comments