Skip to main content

Management tool for Kubernetes cluster deployment and maintenance

Project description

Kubemarine_1280х640_3_JPEG GitHub stars GitHub stars PyPI version

Kubemarine

Kubemarine is an open source, lightweight and powerful management tool built for end-to-end Kubernetes cluster deployment and maintenance. It is applicable for many purposes like simple and quick onboarding Kubernetes on local and production environments in different HA schemes depending on your aims, budget, and capabilities. Together with simplicity, Kubemarine can be a very flexible and customizable tool covering specific configurability cases on both deployment and maintenance stages. This library provides powerful CLI commands, as well as can be customized using a Python extension API.

Highlights

Repository structure

There are following key locations in the repository

Paths Description
.github/workflows/, ci/ Contain GitHub Actions configuration which runs unit/integration tests, builds/publishes artifacts, etc
documentation/, examples/, README.md Contain documentation and examples
kubemarine/ Contains source code for KubeMarine python package
test/ Contains tests
bin/, scripts/ci/ Contains auxiliary scripts used during KubeMarine build
scripts/thirdparties/ Contains auxiliary script used to update KubeMarine thirdparties versions
Dockerfile, kubemarine.spec, MANIFEST.in, pyproject.toml, requirements-pyinstaller.txt, setup.py Different files used to build KubeMarine artifacts (image, binaries, package)

Kubemarine Binary Installation

Proceed the following steps to install Kubemarine on your environment:

  1. Download the binary file for your system from the latest release
  2. Move binary kubemarine to a separate folder
  3. Now you can proceed to run Kubemarine! Try the following:
    kubemarine help
    

Kubemarine Package Installation

To install Kubemarine as package on your environment:

  1. Install the latest python.

  2. Upgrade pip.

    Linux / MacOS:

    python3 -m pip install --upgrade pip
    

    Windows:

    python -m pip install --upgrade pip
    
  3. Ensure your environment meets the Deployment Node Prerequisites.

  4. Create and activate a virtual environment if necessary.

  5. Install Kubemarine package.

    Linux / MacOS:

    python3 -m pip install kubemarine
    

    Windows:

    python -m pip install kubemarine
    
  6. Now you can proceed to run Kubemarine! Try the following:

    kubemarine help
    

Kubemarine Installation from Sources

Installation of Kubemarine from sources is mostly similar to Kubemarine Package Installation. The exception is instead of installing the package from PyPI, do the following:

  1. Download the latest release or clone the repository:

    git clone https://github.com/netcracker/kubemarine.git
    
  2. Unpack the project from the archive if required:

    tar xzvf X.X.X.tar.gz
    
  3. Navigate to the project directory:

    cd kubemarine
    
  4. Install Kubemarine package from sources.

    Linux / MacOS:

    python3 -m pip install -e .[ansible]
    

    Windows:

    python -m pip install -e .
    
  5. Now you can proceed to run Kubemarine. Try the following:

    kubemarine help
    

Note: Building from Dockerfile is also available.

Note: Kubemarine debugging available via kubemarine/__main__.py.

Running Cluster Installation

To install a Kubernetes cluster using Kubemarine:

  1. Prepare your VMs or bare-metal machines according to Recommended Hardware Requirements and the selected Deployment Scheme. Make sure the nodes meet Cluster Nodes Prerequisites.
  2. Create the cluster.yaml inventory file, and describe your environment. Make sure that all configurations are done. For more information, see inventory configs available and examples. No need to enter all the parameters that are available, it is enough to specify the minimal identification data about the nodes where you want to install the cluster, for example:
    node_defaults:
      keyfile: "/home/username/.ssh/id_rsa"
      password: '{{ env.PASS }}'     #Either keyfile or password can be used.
      username: "centos"
    
    vrrp_ips:
      - 192.168.0.250
    
    nodes:
      - name: "k8s-control-plane-1"
        internal_address: "10.101.0.1"
        roles: ["balancer", "control-plane", "worker"]
      - name: "k8s-control-plane-2"
        internal_address: "10.101.0.2"
        roles: ["balancer", "control-plane", "worker"]
      - name: "k8s-control-plane-3"
        internal_address: "10.101.0.3"
        roles: ["balancer", "control-plane", "worker"]
    
    cluster_name: "k8s.example.com"
    
  3. Move cluster.yaml to the directory where Kubemarine is installed.
  4. Verify the infrastructure:
    kubemarine check_iaas
    
  5. Start the installation:
    kubemarine install
    
  6. Check the health of the newly installed cluster:
    kubemarine check_paas
    

For more information, refer to the other Kubemarine guides.

Kubemarine Docker Installation

To start, download the Kubmarine image docker pull ghcr.io/netcracker/kubemarine:main

Run Kubemarine from the container, for example:

docker run -it --mount type=bind,source=/root/cluster.yaml,target=/opt/kubemarine/cluster.yaml --mount type=bind,source=/root/rsa_key,target=/opt/kubemarine/rsa_key kubemarine install -c /opt/kubemarine/cluster.yaml

Note: Do not forget to pass the inventory file and connection key inside the container. For more execution details, refer to "Installation of Kubernetes using CLI" guide on Github.

Documentation

The following documents and tutorials are available:

Also, check out the following inventory examples:

For maintainers and developers there is useful internal documentation, for example:

Issues, Questions

If you have any problems while working with Kubemarine, feel free to open a new issue or even PR with related changes. Please follow the Contribution Guide and the process outlined in the Stack Overflow MCVE document.

In case of security concerns, please follow the Security Reporting Process

Changelog

Detailed changes for each release are documented in the release notes.

License

Apache License 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kubemarine-0.45.0.tar.gz (3.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kubemarine-0.45.0-py3-none-any.whl (3.9 MB view details)

Uploaded Python 3

File details

Details for the file kubemarine-0.45.0.tar.gz.

File metadata

  • Download URL: kubemarine-0.45.0.tar.gz
  • Upload date:
  • Size: 3.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for kubemarine-0.45.0.tar.gz
Algorithm Hash digest
SHA256 7846be44a594c2359c4ecd04286eebd0de8126615ecd399e35e48f0bcc85e9a3
MD5 086cc15adce4b9ca79acad47b897b323
BLAKE2b-256 7265c994b479a0ce5f996c291ac9d860a1ca4dce47c683744cad25c6474a0321

See more details on using hashes here.

File details

Details for the file kubemarine-0.45.0-py3-none-any.whl.

File metadata

  • Download URL: kubemarine-0.45.0-py3-none-any.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for kubemarine-0.45.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2078e87e79c7997ed88b4e8a52833a5d7b6974bd57194547393017ff07e8dae0
MD5 f48f3dc10c473e45d1e8d0dde6a97c93
BLAKE2b-256 b7596cf6759ed5a169ef37c74b808367afe59862ed3df7d892d59cc1cce9ecf3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page