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
10 changes: 9 additions & 1 deletion cluster-agent/templates/deployment-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ spec:
{{ end -}}
nodeSelector:
{{- toYaml .Values.operatorPod.nodeSelector | nindent 8 }}
automountServiceAccountToken: {{ .Values.operatorPod.automountServiceAccountToken | default true }}
containers:
- name: appdynamics-operator
image: {{ .Values.imageInfo.operatorImage }}:{{ .Values.imageInfo.operatorTag }}
Expand All @@ -47,4 +48,11 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: "appdynamics-operator"

{{- if .Values.operatorPod.volumeMounts }}
volumeMounts:
{{- toYaml .Values.operatorPod.volumeMounts | nindent 12 }}
{{- end }}
{{- if .Values.operatorPod.volumes }}
volumes:
{{- toYaml .Values.operatorPod.volumes | nindent 8 }}
{{- end }}
3 changes: 3 additions & 0 deletions cluster-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ operatorPod:
cpu: 100m
memory: 64Mi
imagePullSecret: ""
automountServiceAccountToken: true
volumeMounts: []
volumes: []

# Infraviz pod specific properties
infravizPod:
Expand Down