Hello everyone,
i'm running a 3 Node Proxmox Cluster on Version 6.2-4.
I'm having CEPH configured as my primary storage system.
One of the Nodes is a VM acting as a tiebreaker / CEPH Monitor restricted from running VMs.
I used a private 10GbE Network as Cluster_network for CEPH for syncing the OSDs.
Here's my config:
My Issue is, that i can not create a ceph_pool with min_size = 1.
I tried it over the web-UI and the command line with the same result.
The command was:
It does not throw any errors
But it creates a pool with min_size = 2 as it shows in the Web-UI.
Any idea why this occurs or how i can fix this?
Thanks,
AKA
EDIT:
I just realised, that there are default values in the global section of the ceph configuration.
However, i thought those could be overwritten and if not, i'm at least expecting an error message.
i'm running a 3 Node Proxmox Cluster on Version 6.2-4.
I'm having CEPH configured as my primary storage system.
One of the Nodes is a VM acting as a tiebreaker / CEPH Monitor restricted from running VMs.
I used a private 10GbE Network as Cluster_network for CEPH for syncing the OSDs.
Here's my config:
Code:
[global]
auth_client_required = cephx
auth_cluster_required = cephx
auth_service_required = cephx
cluster_network = 192.168.100.52/24
fsid = 0b4b4108-0d40-44d7-916b-0546e915ddb5
mon_allow_pool_delete = true
mon_host = 10.23.0.52 10.23.0.53 10.23.0.56
osd_pool_default_min_size = 2
osd_pool_default_size = 2
public_network = 10.23.0.52/17
[client]
keyring = /etc/pve/priv/$cluster.$name.keyring
[mds]
keyring = /var/lib/ceph/mds/ceph-$id/keyring
[mon.proxmox-01]
public_addr = 10.23.0.52
[mon.proxmox-02]
public_addr = 10.23.0.53
[mon.tiebreaker-proxmox-01]
public_addr = 10.23.0.56
My Issue is, that i can not create a ceph_pool with min_size = 1.
I tried it over the web-UI and the command line with the same result.
The command was:
pveceph pool create vm_pool_new --add_storages 1 --min_size 1 --size 2
It does not throw any errors
But it creates a pool with min_size = 2 as it shows in the Web-UI.
Code:
root@proxmox-02:~# pveceph pool create vm_pool_new --add_storages 1 --min_size 1 --size 2
root@proxmox-02:~# pveceph pool ls
Name size min_size pg_num %-used used
vm_pool 2 2 128 0.24 1799372792324
vm_pool_new 2 2 128 0.00 0
Any idea why this occurs or how i can fix this?
Thanks,
AKA
EDIT:
I just realised, that there are default values in the global section of the ceph configuration.
However, i thought those could be overwritten and if not, i'm at least expecting an error message.
Last edited: