Commit 7aa68994 by Instana CD

[instana-agent/v1.0.22] Chart version 1.0.22

parent 6cc347ff
apiVersion: v1
name: instana-agent
version: 1.0.21
version: 1.0.22
appVersion: 1.0
description: Instana Agent for Kubernetes
home: https://www.instana.com/
......
......@@ -8,7 +8,7 @@ This chart adds the Instana Agent to all schedulable nodes in your cluster via a
## Prerequisites
Kubernetes 1.9.x - 1.14.x
Kubernetes 1.9.x - 1.16.x
Working `helm` and `tiller`.
......@@ -106,6 +106,7 @@ The following table lists the configurable parameters of the Instana chart and t
| `agent.pod.requests.memory` | Container memory requests in MiB | `512` |
| `agent.pod.requests.cpu` | Container cpu requests in cpu cores | `0.5` |
| `agent.pod.tolerations` | Tolerations for pod assignment | `[]` |
| `agent.env` | Additional environment variables for the agent | `{}` |
| `agent.redactKubernetesSecrets` | Enable additional secrets redaction for selected Kubernetes resources | `nil` See [Kubernetes secrets](https://docs.instana.io/quick_start/agent_setup/container/kubernetes/#secrets) for more details. |
| `cluster.name` | Display name of the monitored cluster | Value of `zone.name` |
| `podSecurityPolicy.enable` | Whether a PodSecurityPolicy should be authorized for the Instana Agent pods. Requires `rbac.create` to be `true` as well. | `false` See [PodSecurityPolicy](https://docs.instana.io/quick_start/agent_setup/container/kubernetes/#podsecuritypolicy) for more details. |
......
......@@ -96,6 +96,10 @@ spec:
valueFrom:
fieldRef:
fieldPath: status.podIP
{{- range $key, $value := .Values.agent.env }}
- name: {{ $key }}
value: {{ $value | quote }}
{{- end }}
securityContext:
privileged: true
volumeMounts:
......@@ -124,8 +128,8 @@ spec:
httpGet:
path: /status
port: 42699
initialDelaySeconds: 75
periodSeconds: 5
initialDelaySeconds: 300
timeoutSeconds: 3
resources:
requests:
memory: "{{ default 512 .Values.agent.pod.requests.memory }}Mi"
......@@ -155,8 +159,8 @@ spec:
httpGet:
path: /status
port: 42699
initialDelaySeconds: 75
periodSeconds: 5
initialDelaySeconds: 300
timeoutSeconds: 3
ports:
- containerPort: {{ .Values.agent.leaderElectorPort }}
{{- if .Values.agent.pod.tolerations }}
......
......@@ -62,6 +62,12 @@ agent:
# agent.proxyUseDNS sets the INSTANA_AGENT_PROXY_USE_DNS environment variable.
# proxyUseDNS: null
# use this to set additional environment variables for the instana agent
# for example:
# env:
# INSTANA_AGENT_TAGS: dev
env: {}
configuration_yaml: |
# Place agent configuration here
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment