-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This new integration test will deploy a cluster with multus enabled. It will be comprised of two network interfaces for ceph public and cluster communications. For now, it only deploys a Ceph cluster up to the OSDs. Closes: rook#9784 Signed-off-by: Sébastien Han <[email protected]>
- Loading branch information
Showing
5 changed files
with
146 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
################################################################################################################# | ||
# Define the settings for the rook-ceph cluster with common settings for a small test cluster. | ||
# All nodes with available raw devices will be used for the Ceph cluster. One node is sufficient | ||
# in this example. | ||
|
||
# For example, to create the cluster: | ||
# kubectl create -f crds.yaml -f common.yaml -f operator.yaml | ||
# kubectl create -f cluster-test.yaml | ||
################################################################################################################# | ||
kind: ConfigMap | ||
apiVersion: v1 | ||
metadata: | ||
name: rook-config-override | ||
namespace: rook-ceph # namespace:cluster | ||
data: | ||
config: | | ||
[global] | ||
osd_pool_default_size = 1 | ||
mon_warn_on_pool_no_redundancy = false | ||
bdev_flock_retry = 20 | ||
bluefs_buffered_io = false | ||
--- | ||
apiVersion: ceph.rook.io/v1 | ||
kind: CephCluster | ||
metadata: | ||
name: my-cluster | ||
namespace: rook-ceph # namespace:cluster | ||
spec: | ||
dataDirHostPath: /var/lib/rook | ||
cephVersion: | ||
image: quay.io/ceph/ceph:v17 | ||
allowUnsupported: true | ||
mon: | ||
count: 1 | ||
mgr: | ||
count: 1 | ||
dashboard: | ||
enabled: true | ||
network: | ||
provider: multus | ||
selectors: | ||
public: public-net | ||
cluster: cluster-net | ||
crashCollector: | ||
disable: true | ||
storage: | ||
useAllNodes: true | ||
useAllDevices: true | ||
#deviceFilter: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters