installer/

directory
v0.0.0-...-affaa53 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 28, 2019 License: Apache-2.0

README

Installer

Overview

Kyma Installer is a tool for installing all Kyma components. The project is based on the Kubernetes operator pattern. It tracks changes of the Installation custom resource and installs, uninstalls, and updates Kyma accordingly.

Prerequisites

  • Minikube 0.26.1
  • kubectl 1.9.0
  • Docker
  • jq

Development

Before each commit, use the before-commit.sh script to test your changes:

./before-commit.sh

Build a Docker image

Run the build.sh script to build a Docker image of the Installer:

./scripts/build.sh

Run on Minikube using local sources

Export the path to Kyma sources as an environment variable. This environment variable is used to trigger shell scripts located in Kyma.

export KYMA_PATH={PATH_TO_KYMA_SOURCES}

Use this script to run Minikube, set up the Installer, and install Kyma from local sources. If Minikube was started before, it will be restarted.

./scripts/run.sh --local --cr {PATH_TO_CR}

See the Custom resource file section in this document to learn how to generate a custom resource file.

To track progress of the installation, run:

../../installation/scripts/is-installed.sh

Rerun Kyma without restarting Minikube

This scenario is useful when you want to reuse cached Docker images.

Run this script to clear running Minikube:

../../installation/scripts/clean-up.sh

Execute the run.sh script with the --skip-minikube-start flag to rerun Kyma installation without stopping your Minikube:

./scripts/run.sh --skip-minikube-start

Update the Kyma cluster

Connect to the cluster that hosts your Kyma installation. Prepare the URL to the updated Kyma tar.gz package. Run the following command to edit the installation CR:

kubectl edit installation/{CR_NAME}

Change the url property in spec to {URL_TO KYMA_TAR_GZ}. Trigger the update by overriding the action label in CR:

kubectl label installation/{CR_NAME} action=install --overwrite

Uninstall Kyma

Run this command to uninstall Kyma:

kubectl label installation/kyma-installation action=uninstall

NOTE: Uninstallation is an experimental feature that invokes the helm delete --purge command for each release specified in the CR. It is Helm's policy to prevent some types of resources, such as CRDs or Namespaces, from being deleted. Delete them manually before you attempt to install Kyma again on a cluster from which it was uninstalled.

Custom resource file

The Installation custom resource file provides the basic information for Kyma installation.

The required properties include:

  • url which is the URL address to a Kyma charts package. Only tar.gz is supported and it is required for non-local installations only.
  • version which is the version of Kyma.
  • components which is the list of Kyma components.

Generate the custom resource file

Generate a custom resource file using the create-cr.sh script. It accepts the following arguments:

  • --output is a mandatory parameter which indicates the location of the custom resource output file.
  • --url is the URL to the Kyma package.
  • --version is the version of Kyma.

For example:

../../installation/scripts/create-cr.sh --output installer-cr.yaml --url {URL_TO_KYMA_TAR_GZ} --version 0.8.0

Static overrides for cluster installations

You can define cluster-specific overrides for each root chart. In the cluster deployment scenario, the Installer reads the cluster.yaml file in each root chart and appends its content to the overrides applied during the Helm installation.

Directories

Path Synopsis
cmd
pkg
apis/installer/v1alpha1
Package v1alpha1 .
Package v1alpha1 .
client/clientset/versioned
This package has the automatically generated clientset.
This package has the automatically generated clientset.
client/clientset/versioned/fake
This package has the automatically generated fake clientset.
This package has the automatically generated fake clientset.
client/clientset/versioned/scheme
This package contains the scheme of the automatically generated clientset.
This package contains the scheme of the automatically generated clientset.
client/clientset/versioned/typed/installer/v1alpha1
This package has the automatically generated typed clients.
This package has the automatically generated typed clients.
client/clientset/versioned/typed/installer/v1alpha1/fake
Package fake has the automatically generated clients.
Package fake has the automatically generated clients.
steps
Package steps contains implementation for all installation steps.
Package steps contains implementation for all installation steps.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL