Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for deploying k3s #682

Merged
merged 6 commits into from Mar 14, 2023
Merged

Add support for deploying k3s #682

merged 6 commits into from Mar 14, 2023

Commits on Mar 7, 2023

  1. Add support for deploying k3s

    This adds `sesdev create k3s`, which by default will deploy a
    master with four workers on openSUSE Tumbleweed.  It will also
    deploy on SLE 15 SP3 if you specify `--os=sles-15-sp3`.
    
    k3s is installed by running `curl https://get.k3s.io`.  Helm
    is also installed on the master, again using `curl`.  If you
    don't want the latest stable k3s, you can install a specific
    version with the `--k3s-version` option.  If you want more or
    less workers, use `--roles='[master],[worker],[...]`.
    
    Signed-off-by: Tim Serong <tserong@suse.com>
    tserong committed Mar 7, 2023
    Configuration menu
    Copy the full SHA
    9ddf6e2 View commit details
    Browse the repository at this point in the history
  2. Add ability to deploy Ceph via Rook on k3s

    This adds the `--deploy-ses` option to `sesdev create k3s`,
    which will pull registry.suse.com/ses/7.1/charts/rook-ceph,
    then deploy Rook, which in turn will deploy Ceph, and have
    it eat all the disks on all the workers.
    
    Signed-off-by: Tim Serong <tserong@suse.com>
    tserong committed Mar 7, 2023
    Configuration menu
    Copy the full SHA
    1ede85a View commit details
    Browse the repository at this point in the history
  3. README.md: Add k3s notes

    Signed-off-by: Tim Serong <tserong@suse.com>
    tserong committed Mar 7, 2023
    Configuration menu
    Copy the full SHA
    5fdffe5 View commit details
    Browse the repository at this point in the history
  4. k3s: install openssl for helm checksum verification

    When deploying on SLE 15, openssl is already installed as
    it's a dependency of ca-certificates.  This is not true on
    Tumblweed though, so let's just always install it.
    
    Signed-off-by: Tim Serong <tserong@suse.com>
    tserong committed Mar 7, 2023
    Configuration menu
    Copy the full SHA
    a3750a8 View commit details
    Browse the repository at this point in the history
  5. k3s: deploy ceph toolbox container

    Signed-off-by: Tim Serong <tserong@suse.com>
    tserong committed Mar 7, 2023
    Configuration menu
    Copy the full SHA
    96b696a View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2023

  1. k3s: add k3s_deploy_ses setting

    This avoids causing confusion by overloading the caasp_deploy_ses setting.
    
    Signed-off-by: Tim Serong <tserong@suse.com>
    tserong committed Mar 9, 2023
    Configuration menu
    Copy the full SHA
    be0bfab View commit details
    Browse the repository at this point in the history