Commit 0fdf3c73 by Instana CD Committed by Dahlia Bock

[instana-agent/v1.0.19] Chart version 1.0.19

parent e451c519
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
# OWNERS file for helm
OWNERS
apiVersion: v1 apiVersion: v1
name: instana-agent name: instana-agent
version: 1.0.18 version: 1.0.19
appVersion: 1.0 appVersion: 1.0
description: Instana Agent for Kubernetes description: Instana Agent for Kubernetes
home: https://www.instana.com/ home: https://www.instana.com/
......
...@@ -105,6 +105,8 @@ spec: ...@@ -105,6 +105,8 @@ spec:
mountPath: /sys mountPath: /sys
- name: var-log - name: var-log
mountPath: /var/log mountPath: /var/log
- name: var-lib
mountPath: /var/lib/containers/storage
- name: machine-id - name: machine-id
mountPath: /etc/machine-id mountPath: /etc/machine-id
- name: configuration - name: configuration
...@@ -173,6 +175,9 @@ spec: ...@@ -173,6 +175,9 @@ spec:
- name: var-log - name: var-log
hostPath: hostPath:
path: /var/log path: /var/log
- name: var-lib
hostPath:
path: /var/lib/containers/storage
- name: machine-id - name: machine-id
hostPath: hostPath:
path: /etc/machine-id path: /etc/machine-id
......
...@@ -30,6 +30,8 @@ spec: ...@@ -30,6 +30,8 @@ spec:
readOnly: false readOnly: false
- pathPrefix: "/etc/machine-id" - pathPrefix: "/etc/machine-id"
readOnly: false readOnly: false
- pathPrefix: "/var/lib/containers/storage"
readOnly: false
{{- if .Values.agent.host.repository }} {{- if .Values.agent.host.repository }}
- pathPrefix: {{ .Values.agent.host.repository }} - pathPrefix: {{ .Values.agent.host.repository }}
readOnly: false readOnly: false
......
...@@ -26,7 +26,7 @@ agent: ...@@ -26,7 +26,7 @@ agent:
# agent.image.name is the name of the container image of the Instana agent. # agent.image.name is the name of the container image of the Instana agent.
name: instana/agent name: instana/agent
# agent.image.tag is the tag name of the agent container image. # agent.image.tag is the tag name of the agent container image.
tag: 1.0.29 tag: 1.0.42
# agent.image.pullPolicy specifies when to pull the image container. # agent.image.pullPolicy specifies when to pull the image container.
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
......
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