Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 979 Bytes

installation.md

File metadata and controls

33 lines (24 loc) · 979 Bytes

Installation

You can choose among several ways of installation. For more details on the available make targets and the prerequisites, see Development.

Prerequisites

  • See prerequisites for running the make targets at the Development section.
  • You have a Kubecontext pointing to an existing Kubernetes cluster.

Install Telemetry Manager From Sources

make install
make run

Install Telemetry Manager in Your Cluster From Sources

export IMG=<my container repo>
make docker-build
make docker-push
kubectl create ns kyma-system
make deploy-experimental

Install Telemetry Manager in Your Cluster From Latest Release

kubectl create ns kyma-system
kubectl apply -f https://github.com/kyma-project/telemetry-manager/releases/latest/download/telemetry-manager.yaml
kubectl apply -f https://github.com/kyma-project/telemetry-manager/releases/latest/download/telemetry-default-cr.yaml -n kyma-system