# Copyright 2025 syzkaller project authors. All rights reserved. # Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. apiVersion: apps/v1 kind: Deployment metadata: name: web-dashboard spec: replicas: 1 selector: matchLabels: app: web-dashboard template: metadata: labels: app: web-dashboard spec: serviceAccountName: gke-service-ksa containers: - name: web-dashboard-image image: ${IMAGE_PREFIX}web-dashboard:${IMAGE_TAG} envFrom: - configMapRef: name: global-config-env volumeMounts: - name: config-volume mountPath: /config ports: - containerPort: 8081 resources: requests: cpu: 2 memory: 4G limits: cpu: 4 memory: 8G volumes: - name: config-volume configMap: name: global-config