search for: ovirt_vol

Displaying 8 results from an estimated 8 matches for "ovirt_vol".

2009 May 20
2
[PATCH node] Adds support for a core dump partition to the node.
...art in boot swap root config logging data ; do + for part in boot swap root config logging coredump data ; do part_regexp="^0$" if [ "$part" = "data" ]; then part_regexp="^\-1|0$" @@ -234,6 +236,7 @@ set /files$OVIRT_DEFAULTS/OVIRT_VOL_SWAP_SIZE $SWAP_SIZE set /files$OVIRT_DEFAULTS/OVIRT_VOL_ROOT_SIZE $ROOT_SIZE set /files$OVIRT_DEFAULTS/OVIRT_VOL_CONFIG_SIZE $CONFIG_SIZE set /files$OVIRT_DEFAULTS/OVIRT_VOL_LOGGING_SIZE $LOGGING_SIZE +set /files$OVIRT_DEFAULTS/OVIRT_VOL_COREDUMP_SIZE $COREDUMP_SIZE set /files$OVIRT_DEFAULTS/O...
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...- Data2,Swap2 - as part of the new AppVG * Allows the specification of multiple disks, per VG The new syntax for ovirt_init, which includes the original one, is: virt_init=HOSTVGDISK1[,HOSTVGDISK2...][;APPVGDISK1[,APPVGDISK2...]] where DISK=[usb|scsi[:serial#]|/dev/...] The new syntax for ovirt_vol, which includes the original one, is: ovirt_vol=size[,{Swap|Data|Config|Logging|Data2|Swap2}][:size...] or simply ovirt_vol=BOOT_MB:SWAP_MB:ROOT_MB:CONFIG_MB:LOGGING_MB:DATA_MB:SWAP2_MB:DATA2_MB Signed-off-by: Ricardo Marin Matinata <matinata at br.ibm.com> --- recipe/common-pos...
2018 Feb 26
0
rpc/glusterd-locks error
Good morning. We have a 6 node cluster. 3 nodes are participating in a replica 3 volume. Naming convention: xx01 - 3 nodes participating in ovirt_vol xx02 - 3 nodes NOT particpating in ovirt_vol Last week, restarted glusterd on each node in cluster to update (one at a time). The three xx01 nodes all show the following in glusterd.log: [2018-02-26 14:31:47.330670] E [socket.c:2020:__socket_read_frag] 0-rpc: wrong MSG-TYPE (29386) received from...
2009 Nov 16
1
Refactored upgrade patch...
This patch includes feedback from apevec to remain backward compatible with the previous karg, ovirt_local_boot.
2009 Nov 13
1
[PATCH] Provides an explicit upgrade path for an installed node.
...| 12 +++++++++++- 3 files changed, 31 insertions(+), 17 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-early index cdd4afd..cda1b3f 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -135,7 +135,7 @@ start() { # ovirt_init=[usb|scsi[:serial#]|/dev/...] # ovirt_vol=BOOT_MB:SWAP_MB:ROOT_MB:CONFIG_MB:LOGGING_MB:DATA_MB # ovirt_overcommit=<overcommit_ratio> - # ovirt_local_boot + # ovirt_upgrade # ovirt_standalone # ovirt_firstboot # rescue @@ -182,9 +182,9 @@ start() { # or a specific positive number in MB v...
2009 Nov 16
2
Resend...
Resending the refactored patch: I realized after I emailed it that it referenced the wrong bugzilla.
2009 Sep 26
10
Adding handling for Multipath storage devices
The following patches introduce support for multipath and cciss devices to the ovirt-node and node-image. Comments are appreciated. These patches assume that the 3 patches (2 node, 1 node-image) from Joey are all incorporated. Mike
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...+ return True + +# perform automatic local disk installation +# when at least following boot parameters are present: +# for networking - OVIRT_BOOTIF, management NIC +# if other ip bootparams are not specified, IPv4 DHCP is assumed +# for storage - OVIRT_INIT, local disk to use +# if ovirt_vol is not specified, default volume sizes are set +def is_auto_install(): + if OVIRT_VARS.has_key("OVIRT_BOOTIF") and OVIRT_VARS.has_key("OVIRT_INIT"): + return True + else: + return False + +# return 0 if this is an upgrade +# return 1 otherwise +def is_upgrade...