Change in ovirt-engine-cli[master]: cli: add option to retrieve system summary #854369
by mpastern@redhat.com
Michael Pasternak has submitted this change and it was merged.
Change subject: cli: add option to retrieve system summary #854369
......................................................................
cli: add option to retrieve system summary #854369
[oVirt shell (connected)]# summary
hosts-active : 0
hosts-total : 4
storage_domains-active: 3
storage_domains-total : 4
users-active : 1
users-total : 3
vms-active : 0
vms-total : 7
https://bugzilla.redhat.com/show_bug.cgi?id=854369
Change-Id: I76bc19432b239f8394a15c7e3b37629437d38345
Signed-off-by: Michael Pasternak <mpastern(a)redhat.com>
---
A src/ovirtcli/command/summary.py
M src/ovirtcli/context.py
M src/ovirtcli/format/text.py
M src/ovirtcli/shell/engineshell.py
A src/ovirtcli/shell/summarycmdshell.py
5 files changed, 79 insertions(+), 3 deletions(-)
Approvals:
Michael Pasternak: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12964
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I76bc19432b239f8394a15c7e3b37629437d38345
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine-cli
Gerrit-Branch: master
Gerrit-Owner: Michael Pasternak <mpastern(a)redhat.com>
Gerrit-Reviewer: Michael Pasternak <mpastern(a)redhat.com>
11 years, 8 months
Change in ovirt-engine-cli[master]: cli: accept IP address as FQ argument rather than string #88...
by mpastern@redhat.com
Michael Pasternak has submitted this change and it was merged.
Change subject: cli: accept IP address as FQ argument rather than string #886067
......................................................................
cli: accept IP address as FQ argument rather than string #886067
https://bugzilla.redhat.com/show_bug.cgi?id=886067
Change-Id: Ie6e46cf671f05580cbf5734cad3a1532e4df45ab
Signed-off-by: Michael Pasternak <mpastern(a)redhat.com>
---
M src/cli/parser.py
1 file changed, 12 insertions(+), 3 deletions(-)
Approvals:
Michael Pasternak: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12954
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ie6e46cf671f05580cbf5734cad3a1532e4df45ab
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine-cli
Gerrit-Branch: master
Gerrit-Owner: Michael Pasternak <mpastern(a)redhat.com>
Gerrit-Reviewer: Michael Pasternak <mpastern(a)redhat.com>
11 years, 8 months
Change in otopi[master]: build: use older gettext-0.17
by Alon Bar-Lev
Alon Bar-Lev has submitted this change and it was merged.
Change subject: build: use older gettext-0.17
......................................................................
build: use older gettext-0.17
For old rhel/centos hosts
Change-Id: I0c90c34450961e4388b760982ddc002cca040359
Signed-off-by: Alon Bar-Lev <alonbl(a)redhat.com>
---
M configure.ac
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Alon Bar-Lev: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/13056
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I0c90c34450961e4388b760982ddc002cca040359
Gerrit-PatchSet: 1
Gerrit-Project: otopi
Gerrit-Branch: master
Gerrit-Owner: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Alon Bar-Lev <alonbl(a)redhat.com>
11 years, 8 months
Change in ovirt-engine[master]: restapi: Rest API for brick advanced details
by sanjal@redhat.com
Shireesh Anjal has submitted this change and it was merged.
Change subject: restapi: Rest API for brick advanced details
......................................................................
restapi: Rest API for brick advanced details
Brick advanced details are retrieved if
All-Content is set to true in the header for urls -
/api/clusters/{id}/glustervolumes/{id}/bricks/{id}
and /api/clusters/{id}/glustervolumes/{id}/bricks/
Brick memory statistics information is added under
/api/clusters/{id}/glustervolumes/{id}/bricks/{id}/statistics
Refactored BackendGluster*Resources' addParent method to avoid
calling VdcQuery as only ID is required.
Updated statistics and All-Content header value
in rsdl metadata file.
Change-Id: Ie219c7cf59fec8a21a54f34959ee5966eed7d524
Signed-off-by: Sahina Bose <sahina(a)gmail.com>
---
M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/gluster/GlusterBrickEntity.java
M backend/manager/modules/restapi/interface/common/jaxrs/src/main/java/org/ovirt/engine/api/common/util/LinkHelper.java
M backend/manager/modules/restapi/interface/definition/src/main/java/org/ovirt/engine/api/resource/gluster/GlusterBrickResource.java
M backend/manager/modules/restapi/interface/definition/src/main/resources/api.xsd
M backend/manager/modules/restapi/interface/definition/src/main/resources/rsdl_metadata.yaml
M backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/AbstractBackendResource.java
M backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/BackendClusterResource.java
M backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/BackendStatisticResource.java
M backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/BackendStatisticsResource.java
A backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/BrickStatisticalQuery.java
M backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/gluster/BackendGlusterBrickResource.java
M backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/gluster/BackendGlusterBricksResource.java
M backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/gluster/BackendGlusterVolumeResource.java
M backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/resource/gluster/BackendGlusterVolumesResource.java
M backend/manager/modules/restapi/jaxrs/src/test/java/org/ovirt/engine/api/restapi/resource/gluster/BackendGlusterBrickResourceTest.java
M backend/manager/modules/restapi/jaxrs/src/test/java/org/ovirt/engine/api/restapi/resource/gluster/BackendGlusterBricksResourceTest.java
M backend/manager/modules/restapi/jaxrs/src/test/java/org/ovirt/engine/api/restapi/resource/gluster/BackendGlusterVolumeResourceTest.java
M backend/manager/modules/restapi/jaxrs/src/test/java/org/ovirt/engine/api/restapi/resource/gluster/BackendGlusterVolumesResourceTest.java
A backend/manager/modules/restapi/jaxrs/src/test/java/org/ovirt/engine/api/restapi/resource/gluster/GlusterTestHelper.java
A backend/manager/modules/restapi/types/src/main/java/org/ovirt/engine/api/restapi/types/GlusterBrickDetailMapper.java
M backend/manager/modules/restapi/types/src/main/java/org/ovirt/engine/api/restapi/types/GlusterBrickMapper.java
A backend/manager/modules/restapi/types/src/test/java/org/ovirt/engine/api/restapi/types/GlusterBrickDetailMapperTest.java
22 files changed, 887 insertions(+), 86 deletions(-)
Approvals:
Shireesh Anjal: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/11391
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ie219c7cf59fec8a21a54f34959ee5966eed7d524
Gerrit-PatchSet: 8
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Sahina Bose <sabose(a)redhat.com>
Gerrit-Reviewer: Kanagaraj M <kmayilsa(a)redhat.com>
Gerrit-Reviewer: Michael Pasternak <mpastern(a)redhat.com>
Gerrit-Reviewer: Sahina Bose <sabose(a)redhat.com>
Gerrit-Reviewer: Shireesh Anjal <sanjal(a)redhat.com>
11 years, 8 months
Change in ovirt-dwh[master]: packaging: open source like versioning scheme
by ydary@redhat.com
Yaniv Dary has submitted this change and it was merged.
Change subject: packaging: open source like versioning scheme
......................................................................
packaging: open source like versioning scheme
Add version.mak with version information.
Major and minor components are taken from pom.xml.
Fix is taken from version.mak.
Milestone is a string representation of the milestone
example for ordering:
- master
- alpha
- master
- beta
- master
- beta2
- master
- rc
- master
- rc2
- master
- <none>
RPM_RELEASE is a rpm specific release string that should be manually
modified after milestone change.
Example of sequence:
# master
FIX_RELEASE=0
MILESTONE=master
RPM_RELEASE=0.0.$(MILESTONE).$(shell date -u +%Y%m%d%H%M%S)
# beta
FIX_RELEASE=0
MILESTONE=beta
RPM_RELEASE=0.1
# post beta
FIX_RELEASE=0
MILESTONE=master
RPM_RELEASE=0.2.$(MILESTONE).$(shell date -u +%Y%m%d%H%M%S)
# release
FIX_RELEASE=0
MILESTONE=
RPM_RELEASE=1
# post release
FIX_RELEASE=1
MILESTONE=master
RPM_RELEASE=0.0.$(MILESTONE).$(shell date -u +%Y%m%d%H%M%S)
Change-Id: Ibe2b7193c29bd504e2f3db79fda59ccca1efdb1c
Signed-off-by: Alon Bar-Lev <alon.barlev(a)gmail.com>
---
M Makefile
M packaging/ovirt-engine-dwh.spec.in
A version.mak
3 files changed, 62 insertions(+), 18 deletions(-)
Approvals:
Yaniv Dary: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12742
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ibe2b7193c29bd504e2f3db79fda59ccca1efdb1c
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-dwh
Gerrit-Branch: master
Gerrit-Owner: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Yaniv Dary <ydary(a)redhat.com>
11 years, 8 months
Change in ovirt-reports[master]: packaging: open source like versioning scheme
by ydary@redhat.com
Yaniv Dary has submitted this change and it was merged.
Change subject: packaging: open source like versioning scheme
......................................................................
packaging: open source like versioning scheme
Add version.mak with version information.
Major and minor components are taken from pom.xml.
Fix is taken from version.mak.
Milestone is a string representation of the milestone
example for ordering:
- master
- alpha
- master
- beta
- master
- beta2
- master
- rc
- master
- rc2
- master
- <none>
RPM_RELEASE is a rpm specific release string that should be manually
modified after milestone change.
Example of sequence:
# master
FIX_RELEASE=0
MILESTONE=master
RPM_RELEASE=0.0.$(MILESTONE).$(shell date -u +%Y%m%d%H%M%S)
# beta
FIX_RELEASE=0
MILESTONE=beta
RPM_RELEASE=0.1
# post beta
FIX_RELEASE=0
MILESTONE=master
RPM_RELEASE=0.2.$(MILESTONE).$(shell date -u +%Y%m%d%H%M%S)
# release
FIX_RELEASE=0
MILESTONE=
RPM_RELEASE=1
# post release
FIX_RELEASE=1
MILESTONE=master
RPM_RELEASE=0.0.$(MILESTONE).$(shell date -u +%Y%m%d%H%M%S)
Change-Id: Ia6b234ddd317728a77f7e912db270fa8e4f42cf8
Signed-off-by: Alon Bar-Lev <alon.barlev(a)gmail.com>
---
M Makefile
M packaging/ovirt-engine-reports.spec.in
A version.mak
3 files changed, 62 insertions(+), 18 deletions(-)
Approvals:
Yaniv Dary: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12741
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ia6b234ddd317728a77f7e912db270fa8e4f42cf8
Gerrit-PatchSet: 3
Gerrit-Project: ovirt-reports
Gerrit-Branch: master
Gerrit-Owner: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Yaniv Dary <ydary(a)redhat.com>
11 years, 8 months
Change in ovirt-reports[master]: packaging: retrieve trust certificate from engine's ssl
by ydary@redhat.com
Yaniv Dary has submitted this change and it was merged.
Change subject: packaging: retrieve trust certificate from engine's ssl
......................................................................
packaging: retrieve trust certificate from engine's ssl
Currently the implementation assume that the internal certificate
authority is used to perform SSL, this is incorrect.
New implementation fetches the certificate chain from the engine ssl
session.
The utility ssl2jkstrust.py can be used to re-fetch if needed after
setup.
Not sure why we cannot perform SSO based on shared secret or database
OTP, which will make it much simpler to implement than current
implementation.
Change-Id: I64ab90925eabb3cf1c43c39693dfb082400c8ba4
Signed-off-by: Alon Bar-Lev <alon.barlev(a)gmail.com>
---
M Makefile
M packaging/ovirt-engine-reports-setup.py
M packaging/ovirt-engine-reports.spec.in
A packaging/ssl2jkstrust.py
4 files changed, 150 insertions(+), 3 deletions(-)
Approvals:
Yaniv Dary: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12740
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I64ab90925eabb3cf1c43c39693dfb082400c8ba4
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-reports
Gerrit-Branch: master
Gerrit-Owner: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Yaniv Dary <ydary(a)redhat.com>
11 years, 8 months
Change in ovirt-reports[master]: pacakging: use p12 key and not .keystore
by ydary@redhat.com
Yaniv Dary has submitted this change and it was merged.
Change subject: pacakging: use p12 key and not .keystore
......................................................................
pacakging: use p12 key and not .keystore
Do we actually need this?
Change-Id: Ifc958b1bfee041e4169e72ab877bab40e9230064
Signed-off-by: Alon Bar-Lev <alon.barlev(a)gmail.com>
---
M packaging/ovirt-engine-reports-setup.py
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Yaniv Dary: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12737
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ifc958b1bfee041e4169e72ab877bab40e9230064
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-reports
Gerrit-Branch: master
Gerrit-Owner: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Yaniv Dary <ydary(a)redhat.com>
11 years, 8 months
Change in ovirt-reports[master]: packaging: support and use engine conf.d structure
by ydary@redhat.com
Yaniv Dary has submitted this change and it was merged.
Change subject: packaging: support and use engine conf.d structure
......................................................................
packaging: support and use engine conf.d structure
This simplifies setup, as we do not need to
override any file.
Change-Id: I6ce91e23038b55e338b906d46937e9433f4f18bc
Signed-off-by: Alon Bar-Lev <alon.barlev(a)gmail.com>
---
M Makefile
A packaging/50-ovirt-engine-reports.conf
M packaging/ovirt-engine-reports-setup.py
M packaging/ovirt-engine-reports.spec.in
4 files changed, 59 insertions(+), 52 deletions(-)
Approvals:
Yaniv Dary: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12736
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I6ce91e23038b55e338b906d46937e9433f4f18bc
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-reports
Gerrit-Branch: master
Gerrit-Owner: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Yaniv Dary <ydary(a)redhat.com>
11 years, 8 months
Change in ovirt-dwh[master]: packaging: respect engine.conf.d
by ydary@redhat.com
Yaniv Dary has submitted this change and it was merged.
Change subject: packaging: respect engine.conf.d
......................................................................
packaging: respect engine.conf.d
Change-Id: I56403a37142d7292f12b338d4dc34ffa7de933a2
Signed-off-by: Alon Bar-Lev <alon.barlev(a)gmail.com>
---
M data-warehouse/history_etl/history_service/history_service.sh
M packaging/ovirt-engine-dwh-setup.py
2 files changed, 8 insertions(+), 2 deletions(-)
Approvals:
Yaniv Dary: Verified; Looks good to me, approved
--
To view, visit http://gerrit.ovirt.org/12685
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I56403a37142d7292f12b338d4dc34ffa7de933a2
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-dwh
Gerrit-Branch: master
Gerrit-Owner: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Alon Bar-Lev <alonbl(a)redhat.com>
Gerrit-Reviewer: Juan Hernandez <juan.hernandez(a)redhat.com>
Gerrit-Reviewer: Yaniv Dary <ydary(a)redhat.com>
11 years, 8 months