Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions syz-cluster/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $(eval $(call build_image_rules,./workflow/boot-step,boot-step))
$(eval $(call build_image_rules,./tools/db-mgmt,db-mgmt))
$(eval $(call build_image_rules,./tools/send-test-email,send-test-email))

IMAGES := controller web-dashboard reporter-server series-tracker db-mgmt triage-step build-step boot-step fuzz-step send-test-email
IMAGES := controller web-dashboard reporter-server series-tracker db-mgmt triage-step build-step boot-step fuzz-step send-test-email email-reporter
BUILD_TARGETS := $(addprefix build-, $(IMAGES))
PUSH_TARGETS := $(addprefix push-, $(IMAGES))

Expand Down Expand Up @@ -95,8 +95,11 @@ SED_EXPRESSIONS := \
k8s-config-dev:
@kubectl kustomize ./overlays/minikube/ | sed $(SED_EXPRESSIONS)

k8s-config-gke: ensure-spanner-database-uri-env ensure-blob-storage-env ensure-workflow-artifacts-bucket
@kubectl kustomize ./overlays/gke/ | sed $(SED_EXPRESSIONS)
k8s-config-gke-prod: ensure-spanner-database-uri-env ensure-blob-storage-env ensure-workflow-artifacts-bucket
@kubectl kustomize ./overlays/gke/prod/ | sed $(SED_EXPRESSIONS)

k8s-config-gke-staging: ensure-spanner-database-uri-env ensure-blob-storage-env ensure-workflow-artifacts-bucket
@kubectl kustomize ./overlays/gke/staging/ | sed $(SED_EXPRESSIONS)

migrate-job.yaml:
@cat tools/db-mgmt/migrate-job.yaml | sed $(SED_EXPRESSIONS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.

resources:
- ../common
- global-config.yaml
- ../../common
- global-config-env.yaml
- kernel-disk-pvc.yaml
- workflow-artifacts.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
name: global-config
data:
config.yaml: |
parallelWorkflows: 5
parallelWorkflows: 7
loreArchives:
- netdev
- linux-ext4
Expand Down
7 changes: 7 additions & 0 deletions syz-cluster/overlays/gke/prod/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 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.

resources:
- ../common
- global-config.yaml
- ../../../email-reporter
13 changes: 13 additions & 0 deletions syz-cluster/overlays/gke/staging/global-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 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: v1
kind: ConfigMap
metadata:
name: global-config
data:
config.yaml: |
parallelWorkflows: 3
loreArchives:
- netdev
- linux-ext4
6 changes: 6 additions & 0 deletions syz-cluster/overlays/gke/staging/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 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.

resources:
- ../common
- global-config.yaml
Loading