From 872c9dc8e539d44f3a8779ad666c7973ff2408dd Mon Sep 17 00:00:00 2001 From: miwr Date: Mon, 17 Mar 2025 15:13:12 +0100 Subject: [PATCH] volumes: - name: alloy-data emptyDir: {} --- .../ref-implementation/openbao/values.yaml | 31 ++++++++++++------- 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/template/stacks/ref-implementation/openbao/values.yaml b/template/stacks/ref-implementation/openbao/values.yaml index 23fe45f..4c2b294 100644 --- a/template/stacks/ref-implementation/openbao/values.yaml +++ b/template/stacks/ref-implementation/openbao/values.yaml @@ -1,20 +1,27 @@ server: extraContainers: - - name: grafana-alloy - image: grafana/alloy:latest - ports: - - containerPort: 12345 - volumeMounts: - - name: sidecar-container-alloy-config - mountPath: /etc/alloy/config.yaml - subPath: config.yaml + - name: grafana-alloy + image: grafana/alloy:latest + ports: + - containerPort: 12345 + # volumeMounts: + # - name: sidecar-container-alloy-config + # mountPath: /etc/alloy/config.yaml + # subPath: config.yaml # args: # - --config.file=/etc/alloy/config.yaml - + volumeMounts: + - name: alloy-data + mountPath: /var/lib/alloy/data + volumes: - - name: sidecar-container-alloy-config - configMap: - name: sidecar-container-alloy-config + - name: alloy-data + emptyDir: {} + + # volumes: + # - name: sidecar-container-alloy-config + # configMap: + # name: sidecar-container-alloy-config postStart: - sh