Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
pve-manager
Commits
1e5253ca
Commit
1e5253ca
authored
Jan 03, 2014
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ceph: only use 64 PGs by default (same default as ceph default pools)
parent
ba2dc37e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
4 deletions
+12
-4
Ceph.pm
PVE/API2/Ceph.pm
+2
-2
changelog.Debian
debian/changelog.Debian
+8
-0
defines.mk
defines.mk
+1
-1
Ceph.js
www/manager/node/Ceph.js
+1
-1
No files found.
PVE/API2/Ceph.pm
View file @
1e5253ca
...
...
@@ -976,7 +976,7 @@ __PACKAGE__->register_method ({
pg_num
=>
{
description
=>
"
Number of placement groups.
",
type
=>
'
integer
',
default
=>
512
,
default
=>
64
,
optional
=>
1
,
minimum
=>
8
,
maximum
=>
32768
,
...
...
@@ -992,7 +992,7 @@ __PACKAGE__->register_method ({
die
"
not fully configured - missing '
$pve_ckeyring_path
'
\n
"
if
!
-
f
$pve_ckeyring_path
;
my
$pg_num
=
$param
->
{
pg_num
}
||
512
;
my
$pg_num
=
$param
->
{
pg_num
}
||
64
;
my
$size
=
$param
->
{
size
}
||
2
;
my
$min_size
=
$param
->
{
min_size
}
||
1
;
...
...
debian/changelog.Debian
View file @
1e5253ca
pve-manager (3.1-33) unstable; urgency=low
* ceph: return decompiled crush map in text format
* ceph: try to unmount OSD after removal
-- Proxmox Support Team <support@proxmox.com> Fri, 03 Jan 2014 10:58:49 +0100
pve-manager (3.1-32) unstable; urgency=low
* add mtu support for manual interfaces
...
...
defines.mk
View file @
1e5253ca
...
...
@@ -2,7 +2,7 @@ RELEASE=3.1
VERSION=3.1
PACKAGE=pve-manager
PACKAGERELEASE=3
2
PACKAGERELEASE=3
3
BINDIR=${DESTDIR}/usr/bin
PERLLIBDIR=${DESTDIR}/usr/share/perl5
...
...
www/manager/node/Ceph.js
View file @
1e5253ca
...
...
@@ -45,7 +45,7 @@ Ext.define('PVE.CephCreatePool', {
xtype
:
'
numberfield
'
,
fieldLabel
:
'
pg_num
'
,
name
:
'
pg_num
'
,
value
:
512
,
value
:
64
,
minValue
:
8
,
maxValue
:
32768
,
allowBlank
:
false
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment