Path: blob/main/pkg/operator/testdata/test-integrations.out.yaml
4095 views
# Resources to assert to exist when reconciling test-integrations.in.yaml.12apiVersion: apps/v13kind: Deployment4metadata:5name: grafana-agent-example-integrations-deploy6namespace: default7spec:8template:9spec:10containers:11- name: config-reloader12- name: grafana-agent13env:14- name: POD_NAME15valueFrom:16fieldRef:17apiVersion: v118fieldPath: metadata.name19- name: SHARD20value: "0"21- name: SHARDS22value: "1"23- name: HOSTNAME24valueFrom:25fieldRef:26apiVersion: v127fieldPath: spec.nodeName28volumeMounts:29- name: config30readOnly: true31mountPath: /var/lib/grafana-agent/config-in32- name: config-out33mountPath: /var/lib/grafana-agent/config34- name: secrets35readOnly: true36mountPath: /var/lib/grafana-agent/secrets37- name: grafana-agent-example-integrations-deploy-wal38mountPath: /var/lib/grafana-agent/data39- name: varlog40readOnly: true41mountPath: /var/log42- name: dockerlogs43readOnly: true44mountPath: /var/lib/docker/containers45volumes:46- name: config47secret:48secretName: grafana-agent-example-integrations-deploy-config49- name: config-out50emptyDir: {}51- name: secrets52secret:53secretName: grafana-agent-example-secrets54- name: grafana-agent-example-integrations-deploy-wal55emptyDir: {}56- name: varlog57hostPath:58path: /var/log59- name: dockerlogs60hostPath:61path: /var/lib/docker/containers6263---6465apiVersion: apps/v166kind: DaemonSet67metadata:68name: grafana-agent-example-integrations-ds69namespace: default70spec:71template:72spec:73containers:74- name: config-reloader75- name: grafana-agent76env:77- name: POD_NAME78valueFrom:79fieldRef:80apiVersion: v181fieldPath: metadata.name82- name: SHARD83value: "0"84- name: SHARDS85value: "1"86- name: HOSTNAME87valueFrom:88fieldRef:89apiVersion: v190fieldPath: spec.nodeName91volumeMounts:92- name: config93readOnly: true94mountPath: /var/lib/grafana-agent/config-in95- name: config-out96mountPath: /var/lib/grafana-agent/config97- name: secrets98readOnly: true99mountPath: /var/lib/grafana-agent/secrets100- name: default-node-exporter-proc101mountPath: /default/node_exporter/proc102- name: default-node-exporter-sys103mountPath: /default/node_exporter/sys104- name: default-node-exporter-root105mountPath: /default/node_exporter/rootfs106- name: grafana-agent-example-integrations-secrets107readOnly: true108mountPath: /etc/grafana-agent/integrations109- name: grafana-agent-example-integrations-ds-wal110mountPath: /var/lib/grafana-agent/data111- name: varlog112readOnly: true113mountPath: /var/log114- name: dockerlogs115readOnly: true116mountPath: /var/lib/docker/containers117volumes:118- name: config119secret:120secretName: grafana-agent-example-integrations-ds-config121- name: config-out122emptyDir: {}123- name: secrets124secret:125secretName: grafana-agent-example-secrets126- name: default-node-exporter-proc127hostPath:128path: /proc129- name: default-node-exporter-sys130hostPath:131path: /sys132- name: default-node-exporter-root133hostPath:134path: /root135- name: grafana-agent-example-integrations-secrets136secret:137secretName: grafana-agent-example-secrets138items:139- key: _secrets_default_fake_secret_key140path: secrets/default/fake-secret/key141- key: _configMaps_default_fake_configmap_foo142path: configMaps/default/fake-configmap/foo143- name: grafana-agent-example-integrations-ds-wal144emptyDir: {}145- name: varlog146hostPath:147path: /var/log148- name: dockerlogs149hostPath:150path: /var/lib/docker/containers151152153