Skip to content
Merged
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 @@ -33,7 +33,7 @@ spec:
args:
- run
- /etc/alloy/config.alloy
- --storage.path=/tmp/alloy
- --storage.path=/srv/alloy/data
- --server.http.listen-addr=0.0.0.0:12345
- --server.http.ui-path-prefix=/
- --stability.level=generally-available
Expand Down Expand Up @@ -70,6 +70,8 @@ spec:
- name: varlog
mountPath: /var/log
readOnly: true
- mountPath: /srv/alloy/data
name: alloy-storage-logs
- name: config-reloader
image: quay.io/prometheus-operator/prometheus-config-reloader:v0.81.0
imagePullPolicy: IfNotPresent
Expand Down Expand Up @@ -97,6 +99,10 @@ spec:
- name: varlog
hostPath:
path: /var/log
- hostPath:
path: /srv/alloy/data
type: DirectoryOrCreate
name: alloy-storage-logs
updateStrategy:
rollingUpdate:
maxUnavailable: 25%
Expand Down
11 changes: 11 additions & 0 deletions apps/grafana/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,19 @@ spec:
memory: 512Mi
limits:
memory: 512Mi
storagePath: /srv/alloy/data
mounts:
extra:
- name: alloy-storage-logs
mountPath: /srv/alloy/data
controller:
priorityClassName: node-observability
volumes:
extra:
- name: alloy-storage-logs
hostPath:
path: /srv/alloy/data
type: DirectoryOrCreate
updateStrategy:
type: RollingUpdate
rollingUpdate:
Expand Down
Loading