github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/syz-cluster/email-reporter/deployment.yaml (about) 1 # Copyright 2025 syzkaller project authors. All rights reserved. 2 # Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. 3 4 apiVersion: apps/v1 5 kind: Deployment 6 metadata: 7 name: email-reporter 8 spec: 9 replicas: 1 10 selector: 11 matchLabels: 12 app: email-reporter 13 template: 14 metadata: 15 labels: 16 app: email-reporter 17 spec: 18 serviceAccountName: gke-email-reporter-ksa 19 containers: 20 - name: email-reporter 21 image: ${IMAGE_PREFIX}email-reporter:${IMAGE_TAG} 22 volumeMounts: 23 - name: config-volume 24 mountPath: /config 25 - name: reporter-lore-disk 26 mountPath: /lore-repo 27 resources: 28 requests: 29 cpu: 2 30 memory: 8G 31 limits: 32 cpu: 4 33 memory: 16G 34 volumes: 35 - name: config-volume 36 configMap: 37 name: global-config 38 - name: reporter-lore-disk 39 persistentVolumeClaim: 40 claimName: reporter-lore-disk-claim