diff --git a/stable/instana-agent/Chart.yaml b/stable/instana-agent/Chart.yaml index 5f0e8e81eb..e5b77c3407 100644 --- a/stable/instana-agent/Chart.yaml +++ b/stable/instana-agent/Chart.yaml @@ -21,4 +21,4 @@ maintainers: name: instana-agent sources: - https://github.com/instana/instana-agent-docker -version: 1.0.27 +version: 1.0.28 diff --git a/stable/instana-agent/README.md b/stable/instana-agent/README.md index 120428d287..e8eef2223d 100644 --- a/stable/instana-agent/README.md +++ b/stable/instana-agent/README.md @@ -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.16.x +Kubernetes 1.9.x - 1.18.x #### Helm 3 prerequisites @@ -113,7 +113,7 @@ The following table lists the configurable parameters of the Instana chart and t |------------------------------------|-------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------| | `agent.configuration_yaml` | Custom content for the agent configuration.yaml file | `nil` See [below](#agent) for more details | | `agent.downloadKey` | Your Instana Download key | `nil` Usually not required | -| `agent.endpointHost` | Instana Agent backend endpoint host | `saas-us-west-2.instana.io` | +| `agent.endpointHost` | Instana Agent backend endpoint host | `ingress-red-saas.instana.io` (US and ROW). If in Europe, please override with `ingress-blue-saas.instana.io` | | `agent.endpointPort` | Instana Agent backend endpoint port | `443` | | `agent.image.name` | The image name to pull | `instana/agent` | | `agent.image.tag` | The image tag to pull | `latest` | diff --git a/stable/instana-agent/templates/clusterrole.yaml b/stable/instana-agent/templates/clusterrole.yaml index 318c849832..3fbb97ae36 100644 --- a/stable/instana-agent/templates/clusterrole.yaml +++ b/stable/instana-agent/templates/clusterrole.yaml @@ -17,6 +17,7 @@ rules: - apiGroups: ["batch"] resources: - "jobs" + - 'cronjobs' verbs: ["get", "list", "watch"] - apiGroups: ["extensions"] resources: diff --git a/stable/instana-agent/templates/daemonset.yaml b/stable/instana-agent/templates/daemonset.yaml index c7e75ddcf8..951153ebc9 100644 --- a/stable/instana-agent/templates/daemonset.yaml +++ b/stable/instana-agent/templates/daemonset.yaml @@ -96,7 +96,7 @@ spec: value: {{ .Values.agent.redactKubernetesSecrets | quote }} {{- end }} - name: JAVA_OPTS - # Approximately 1/3 of container memory limits to allow for direct-buffer memory usage and JVM overhead + # Approximately 1/3 of container memory requests to allow for direct-buffer memory usage and JVM overhead value: "-Xmx{{ div (default 512 .Values.agent.pod.requests.memory) 3 }}M -XX:+ExitOnOutOfMemoryError" - name: INSTANA_AGENT_POD_NAME valueFrom: diff --git a/stable/instana-agent/values.yaml b/stable/instana-agent/values.yaml index da1f478572..a1a288499e 100644 --- a/stable/instana-agent/values.yaml +++ b/stable/instana-agent/values.yaml @@ -18,7 +18,7 @@ agent: leaderElectorPort: 42655 # agent.endpointHost is the hostname of the Instana server your agents will connect to. - endpointHost: saas-us-west-2.instana.io + endpointHost: ingress-red-saas.instana.io # agent.endpointPort is the port number (as a String) of the Instana server your agents will connect to. endpointPort: 443