This is an idea that's been kicking around for a while... maybe it's finally time to "make it so."

Minimally:

Develop kiwi configurations in OBS for a single-server OpenQA appliance. Apply nested virtualization options in virtual format to allow easy use existing private cloud frameworks (OpenStack, VMWare, Hyper-V).

Bigger picture:

Develop cloud-focused backends ( https://progress.opensuse.org/issues/12160 ) allowing native use of cloud frameworks instead of a monolithic instance with nested virtualization. Provide an image ready to "fire up and use" in at least one Public Cloud provider (AWS/Azure/GCE).

Looking for hackers with the skills:

images openqa publiccloud perl

This project is part of:

Hack Week 15

Activity

  • over 6 years ago: seanmarlow liked this project.
  • about 8 years ago: bear454 added keyword "perl" to this project.
  • about 8 years ago: bear454 started this project.
  • about 8 years ago: SLindoMansilla liked this project.
  • about 8 years ago: okurz liked this project.
  • about 8 years ago: mbrugger liked this project.
  • about 8 years ago: RBrownSUSE liked this project.
  • about 8 years ago: mgriessmeier liked this project.
  • about 8 years ago: xgonzo liked this project.
  • about 8 years ago: bear454 added keyword "images" to this project.
  • about 8 years ago: bear454 added keyword "openqa" to this project.
  • about 8 years ago: bear454 added keyword "publiccloud" to this project.
  • about 8 years ago: bear454 originated this project.

  • Comments

    • okurz
      about 8 years ago by okurz | Reply

      how is that related to https://github.com/os-autoinst/openQA/tree/master/docker ?

      • bear454
        about 8 years ago by bear454 | Reply

        In a local instance or private cloud, it would be an alternative to using docker for the components.

        Some of the work is around building and pre-configuring an image, creating more of a "fire up and use" experience.

    • lnussel
      about 8 years ago by lnussel | Reply

      Ideally based on SLE JeOS images so we can use it for both Leap and SLE https://build.opensuse.org/project/show/openSUSE:Leap:42.1:Images

    Similar Projects

    Make more sense of openQA test results using AI by livdywan

    Description

    AI has the potential to help with something many of us spend a lot of time doing which is making sense of openQA logs when a job fails.

    User Story

    Allison Average has a puzzled look on their face while staring at log files that seem to make little sense. Is this a known issue, something completely new or maybe related to infrastructure changes?

    Goals

    • Leverage a chat interface to help Allison
    • Create a model from scratch based on data from openQA
    • Proof of concept for automated analysis of openQA test results

    Bonus

    • Use AI to suggest solutions to merge conflicts
      • This would need a merge conflict editor that can suggest solving the conflict
    • Use image recognition for needles

    Resources

    Timeline

    Day 1

    • Conversing with open-webui to teach me how to create a model based on openQA test results

    Day 2

    Highlights

    • I briefly tested compared models to see if they would make me more productive. Between llama, gemma and mistral there was no amazing difference in the results for my case.
    • Convincing the chat interface to produce code specific to my use case required very explicit instructions.
    • Asking for advice on how to use open-webui itself better was frustratingly unfruitful both in trivial and more advanced regards.
    • Documentation on source materials used by LLM's and tools for this purpose seems virtually non-existent - specifically if a logo can be generated based on particular licenses

    Outcomes

    • Chat interface-supported development is providing good starting points and open-webui being open source is more flexible than Gemini. Although currently some fancy features such as grounding and generated podcasts are missing.
    • Allison still has to be very experienced with openQA to use a chat interface for test review. Publicly available system prompts would make that easier, though.


    New features in openqa-trigger-from-obs for openQA by jlausuch

    Description

    Implement new features in openqa-trigger-from-obs to make xml more flexible.

    Goals

    One of the features to be implemented: - Possibility to define "VERSION" and "ARCH" variables per flavor instead of global.

    Resources

    https://github.com/os-autoinst/openqa-trigger-from-obs


    Setup a new openQA on more powerful server by JNa

    Description

    • currently local openQA storage is insufficient

    Goals

    -Migrate to more powerful machine

    Resources

    -Service Rainbow


    Learn obs/ibs sync tool by xlai

    Description

    Once images/repo are built from IBS/OBS, there is a tool to sync the image from IBS/OBS to openqa asset directory and trigger openqa jobs accordingly.

    Goals

    Check how the tool is implemented, and be capable to add/modify our needed images/repo in future by ourselves.

    Resources

    • https://github.com/os-autoinst/openqa-trigger-from-obs
    • https://gitlab.suse.de/openqa/openqa-trigger-from-ibs-plugin/-/tree/master?ref_type=heads


    OpenQA Golang api client by hilchev

    Description

    I would like to make a simple cli tool to communicate with the OpenQA API

    Goals

    • OpenQA has a ton of information that is hard to get via the UI. A tool like this would make my life easier :)
    • Would potentially make it easier in the future to make UI changes without Perl.
    • Improve my Golang skills

    Resources

    • https://go.dev/doc/
    • https://openqa.opensuse.org/api


    Create object oriented API for perl's YAML::XS module, with YAML 1.2 Support by tinita

    Description

    YAML::XS is a binding to libyaml and already quite old, but the most popular YAML module for perl. There are two main issues:

    • It uses global package variables to influence behaviour.
    • It didn't implement the loading of types like numbers and booleans according to the YAML spec (neither 1.1 nor 1.2).

    Goals

    Create a new interface which works object oriented. Currently YAML::XS exports a list of functions.

    • The new API will allow to create a YAML::XS object containing configuration influencing the behaviour of loading and dumping.
      • It keeps the libyaml parser and emitter structs in memory, so repeated calls can save the creation of those structs
    • It will by default implement the YAML 1.2 Core Schema, so it is compatible to other YAML processors in perl and in other languages
    • If I have time, I would like to add the merge << key feature as an option. We could then use it in openQA as a replacement for YAML::PP to be faster.

    I already created a proof of concept with a minimal functionality some weeks before this HackWeek.

    Resources