Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[stable/instana-agent] Chart version 1.0.24 #21350

Merged
merged 1 commit into from
Mar 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/instana-agent/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: instana-agent
version: 1.0.23
version: 1.0.24
appVersion: 1.0
description: Instana Agent for Kubernetes
home: https://www.instana.com/
Expand Down
34 changes: 32 additions & 2 deletions stable/instana-agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,15 @@ This chart adds the Instana Agent to all schedulable nodes in your cluster via a

Kubernetes 1.9.x - 1.16.x

Working `helm` (version 3) with the `stable` repo added to your helm client.
#### Helm 3 prerequisites

Working `helm` with the `stable` repo added to your helm client.

#### Helm 2 prerequisites

Working `helm` and `tiller`.

_Note:_ Tiller may need a service account and role binding if RBAC is enabled in your cluster.

## Installing the Chart

Expand Down Expand Up @@ -49,6 +57,8 @@ Agent can have APM, INFRASTRUCTURE or AWS mode. Default is APM and if you want t

* agent.mode

#### Installing with Helm 3

First, create a namespace for the instana-agent

```bash
Expand All @@ -65,14 +75,34 @@ $ helm install instana-agent --namespace instana-agent \
stable/instana-agent
```

#### Installing with Helm 2

To install the chart with the release name `instana-agent` and set the values on the command line run:

```bash
$ helm install --name instana-agent --namespace instana-agent \
--set agent.key=INSTANA_AGENT_KEY \
--set agent.endpointHost=HOST \
--set zone.name=ZONE_NAME \
stable/instana-agent
```

## Uninstalling the Chart

To uninstall/delete the `instana-agent` daemon set:
To uninstall/delete the `instana-agent` release:

#### Uninstalling with Helm 2

```bash
$ helm del --purge instana-agent
```

#### Uninstalling with Helm 3

```bash
$ helm del instana-agent -n instana-agent
```

## Configuration

### Helm Chart
Expand Down