Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,14 @@ spec:
- name: "metrics"
port: {{ .Values.neuronMonitor.service.port }}
command:
- "/opt/bin/entrypoint.sh"
args:
port: "{{ .Values.neuronMonitor.service.port }}"
cert-file: "/etc/amazon-cloudwatch-observability-neuron-cert/server.crt"
key-file: "/etc/amazon-cloudwatch-observability-neuron-cert/server.key"
- "/bin/bash"
- "-c"
- |
/opt/bin/entrypoint.sh \
--cert-file /etc/amazon-cloudwatch-observability-neuron-cert/server.crt \
--key-file /etc/amazon-cloudwatch-observability-neuron-cert/server.key \
--port {{ .Values.neuronMonitor.service.port }} \
--neuron-monitor-config /etc/neuron-monitor-config/monitor.json
securityContext:
privileged: true
volumeMounts:
Expand All @@ -46,6 +49,9 @@ spec:
- mountPath: /opt-aws
name: "aws-config"
readOnly: true
- mountPath: /neuron-monitor-blocker
name: neuron-monitor-blocker
readOnly: true
volumes:
- name: neurontls
secret:
Expand All @@ -58,6 +64,10 @@ spec:
- name: "aws-config"
hostPath:
path: /opt/aws
- name: neuron-monitor-blocker
hostPath:
path: /var/neuron-monitor-blocker
type: ""
monitorConfig: |
{
"period": "5s",
Expand Down
2 changes: 1 addition & 1 deletion charts/amazon-cloudwatch-observability/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ neuronMonitor:
name:
image:
repository: neuron-monitor
tag: 1.6.0
tag: 1.7.0
repositoryDomainMap:
public: public.ecr.aws/neuron
resources:
Expand Down