github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/syz-cluster/dashboard/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: web-dashboard 8 spec: 9 replicas: 1 10 selector: 11 matchLabels: 12 app: web-dashboard 13 template: 14 metadata: 15 labels: 16 app: web-dashboard 17 spec: 18 serviceAccountName: gke-service-ksa 19 containers: 20 - name: web-dashboard-image 21 image: ${IMAGE_PREFIX}web-dashboard:${IMAGE_TAG} 22 envFrom: 23 - configMapRef: 24 name: global-config-env 25 volumeMounts: 26 - name: config-volume 27 mountPath: /config 28 ports: 29 - containerPort: 8081 30 resources: 31 requests: 32 cpu: 2 33 memory: 4G 34 limits: 35 cpu: 4 36 memory: 8G 37 volumes: 38 - name: config-volume 39 configMap: 40 name: global-config