From d367cbe5791e415abaed06819481019104eaf42a Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Tue, 27 Feb 2024 11:21:36 +0100 Subject: .github/arc_config/values.yaml: reflect current configuration 1. To spawn docker from docker, the kubernetes (not dind) mode is used. It provides better security model. 2. No OpenEBS alternatives were considered. --- .github/arc_config/values.yaml | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) (limited to '.github') diff --git a/.github/arc_config/values.yaml b/.github/arc_config/values.yaml index db7b63fd9..f7f8a4e23 100644 --- a/.github/arc_config/values.yaml +++ b/.github/arc_config/values.yaml @@ -1,6 +1,9 @@ +# Copyright 2020 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. + ## githubConfigUrl is the GitHub url for where you want to configure runners ## ex: https://github.com/myorg/myrepo or https://github.com/myorg -githubConfigUrl: "" +githubConfigUrl: "https://github.com/google/syzkaller" ## githubConfigSecret is the k8s secrets to use when auth with GitHub API. ## You can choose to use GitHub App or a PAT token @@ -75,18 +78,18 @@ githubConfigSecret: ## ## If any customization is required for dind or kubernetes mode, containerMode should remain ## empty, and configuration should be applied to the template. -# containerMode: -# type: "dind" ## type can be set to dind or kubernetes -# ## the following is required when containerMode.type=kubernetes -# kubernetesModeWorkVolumeClaim: -# accessModes: ["ReadWriteOnce"] -# # For local testing, use https://github.com/openebs/dynamic-localpv-provisioner/blob/develop/docs/quickstart.md to provide dynamic provision volume with storageClassName: openebs-hostpath -# storageClassName: "dynamic-blob-storage" -# resources: -# requests: -# storage: 1Gi -# kubernetesModeServiceAccount: -# annotations: +containerMode: + type: "kubernetes" ## type can be set to dind or kubernetes + ## the following is required when containerMode.type=kubernetes + kubernetesModeWorkVolumeClaim: + accessModes: ["ReadWriteOnce"] + # For local testing, use https://github.com/openebs/dynamic-localpv-provisioner/blob/develop/docs/quickstart.md to provide dynamic provision volume with storageClassName: openebs-hostpath + storageClassName: "openebs-hostpath" + resources: + requests: + storage: 1Gi + kubernetesModeServiceAccount: + annotations: ## template is the PodSpec for each listener Pod ## For reference: https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#PodSpec -- cgit mrf-deployment