SlideShare ist ein Scribd-Unternehmen logo
1 von 18
ManageIQ 
Sprint 16 Report - Sprint End December 2, 2014 
December 3, 2014
Overview 
●Sprint Statistics 
●Charting Enhancements (D. Clarizio) 
●I18N Progress (D. Clarizio) 
●Cloud Orchestration (G. McCullough) 
●Automate Enhancements (G. McCullough) 
●Default LDAP Group for Authentication (G. McCullough) 
●Amazon Events (G. Blomquist) 
●Technical Debt - SmartProxy, Rails Backports (J. 
Rafaniello) 
●IPv6 Communications (J. Rafaniello) 
●Rest API Enhancements (A. Bellotti) 
●Fleecing Tests (R. Oliveri)
Sprint 16 Ended December 2 
●https://github.com/ManageIQ/manageiq/issues?q=milesto 
ne%3A%22Sprint+16+Ending+Dec+2%2C+2014%22 
●96 Pull Requests Merged 
o48 issues labeled as “bug” 
o27 issues labeled as “enhancement” 
o11 issues labeled as “technical debt” 
o8 issues labeled as “refactoring” 
o6 issues labeled as “test”
jqPlot Default Charts
Chart Styling 
Chart styling enabled: 
●themes (Patternfly,etc ) 
●backgrounds 
●borders 
●fonts 
●colors 
●highlighting 
●pie chart formatting 
●legend positioning
Coming Soon 
●Donut Charts 
●Responsive Charts 
●Enhanced Patternfly color scheme
I18N Progress 
●Currently follows browser language selection 
●Will be adding admin and user settings 
●Video - Login screen demo
Cloud Orchestration 
●Modeling PR merged (PR #899) 
●In progress 
○AWS Inventory collection (PR #919) 
○Creation of Service Dialog based on Template 
○Prototype of Provisioning through automate
Automate Enhancements 
●Specify Zone for Web Service Automation 
Request 
○Usage: Pass ‘miq_zone=<zone_name>’ 
■Parameter not specified: Zone of current appliance used 
■Parameter specified without value: Tasks queued with null zone; any 
appliance in the region can process. 
●Example: 'parameters' => ‘miq_zone=’ 
■Parameter specified with value: Request runs in specified zone. 
(Note: Request creation fails if zone does not exist) 
Example: 
savon.call(:create_automation_request, :message => 
'version' => '1.1', 
'uri_parts' => "namespace=System|class=Request|instance=test|message=create", 
'parameters' => ‘miq_zone=Mahwah’)
Automate Enhancements 
●Request Message override 
○user_message= #New method available on MiqRequest instances 
Example: 
request = $evm.root['service_template_provision_task'].miq_request 
request.user_message = “Custom User Message” 
Reset to normal messaging: 
request.user_message = nil
Default Group for LDAP Authentication 
●Settings and Operations Guide - 5.2.1. Creating a User 
Note: If you are using LDAP, but did not enable Get User Groups from LDAP in 
your server's Authentication tab, you will need to define a user. 
●Enhancement allows new user logons when “Get User 
Groups from LDAP” is disabled
Amazon AWS Event Collection 
●Worked with Amazon during closed beta to 
develop 
●Third of three pieces of provider functionality 
●Enables event-based policies for AWS 
NB: Need to review AWS Config setup 
requirements and document ManageIQ 
configuration
Technical debt 
●SmartProxy removal 
○Functionality not needed or replaced by winrm gem 
○PR #1090 
●Rails backports/fork removal 
○Backport and use disable_ddl_transaction! 
○Added bigserial support for primary keys to rails, 
backported and used in manageiq 
○Next: Get “areas” (tests, migrations) of manageiq 
running on Rails 4.2
IPv6 Communications 
●VMWare (done) 
○PR #1080 (includes upgrading httpclient to 2.5.3) 
●RHEVM/Ovirt (in progress) 
○ManageIQ/ovirt PR #16 
○Ruby 2.0 and 2.1 backports (net/http regression) 
■https://bugs.ruby-lang.org/issues/10530 
■https://bugs.ruby-lang.org/issues/10531 
○rest-client/rest-client PR #332 
○rest-client/rest-client PR #333 
●Next: Model changes/openstack 
communication
Rest API - Accounts subcollection 
●API versioning to follow Semver standard 
oi.e. v1.1 development version now set to v1.1.0-pre 
●Added VM accounts subcollection queries 
oQuery via GET /api/vms/#/accounts 
Example: GET /api/vms/320/accounts?expand=resources 
{ 
"name": "accounts", 
"count": 3, 
"subcount": 2, 
"resources": [ 
{ 
"id": "http://localhost:3000/api/vms/320/accounts/3", 
"name": "Alberto", 
"homedir": "/home/aab", 
... 
}, ...] 
} 
oAlso via --expand parameter GET /api/vms/#?expand=accounts
Rest API - Software subcollection 
●Added VM software subcollection queries 
oQuery via GET /api/vms/#/software 
Example: GET /api/vms/320/software?expand=resources 
{ 
"name": "software", 
"count": 1, 
"subcount": 1, 
"resources": [ 
{ 
"id": "http://localhost:3000/api/vms/320/software/1", 
"name": "LibreOffice", 
"vendor": "DocumentFoundation", 
... 
} 
] 
} 
oAlso via --expand parameter GET /api/vms/#?expand=software
Rest API - VM accounts & software 
●Querying both subcollection types can be done as follows: 
oQuery via GET /api/vms/#?expand=accounts,software 
Example: GET /api/vms/320?expand=accounts,software 
{ 
“id”: “http://localhost:3000/api/vms/320”, 
“name”: “aab-vm1”, 
… 
“accounts” : [ 
{ 
“id”: “http://localhost:3000/api/vms/320/accounts/3”, 
... 
}, ... 
] 
“software” : [ 
{ 
“id”: “http://localhost:3000/api/vms/320/software/1”, 
... 
}, ... 
] 
}
Questions?

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Sprint 179
Sprint 179Sprint 179
Sprint 179
 
Sprint 181
Sprint 181Sprint 181
Sprint 181
 
Botvinnik webinar
Botvinnik webinarBotvinnik webinar
Botvinnik webinar
 
Sprint 180
Sprint 180Sprint 180
Sprint 180
 
Sprint 63
Sprint 63Sprint 63
Sprint 63
 
Sprint 175
Sprint 175Sprint 175
Sprint 175
 
Sprint 176
Sprint 176Sprint 176
Sprint 176
 
Sprint 182
Sprint 182Sprint 182
Sprint 182
 
Sprint 173
Sprint 173Sprint 173
Sprint 173
 
Sprint 171
Sprint 171Sprint 171
Sprint 171
 
Sprint 39 review
Sprint 39 reviewSprint 39 review
Sprint 39 review
 
Sprint 44 review
Sprint 44 reviewSprint 44 review
Sprint 44 review
 
Sprint 168
Sprint 168Sprint 168
Sprint 168
 
Sprint 183
Sprint 183Sprint 183
Sprint 183
 
Sprint 178
Sprint 178Sprint 178
Sprint 178
 
Sprint 166
Sprint 166Sprint 166
Sprint 166
 
Sprint 45 review
Sprint 45 reviewSprint 45 review
Sprint 45 review
 
Sprint 88
Sprint 88Sprint 88
Sprint 88
 
Sprint 184
Sprint 184Sprint 184
Sprint 184
 
Sprint 68
Sprint 68Sprint 68
Sprint 68
 

Ähnlich wie Sprint 16 report

Sprint 48 review
Sprint 48 reviewSprint 48 review
Sprint 48 reviewManageIQ
 
Sprint 46 review
Sprint 46 reviewSprint 46 review
Sprint 46 reviewManageIQ
 
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...Ambassador Labs
 
Sprint 36 review
Sprint 36 reviewSprint 36 review
Sprint 36 reviewManageIQ
 

Ähnlich wie Sprint 16 report (20)

Sprint 16
Sprint 16Sprint 16
Sprint 16
 
Sprint 80
Sprint 80Sprint 80
Sprint 80
 
Sprint 86
Sprint 86Sprint 86
Sprint 86
 
Sprint 64
Sprint 64Sprint 64
Sprint 64
 
Sprint 65
Sprint 65Sprint 65
Sprint 65
 
Sprint 17
Sprint 17Sprint 17
Sprint 17
 
Sprint 60
Sprint 60Sprint 60
Sprint 60
 
Sprint 66
Sprint 66Sprint 66
Sprint 66
 
Sprint 70
Sprint 70Sprint 70
Sprint 70
 
Sprint 92
Sprint 92Sprint 92
Sprint 92
 
Sprint 48 review
Sprint 48 reviewSprint 48 review
Sprint 48 review
 
Sprint 46 review
Sprint 46 reviewSprint 46 review
Sprint 46 review
 
Sprint 59
Sprint 59Sprint 59
Sprint 59
 
Sprint 21
Sprint 21Sprint 21
Sprint 21
 
Sprint 67
Sprint 67Sprint 67
Sprint 67
 
Sprint 58
Sprint 58Sprint 58
Sprint 58
 
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
2017 Microservices Practitioner Virtual Summit: Microservices at Squarespace ...
 
Sprint 18
Sprint 18Sprint 18
Sprint 18
 
Sprint 36 review
Sprint 36 reviewSprint 36 review
Sprint 36 review
 
Sprint 12
Sprint 12Sprint 12
Sprint 12
 

Mehr von ManageIQ

ManageIQ - Sprint 236 Review - Slide Deck
ManageIQ - Sprint 236 Review - Slide DeckManageIQ - Sprint 236 Review - Slide Deck
ManageIQ - Sprint 236 Review - Slide DeckManageIQ
 
ManageIQ - Sprint 235 Review - Slide Deck
ManageIQ - Sprint 235 Review - Slide DeckManageIQ - Sprint 235 Review - Slide Deck
ManageIQ - Sprint 235 Review - Slide DeckManageIQ
 
ManageIQ - Sprint 234 Review - Slide Deck
ManageIQ - Sprint 234 Review - Slide DeckManageIQ - Sprint 234 Review - Slide Deck
ManageIQ - Sprint 234 Review - Slide DeckManageIQ
 
ManageIQ - Sprint 233 Review - Slide Deck
ManageIQ - Sprint 233 Review - Slide DeckManageIQ - Sprint 233 Review - Slide Deck
ManageIQ - Sprint 233 Review - Slide DeckManageIQ
 
ManageIQ - Sprint 232 Review - Slide Deck
ManageIQ - Sprint 232 Review - Slide DeckManageIQ - Sprint 232 Review - Slide Deck
ManageIQ - Sprint 232 Review - Slide DeckManageIQ
 
ManageIQ - Sprint 231 Review - Slide Deck
ManageIQ - Sprint 231 Review - Slide DeckManageIQ - Sprint 231 Review - Slide Deck
ManageIQ - Sprint 231 Review - Slide DeckManageIQ
 
ManageIQ - Sprint 230 Review - Slide Deck
ManageIQ - Sprint 230 Review - Slide DeckManageIQ - Sprint 230 Review - Slide Deck
ManageIQ - Sprint 230 Review - Slide DeckManageIQ
 
ManageIQ - Sprint 229 Review - Slide Deck
ManageIQ - Sprint 229 Review - Slide DeckManageIQ - Sprint 229 Review - Slide Deck
ManageIQ - Sprint 229 Review - Slide DeckManageIQ
 
ManageIQ - Sprint 228 Review - Slide Deck
ManageIQ - Sprint 228 Review - Slide DeckManageIQ - Sprint 228 Review - Slide Deck
ManageIQ - Sprint 228 Review - Slide DeckManageIQ
 
Sprint 227
Sprint 227Sprint 227
Sprint 227ManageIQ
 
Sprint 226
Sprint 226Sprint 226
Sprint 226ManageIQ
 
Sprint 225
Sprint 225Sprint 225
Sprint 225ManageIQ
 
Sprint 224
Sprint 224Sprint 224
Sprint 224ManageIQ
 
Sprint 223
Sprint 223Sprint 223
Sprint 223ManageIQ
 
Sprint 222
Sprint 222Sprint 222
Sprint 222ManageIQ
 
Sprint 221
Sprint 221Sprint 221
Sprint 221ManageIQ
 
Sprint 220
Sprint 220Sprint 220
Sprint 220ManageIQ
 
Sprint 219
Sprint 219Sprint 219
Sprint 219ManageIQ
 
Sprint 218
Sprint 218Sprint 218
Sprint 218ManageIQ
 
Sprint 217
Sprint 217Sprint 217
Sprint 217ManageIQ
 

Mehr von ManageIQ (20)

ManageIQ - Sprint 236 Review - Slide Deck
ManageIQ - Sprint 236 Review - Slide DeckManageIQ - Sprint 236 Review - Slide Deck
ManageIQ - Sprint 236 Review - Slide Deck
 
ManageIQ - Sprint 235 Review - Slide Deck
ManageIQ - Sprint 235 Review - Slide DeckManageIQ - Sprint 235 Review - Slide Deck
ManageIQ - Sprint 235 Review - Slide Deck
 
ManageIQ - Sprint 234 Review - Slide Deck
ManageIQ - Sprint 234 Review - Slide DeckManageIQ - Sprint 234 Review - Slide Deck
ManageIQ - Sprint 234 Review - Slide Deck
 
ManageIQ - Sprint 233 Review - Slide Deck
ManageIQ - Sprint 233 Review - Slide DeckManageIQ - Sprint 233 Review - Slide Deck
ManageIQ - Sprint 233 Review - Slide Deck
 
ManageIQ - Sprint 232 Review - Slide Deck
ManageIQ - Sprint 232 Review - Slide DeckManageIQ - Sprint 232 Review - Slide Deck
ManageIQ - Sprint 232 Review - Slide Deck
 
ManageIQ - Sprint 231 Review - Slide Deck
ManageIQ - Sprint 231 Review - Slide DeckManageIQ - Sprint 231 Review - Slide Deck
ManageIQ - Sprint 231 Review - Slide Deck
 
ManageIQ - Sprint 230 Review - Slide Deck
ManageIQ - Sprint 230 Review - Slide DeckManageIQ - Sprint 230 Review - Slide Deck
ManageIQ - Sprint 230 Review - Slide Deck
 
ManageIQ - Sprint 229 Review - Slide Deck
ManageIQ - Sprint 229 Review - Slide DeckManageIQ - Sprint 229 Review - Slide Deck
ManageIQ - Sprint 229 Review - Slide Deck
 
ManageIQ - Sprint 228 Review - Slide Deck
ManageIQ - Sprint 228 Review - Slide DeckManageIQ - Sprint 228 Review - Slide Deck
ManageIQ - Sprint 228 Review - Slide Deck
 
Sprint 227
Sprint 227Sprint 227
Sprint 227
 
Sprint 226
Sprint 226Sprint 226
Sprint 226
 
Sprint 225
Sprint 225Sprint 225
Sprint 225
 
Sprint 224
Sprint 224Sprint 224
Sprint 224
 
Sprint 223
Sprint 223Sprint 223
Sprint 223
 
Sprint 222
Sprint 222Sprint 222
Sprint 222
 
Sprint 221
Sprint 221Sprint 221
Sprint 221
 
Sprint 220
Sprint 220Sprint 220
Sprint 220
 
Sprint 219
Sprint 219Sprint 219
Sprint 219
 
Sprint 218
Sprint 218Sprint 218
Sprint 218
 
Sprint 217
Sprint 217Sprint 217
Sprint 217
 

Kürzlich hochgeladen

%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durbanmasabamasaba
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg
%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg
%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburgmasabamasaba
 
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...masabamasaba
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareJim McKeeth
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Hararemasabamasaba
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Generic or specific? Making sensible software design decisions
Generic or specific? Making sensible software design decisionsGeneric or specific? Making sensible software design decisions
Generic or specific? Making sensible software design decisionsBert Jan Schrijver
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 

Kürzlich hochgeladen (20)

%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg
%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg
%in Lydenburg+277-882-255-28 abortion pills for sale in Lydenburg
 
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Vancouver Psychic Readings, Attraction spells,Br...
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Generic or specific? Making sensible software design decisions
Generic or specific? Making sensible software design decisionsGeneric or specific? Making sensible software design decisions
Generic or specific? Making sensible software design decisions
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 

Sprint 16 report

  • 1. ManageIQ Sprint 16 Report - Sprint End December 2, 2014 December 3, 2014
  • 2. Overview ●Sprint Statistics ●Charting Enhancements (D. Clarizio) ●I18N Progress (D. Clarizio) ●Cloud Orchestration (G. McCullough) ●Automate Enhancements (G. McCullough) ●Default LDAP Group for Authentication (G. McCullough) ●Amazon Events (G. Blomquist) ●Technical Debt - SmartProxy, Rails Backports (J. Rafaniello) ●IPv6 Communications (J. Rafaniello) ●Rest API Enhancements (A. Bellotti) ●Fleecing Tests (R. Oliveri)
  • 3. Sprint 16 Ended December 2 ●https://github.com/ManageIQ/manageiq/issues?q=milesto ne%3A%22Sprint+16+Ending+Dec+2%2C+2014%22 ●96 Pull Requests Merged o48 issues labeled as “bug” o27 issues labeled as “enhancement” o11 issues labeled as “technical debt” o8 issues labeled as “refactoring” o6 issues labeled as “test”
  • 5. Chart Styling Chart styling enabled: ●themes (Patternfly,etc ) ●backgrounds ●borders ●fonts ●colors ●highlighting ●pie chart formatting ●legend positioning
  • 6. Coming Soon ●Donut Charts ●Responsive Charts ●Enhanced Patternfly color scheme
  • 7. I18N Progress ●Currently follows browser language selection ●Will be adding admin and user settings ●Video - Login screen demo
  • 8. Cloud Orchestration ●Modeling PR merged (PR #899) ●In progress ○AWS Inventory collection (PR #919) ○Creation of Service Dialog based on Template ○Prototype of Provisioning through automate
  • 9. Automate Enhancements ●Specify Zone for Web Service Automation Request ○Usage: Pass ‘miq_zone=<zone_name>’ ■Parameter not specified: Zone of current appliance used ■Parameter specified without value: Tasks queued with null zone; any appliance in the region can process. ●Example: 'parameters' => ‘miq_zone=’ ■Parameter specified with value: Request runs in specified zone. (Note: Request creation fails if zone does not exist) Example: savon.call(:create_automation_request, :message => 'version' => '1.1', 'uri_parts' => "namespace=System|class=Request|instance=test|message=create", 'parameters' => ‘miq_zone=Mahwah’)
  • 10. Automate Enhancements ●Request Message override ○user_message= #New method available on MiqRequest instances Example: request = $evm.root['service_template_provision_task'].miq_request request.user_message = “Custom User Message” Reset to normal messaging: request.user_message = nil
  • 11. Default Group for LDAP Authentication ●Settings and Operations Guide - 5.2.1. Creating a User Note: If you are using LDAP, but did not enable Get User Groups from LDAP in your server's Authentication tab, you will need to define a user. ●Enhancement allows new user logons when “Get User Groups from LDAP” is disabled
  • 12. Amazon AWS Event Collection ●Worked with Amazon during closed beta to develop ●Third of three pieces of provider functionality ●Enables event-based policies for AWS NB: Need to review AWS Config setup requirements and document ManageIQ configuration
  • 13. Technical debt ●SmartProxy removal ○Functionality not needed or replaced by winrm gem ○PR #1090 ●Rails backports/fork removal ○Backport and use disable_ddl_transaction! ○Added bigserial support for primary keys to rails, backported and used in manageiq ○Next: Get “areas” (tests, migrations) of manageiq running on Rails 4.2
  • 14. IPv6 Communications ●VMWare (done) ○PR #1080 (includes upgrading httpclient to 2.5.3) ●RHEVM/Ovirt (in progress) ○ManageIQ/ovirt PR #16 ○Ruby 2.0 and 2.1 backports (net/http regression) ■https://bugs.ruby-lang.org/issues/10530 ■https://bugs.ruby-lang.org/issues/10531 ○rest-client/rest-client PR #332 ○rest-client/rest-client PR #333 ●Next: Model changes/openstack communication
  • 15. Rest API - Accounts subcollection ●API versioning to follow Semver standard oi.e. v1.1 development version now set to v1.1.0-pre ●Added VM accounts subcollection queries oQuery via GET /api/vms/#/accounts Example: GET /api/vms/320/accounts?expand=resources { "name": "accounts", "count": 3, "subcount": 2, "resources": [ { "id": "http://localhost:3000/api/vms/320/accounts/3", "name": "Alberto", "homedir": "/home/aab", ... }, ...] } oAlso via --expand parameter GET /api/vms/#?expand=accounts
  • 16. Rest API - Software subcollection ●Added VM software subcollection queries oQuery via GET /api/vms/#/software Example: GET /api/vms/320/software?expand=resources { "name": "software", "count": 1, "subcount": 1, "resources": [ { "id": "http://localhost:3000/api/vms/320/software/1", "name": "LibreOffice", "vendor": "DocumentFoundation", ... } ] } oAlso via --expand parameter GET /api/vms/#?expand=software
  • 17. Rest API - VM accounts & software ●Querying both subcollection types can be done as follows: oQuery via GET /api/vms/#?expand=accounts,software Example: GET /api/vms/320?expand=accounts,software { “id”: “http://localhost:3000/api/vms/320”, “name”: “aab-vm1”, … “accounts” : [ { “id”: “http://localhost:3000/api/vms/320/accounts/3”, ... }, ... ] “software” : [ { “id”: “http://localhost:3000/api/vms/320/software/1”, ... }, ... ] }