A Guide to Setup Your Own Kubernetes Cluster... with Gesticlean Up! Documentation Release 1.0.0

Total Page:16

File Type:pdf, Size:1020Kb

A Guide to Setup Your Own Kubernetes Cluster... with Gesticlean Up! Documentation Release 1.0.0 A guide to setup your own Kubernetes Cluster... With GestiClean Up! Documentation Release 1.0.0 David Berardozzi May 15, 2017 Contents 1 Introduction 1 2 Goal 3 3 Credits 5 4 Author 7 5 Openstack 9 5.1 Project..................................................9 5.2 SSH keys................................................. 10 5.3 Download secrets............................................. 10 5.4 Horizon dashboard............................................ 11 5.5 Prerequisites............................................... 11 5.6 API’s clients............................................... 12 6 Juju 13 6.1 Install Juju................................................ 14 6.2 Cloud configuration........................................... 14 6.3 Bootstrapping.............................................. 15 6.4 High availability............................................. 17 6.5 Backup and restore............................................ 17 6.6 Neutron networks (Optional)....................................... 18 6.7 Dashboard................................................ 19 6.8 Model................................................... 19 7 Kubernetes 21 7.1 Deploying................................................ 22 7.2 High availability............................................. 26 7.3 kubectl.................................................. 26 7.4 Dashboards................................................ 26 7.5 Namespaces............................................... 26 7.6 We are working on Openstack and we love logs (Optional for Openstack part, see next chapter)... 27 7.7 Ceph persistent storage pool....................................... 29 7.8 kubectl exec and port-forward...................................... 30 7.9 Pulling private images from Dockerhub................................. 31 7.10 Logs................................................... 31 i 7.11 Troubleshooting............................................. 32 7.12 Deeeeeestrrroooy tests.......................................... 33 7.13 YES SECURITY MATTERS!...................................... 35 7.13.1 Your API and dashboard are accessible... from ANYONE!!.................. 35 7.13.2 Ok you have done great, but your password is WEAK!!!................... 36 7.13.3 Paranoid security issues..................................... 36 8 Self maintained high availability Postgresql Cluster 37 8.1 Secure store............................................... 38 8.1.1 Option A: Going with Consul.................................. 38 8.1.2 Option B: Going with etcd................................... 39 8.2 Stolon................................................... 40 8.2.1 Stolon preparation....................................... 40 8.2.2 Stolon deployment....................................... 42 8.2.3 Tests and operation....................................... 42 8.3 Connection pooling........................................... 43 9 File sharing system 45 9.1 Allow privileged containers and security precautions and allow nfs on nodes............. 46 9.2 Deploy NFS server............................................ 47 9.3 Creating and claiming NFS persistent volumes............................. 49 10 Postgresql connection pooling 53 10.1 Prepare.................................................. 53 10.2 Deploy.................................................. 58 10.3 Test.................................................... 59 10.4 Pooling modes.............................................. 59 11 Reverse proxy 61 11.1 Manage certificates............................................ 62 11.2 Activate default ingress controller.................................... 62 11.3 Config maps............................................... 62 11.4 Ingress.................................................. 63 11.5 Deploy.................................................. 64 11.6 Tests................................................... 64 11.7 External load balancing......................................... 64 12 GestiClean Up’ at last! (or your own magnificent incredible personal app) 65 12.1 Docker image............................................... 65 12.2 Database prerequisites.......................................... 67 12.3 Config map................................................ 68 12.4 Deployment preparation......................................... 68 12.5 Deploy.................................................. 69 12.6 Test.................................................... 70 ii CHAPTER 1 Introduction Dear reader, Here is the very first version of “a guide to setup a Kubernetes cluster on OVH”. It was written to deploy a 1.5.x Kubernetes Cluster. We are now in the process to test the new version 1.6.x, therefore some parts may already be outdated for this latest series. This doc was initially centered on our product GestiClean Up’, I tried to remove parts that are too much specific. Anyway, I think it could be adapted for other apps. Remember I have not the pretention to write a user manual nor the ultimate serious guide for Kubernetes. Instead, you may take this doc as a “personal diary” containing what I learnt testing Kubernetes and docker infrastructure for our own usage. I am not an english native speaker, sorry for the numerous spelling mistakes you will find. There must be a lot of things that you will do or explain much better than me. That is why you are very welcome to contribute freely in this bitbucket repo if you want to correct some of my false statements ;) Our stack is composed of: • javascript client • nginx reverse proxy and load balancer • nginx, uwsgi (emperor with pg module enabled), twisted for asynchronous communication (IoT) and python 2.7 (version 2.7 because twisted is not fully available in 3 series) • Postgresql This is a multi tenant app (one base code for all customers) controlled by a higher controller named SaasAdmin for now. Maybe apart for Twisted, this stack is pretty similar to a classic Flask, Web2Py, Django, Pyramid... setup, so I made this document public in case it could be useful to you (yes you who spent so much time googling around to find the light or at least the beginning of a candle). This work is the result of extensive researches, incommensurable tries and fails, wrong path, U turns, joy and sadness. I hope this would be useful to those who are taking the path to deploy their all brand new cloud ready web app. Some of my statements may (should) be balanced with specialists advices, but this is just “our path to success” in building our production infrastructure for our company named Inforum. Feel free to comment and enhance. It is sprinkled with my modest, subjective and very restrictive point of view on several tools and methods that I balanced as much as I 1 A guide to setup your own Kubernetes Cluster... With GestiClean Up! Documentation, Release 1.0.0 could with alternatives that I enjoined you to explore. You are very welcome to complete my thoughts with your own experiences or making corrections to my false statements if there are any. For information we also considered Cloud Foundry (through Pivotal services), Marathon (through OVH Paas services), Docker Swarm and the excellent Jelastic (proprietary). Regarding Jelastic, you should definitely give a try to this one with one of their numerous providers if you are looking for a simple (almost magical) way to deploy your code with minimal adaptations. I won’t extend this (well long enough) document with the factors that made us choose Kubernetes. This may be detailed in an other post if require later. The choice has been made to provide a solution self packaged and ready for the latest web technologies in order to power our software GestiClean Up’. GestiClean Up’ is a point of sale software specialized for the dry cleaning market (yes there is also a small room for this). But it can accept modules (community or corporate) to adapt it to any market. It is a Saas app, accessible through any modern web browser. We built our own framework specialized in managing process steps. Sorry this is not open source and still in extensive development. But we plan to provide all tools to let a community build their own modules. Our software includes a custom proxy for connected objects called the UCS (Unified Communication System) and the so called EasyPlug. The EasyPlug can transform any old fashion RS232 device (or other interfaces) in a connected object (yes one could find a lot of specific peripherals in a dry cleaning shop like conveyors, marking printers that are not at all prepared for the internet of things). You will noticed that we are using here the excellent OVH Public Cloud. This is one of the consequence of being a very satisfied customer for years and having the great opportunity to be part of their Digital Launchpad Program. This work was initially shared with the OVH’s Digital Launchpad Program members as a “gift” to this community. 2 Chapter 1. Introduction CHAPTER 2 Goal Give all the resources to build a high availability GestiClean Up’ (or whatever app) cluster fully portable and agnostic to cloud providers, providing that Kubernetes is installable (see our website for details about GestiClean Up’). The global “philosophy” was to use modern technologies, and to find all the possible tools that could ease their deployment, and most important to me, their maintenance and scalability. This is the answer to the question “why using Juju instead of being satisfied with Openstack’s API?” for example. Oh, and I forgot that it should minimize costs of ownership. Note: A Kubernetes
Recommended publications
  • SPARTAN ILY Fee Hikes May Stop KEEPING FIT and EDUCATED
    VOLUME 108, NO. 88 TUESDAY MAY 6. 1 9 9 7 INSIDE * INSIDE a IS ell Spirit of friendship goes 4,#..sk The Offspring gives its.. w leehi beyond competition dose of alternative rock(---' Page 5 1" -V-- Page 8 Ma Ser San Jose State University Since 1 93 .1 SPARTAN ILY Fee hikes may stop KEEPING FIT AND EDUCATED By Dennis Knight said Ducheny, the chair of the Spartan Daily Stuff Write, Assembly Budget Committee, in a press release. "Not only would AB 01 pay Students who are tired 1318 hold the line on fee hikes for at California ing exorbitant fees die rest of the decade, but it would soon find relief if universities may give working families the opportu- Act of the College Affordability nity to plan and save for their chil- the 1997 makes its way through dren's education." State Assembly. Besides freezing fees until the Written by Assemblywoman turn of the century, AB 1318 (D - Denise Moreno Ducheny would limit student fee increases Vista), the bill, known as Chula after the year 2000 to no more AB 1318. would freeze student fees than the rise in personal income University, in the t ..difornia State from the prior year. The bill would California and University of also express the intent of the legis- College California Community lature to financially support public the year 2000. systems until colleges based on growth in enroll- continues in the spirit "This act ment and personal income, accord- 1960 in mak- of the Master Plan of ing to Ducheny. as essible ing our public colleges Currently, the cost for students by laying out a rational and pre- dictable policy for student lees," See Fees, page 5 It's standing room only in the Washington Square Hall let, ture room as author Anne Lamott speaks to SJSU students Friday afternoon.
    [Show full text]
  • Ubuntu: Unleashed 2017 Edition
    Matthew Helmke with Andrew Hudson and Paul Hudson Ubuntu UNLEASHED 2017 Edition 800 East 96th Street, Indianapolis, Indiana 46240 USA Ubuntu Unleashed 2017 Edition Editor-in-Chief Copyright © 2017 by Pearson Education, Inc. Mark Taub All rights reserved. Printed in the United States of America. This publication is protected Acquisitions Editor by copyright, and permission must be obtained from the publisher prior to any prohib- Debra Williams ited reproduction, storage in a retrieval system, or transmission in any form or by any means, electronic, mechanical, photocopying, recording, or likewise. For information Cauley regarding permissions, request forms and the appropriate contacts within the Pearson Managing Editor Education Global Rights & Permissions Department, please visit www.pearsoned.com/ permissions/. Sandra Schroeder Many of the designations used by manufacturers and sellers to distinguish their Project Editor products are claimed as trademarks. Where those designations appear in this book, and Lori Lyons the publisher was aware of a trademark claim, the designations have been printed with initial capital letters or in all capitals. Production Manager The author and publisher have taken care in the preparation of this book, but make Dhayanidhi no expressed or implied warranty of any kind and assume no responsibility for errors or omissions. No liability is assumed for incidental or consequential damages in Proofreader connection with or arising out of the use of the information or programs contained Sasirekha herein. Technical Editor For information about buying this title in bulk quantities, or for special sales opportunities (which may include electronic versions; custom cover designs; and content José Antonio Rey particular to your business, training goals, marketing focus, or branding interests), Editorial Assistant please contact our corporate sales department at [email protected] or (800) 382-3419.
    [Show full text]
  • Instalacion Juju
    Universidad Nacional de Quilmes Laboratorio de Sistemas Operativos y Redes Trabajo Práctico JUJU - UBUNTU Elaborado: Gabriel Angel Garcia Descripción del proyecto: Juju (antes Ensemble ) es una herramienta de gestión de implementacion de servicios desarrollada por Canonical Ltd. Es un proyecto de software libre presentado en Launchpad y liberado bajo la licencia pública general de Affero (AGPL). Juju se concentra en la noción del servicio, abstrayendo la noción de la máquina o el servidor, y define las relaciones entre aquellos servicios que son actualizados automáticamente cuando dos servicios relacionados observan una modificación notable. Esto permite subir o bajar escaladamente los servicios a través de la llamada de un simple comando. Por ejemplo, un servicio web denominado Charm , que tiene una relación establecida con un equilibrador de carga, puede subirse horizontalmente con una simple orden de "añadir unidad" sin tener que preocuparse de volver a configurar el equilibrador de carga para declarar las nuevas instancias: las relaciones basadas en eventos del Charm se encargan de eso. Los Charms de Juju pueden ser escritos en cualquier lenguaje ejecutable. Relevamiento de características de la maquina utilizada: Procesador: Pentium Dual Core E5300 Ram: 2 GB Disco Rigido: 200 GB Relevamiento de sistema operativo y software utilizado y/o necesario: Ubuntu 16.04 JUJU Charms: son conjuntos de scripts para desplegar y administrar servicios. Con el manejo de eventos integrado, pueden declarar interfaces que encajan con otros servicios, por lo que pueden formarse relaciones. LXD: es un hypervisor (plataforma que permite aplicar diversas técnicas de control de virtualización) para contenedores Linux desarrollado por Canonical Ltd. Es un complemento para los contenedores de Linux (LXC) que facilita su uso y añade nuevas posibilidades.
    [Show full text]
  • Firefox Hacks Is Ideal for Power Users Who Want to Maximize The
    Firefox Hacks By Nigel McFarlane Publisher: O'Reilly Pub Date: March 2005 ISBN: 0-596-00928-3 Pages: 398 Table of • Contents • Index • Reviews Reader Firefox Hacks is ideal for power users who want to maximize the • Reviews effectiveness of Firefox, the next-generation web browser that is quickly • Errata gaining in popularity. This highly-focused book offers all the valuable tips • Academic and tools you need to enjoy a superior and safer browsing experience. Learn how to customize its deployment, appearance, features, and functionality. Firefox Hacks By Nigel McFarlane Publisher: O'Reilly Pub Date: March 2005 ISBN: 0-596-00928-3 Pages: 398 Table of • Contents • Index • Reviews Reader • Reviews • Errata • Academic Copyright Credits About the Author Contributors Acknowledgments Preface Why Firefox Hacks? How to Use This Book How This Book Is Organized Conventions Used in This Book Using Code Examples Safari® Enabled How to Contact Us Got a Hack? Chapter 1. Firefox Basics Section 1.1. Hacks 1-10 Section 1.2. Get Oriented Hack 1. Ten Ways to Display a Web Page Hack 2. Ten Ways to Navigate to a Web Page Hack 3. Find Stuff Hack 4. Identify and Use Toolbar Icons Hack 5. Use Keyboard Shortcuts Hack 6. Make Firefox Look Different Hack 7. Stop Once-Only Dialogs Safely Hack 8. Flush and Clear Absolutely Everything Hack 9. Make Firefox Go Fast Hack 10. Start Up from the Command Line Chapter 2. Security Section 2.1. Hacks 11-21 Hack 11. Drop Miscellaneous Security Blocks Hack 12. Raise Security to Protect Dummies Hack 13. Stop All Secret Network Activity Hack 14.
    [Show full text]
  • Chapter 1 - Overview
    Reference architecture Chapter 1 - Overview This document provides a complete reference architecture guide for infrastructure required for machine learning use cases. This document specifically covers open source machine learning software that includes Kubeflow using Charmed Kubernetes solution on Dell EMC hardware delivered by Canonical. This includes Dell EMC PowerEdge servers for workloads and storage based on Intel® Xeon® Scalable Processors and Dell EMC Networking. This guide discusses the Dell EMC hardware specifications and the tools and services to set up both the hardware and software, including the foundation cluster and the Kubernetes cluster to run machine learning workloads. It also covers other tools used for the monitoring and management of the cluster in detail and how all these components work together in the system. The guide also provides the deployment steps and references to configuration and automation scripts developed by Dell EMC and Canonical for the deployment process. Document ID Revisions Revisions Date Description March 2020 Initial release Acknowledgements This paper was produced by the following: Author: Andrey Grebennikov Support: Other: The information in this publication is provided “as is.” Dell Inc. makes no representations or warranties of any kind with respect to the information in this publication, and specifically disclaims implied warranties of merchantability or fitness for a particular purpose. Use, copying, and distribution of any software described in this publication requires an applicable software license. Copyright © Dell Inc. or its subsidiaries. All Rights Reserved. Dell, EMC, Dell EMC and other trademarks are trademarks of Dell Inc. or its subsidiaries. Other trademarks may be trademarks of their respective owners.
    [Show full text]
  • Ubuntu Server Guide Ubuntu Server Guide Copyright © 2016 Contributors to the Document
    Ubuntu Server Guide Ubuntu Server Guide Copyright © 2016 Contributors to the document Abstract Welcome to the Ubuntu Server Guide! It contains information on how to install and configure various server applications on your Ubuntu system to fit your needs. It is a step-by-step, task-oriented guide for configuring and customizing your system. Credits and License This document is maintained by the Ubuntu documentation team (https://wiki.ubuntu.com/DocumentationTeam). A list of contributors is below. This document is made available under the Creative Commons ShareAlike 3.0 License (CC-BY-SA). You are free to modify, extend, and improve the Ubuntu documentation source code under the terms of this license. All derivative works must be released under this license. This documentation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE AS DESCRIBED IN THE DISCLAIMER. A copy of the license is available here: Creative Commons ShareAlike License1. Contributors to this document are: • Members of the Ubuntu Documentation Project2 • Members of the Ubuntu Server Team3 • Contributors to the Community Help Wiki4 • Other contributors can be found in the revision history of the serverguide5 and ubuntu-docs6 bzr branches available on Launchpad. 1 https://creativecommons.org/licenses/by-sa/3.0/ 2 https://launchpad.net/~ubuntu-core-doc 3 https://launchpad.net/~ubuntu-server 4 https://help.ubuntu.com/community/ 5 https://bazaar.launchpad.net/~ubuntu-core-doc/serverguide/trunk/changes 6 https://bazaar.launchpad.net/~ubuntu-core-doc/ubuntu-docs/trunk/changes Table of Contents 1.
    [Show full text]
  • Microsemi MAAS Script and Remote ARCCONF JUJU Charm Released January 2019 Microsemi MAAS Script and Remote ARCCONF JUJU Charm
    SmartRAID 3100 Controller Series SmartHBA 2100 Controller Series User Guide Microsemi MAAS Script and Remote ARCCONF JUJU Charm Released January 2019 Microsemi MAAS Script and Remote ARCCONF JUJU Charm Contents 1 Revision History ............................................................................................................................. 1 1.1 Revision 1.0 ........................................................................................................................................ 1 2 Introduction ................................................................................................................................... 2 3 Overview of MAAS Commissioning Script and Remote ARCCONF Juju Charm .............................. 3 3.1 MAAS Commissioning Script ............................................................................................................... 3 3.2 Remote ARCCONF Juju Charm ............................................................................................................ 3 4 Using the MAAS Commissioning Scripts ........................................................................................ 5 4.1 Using MAAS Scripts to Upgrade Controller Firmware ........................................................................ 5 4.1.1 Firmware Upgrade With Internet Connectivity ....................................................................................... 5 4.1.2 Firmware Upgrade Without Internet Connectivity ................................................................................
    [Show full text]
  • Deploying Openstack Private Cloud on NEC DX1000 Microserver Chassis
    A Principled Technologies deployment guide commissioned by NEC. TABLE OF CONTENTS Table of contents ..................................................................................... 2 Introduction ............................................................................................ 3 About microservers .................................................................................. 3 The NEC Microserver and OpenStack solution ........................................... 4 The NEC DX1000 MicroServer Chassis ................................................4 The Intel Atom processor C2000 product family ................................6 Ubuntu OpenStack ..............................................................................6 Private cloud deployment guide ............................................................... 9 Deployment considerations ................................................................9 Configuring the DX1000 Microserver management interface ...........9 Installing and configuring the MAAS server .................................... 10 Installing and configuring the Juju server ........................................ 14 Configuring OpenStack components ............................................... 21 Expanding your OpenStack Environment ........................................ 21 Validating the OpenStack installation ............................................. 22 Conclusion ............................................................................................. 28 Appendix A – Detailed
    [Show full text]
  • Using-Juju-Charm-To-Configure-And
    White Paper LexisNexis® Risk Solutions Using Juju Charm to Configure and Deploy HPCC Systems® on Amazon Web Services (AWS) - Part 1 HPCC Systems: See Through Patterns in Big Data to Find Big Opportunities Table of Contents INTRODUCTION ................................................................................................ 3 What is HPCC Systems? .............................................................................. 3 What is Juju Charm? ..................................................................................... 3 SETUP FOR USING JUJU CHARM ON UBUNTU 12.04 LINUX ................ 4 Installing the HPCC Juju Charm ................................................................ 4 Installing Juju .................................................................................................. 5 Configuring Juju Charm ............................................................................... 6 Configure and Deploy an HPCC on AWS ................................................ 8 Using Deployed HPCC System .................................................................12 ECL Watch ......................................................................................................12 Setting and Using ECL IDE .........................................................................12 Final Words ....................................................................................................13 Appendix A. Setting Up Ubuntu 12.04 Linux VMware Machine ............... 14 Setup Ubuntu 12.04 and VMware Tools on
    [Show full text]
  • Linux® Smart Homes for Dummies® Published by Wiley Publishing, Inc
    01_598236 ffirs.qxp 6/27/06 7:46 PM Page iii Linux ® Smart Homes FOR DUMmIES‰ by Neil Cherry 01_598236 ffirs.qxp 6/27/06 7:46 PM Page ii 01_598236 ffirs.qxp 6/27/06 7:46 PM Page i Linux ® Smart Homes FOR DUMmIES‰ 01_598236 ffirs.qxp 6/27/06 7:46 PM Page ii 01_598236 ffirs.qxp 6/27/06 7:46 PM Page iii Linux ® Smart Homes FOR DUMmIES‰ by Neil Cherry 01_598236 ffirs.qxp 6/27/06 7:46 PM Page iv Linux® Smart Homes For Dummies® Published by Wiley Publishing, Inc. 111 River Street Hoboken, NJ 07030-5774 www.wiley.com Copyright © 2006 by Wiley Publishing, Inc., Indianapolis, Indiana Published by Wiley Publishing, Inc., Indianapolis, Indiana Published simultaneously in Canada No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning or otherwise, except as permit- ted under Sections 107 or 108 of the 1976 United States Copyright Act, without either the prior written permission of the Publisher, or authorization through payment of the appropriate per-copy fee to the Copyright Clearance Center, 222 Rosewood Drive, Danvers, MA 01923, (978) 750-8400, fax (978) 646-8600. Requests to the Publisher for permission should be addressed to the Legal Department, Wiley Publishing, Inc., 10475 Crosspoint Blvd., Indianapolis, IN 46256, (317) 572-3447, fax (317) 572-4355, or online at http://www.wiley.com/go/permissions. Trademarks: Wiley, the Wiley Publishing logo, For Dummies, the Dummies Man logo, A Reference for the Rest of Us!, The Dummies Way, Dummies Daily, The Fun and Easy Way, Dummies.com, and related trade dress are trademarks or registered trademarks of John Wiley & Sons, Inc.
    [Show full text]
  • Cisco ACI with Openstack Ussuri Deployment Guide for Ubuntu Using Juju Charms
    Cisco ACI with OpenStack Ussuri Deployment Guide for Ubuntu Using Juju Charms First Published: 2021-06-08 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 © 2021 Cisco Systems, Inc. All rights reserved. CONTENTS PREFACE Preface v Audience v Document Conventions v Related Documentation vi Documentation Feedback vii CHAPTER 1 New and Changed Information 1 New and Changed Information 1 CHAPTER 2 Installing Cisco ACI with OpenStack Ussuri on Ubuntu using Juju Charms 3 Prerequisites 3 Server Preparation 4 Preparing the Site 4 Installing the OpFlex Plugin 6 Example of a configuration YAML file 7 APPENDIX A Reference Information 11 Configuring Hierarchical Port Binding 11 Cisco ACI with OpenStack Ussuri Deployment Guide for Ubuntu Using Juju Charms iii Contents Cisco ACI with OpenStack Ussuri Deployment Guide for Ubuntu Using Juju Charms iv Preface This preface includes the following sections: • Audience, on page v • Document Conventions, on page v • Related Documentation, on page vi • Documentation Feedback, on page vii Audience This guide is intended for network and systems administrators who configure and maintain the Application Centric Infrastructure fabric. Document Conventions Command descriptions use the following conventions: Convention Description bold Bold text indicates the commands and keywords that you enter literally as shown. Italic Italic text indicates arguments for which the user supplies the values. [x] Square brackets enclose an optional element (keyword or argument). [x | y] Square brackets enclosing keywords or arguments separated by a vertical bar indicate an optional choice.
    [Show full text]
  • Highlights and Dirty Work
    FeaTure Ubuntu Developer Summit Ubuntu Developer Summit Hig HligHts and d irty Work The Ubuntu Developer Summit, which was co-located with the first Ubuntu Cloud Summit, brought together developers and community members to plan for the next Ubuntu release, “Quantal Quetzal.” We look at a few UDS-Q highlights and the IT infrastructure required to pull off the event. BY BENJAMIN KERENSA he 13th Semi-Annual Ubuntu gether community contributors and de- Summit [2], which connected develop- Developer Summit (UDS) took velopers to plan the roadmap for the ers with representatives from equip- Tplace from May 7-11, 2012 in Quantal Quetzal release cycle. UDS also ment manufacturers and leading tech Oakland, California [1], bringing to- included the Inaugural Ubuntu Cloud firms to discuss the rise of Ubuntu in the cloud sector (Figure 1). Highlights One of the most anticipated events at UDS was the Electronic Arts (EA) ple- nary in which Richard Hilleman, Chief Creative Officer at EA, announced the availability of two Electronic Arts web games [3] in the Ubuntu Software Cen- ter: Command and Conquer Tiberium Alliances, and Lord of Ultima. Hilleman discussed the business side of gaming, how the demographics of gamers is rapidly changing, and the changes in where and how people play games. “The fastest growing payment Figure 1: Mark Shuttleworth discusses JuJu at the Ubuntu Cloud Summit. models, in the fastest growing platform, are in the freemium/ free-to-play mod- els,” Hilleman says. According to Hille- man, the most popular gaming markets were previously dominated by men, but are now being dominated by women gamers.
    [Show full text]