diff options
| author | Taras Madan <tarasmadan@google.com> | 2024-02-27 11:21:36 +0100 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2024-02-27 15:10:32 +0000 |
| commit | d367cbe5791e415abaed06819481019104eaf42a (patch) | |
| tree | 12a2087c15817d81341d3a748e415ff8ebcfa867 | |
| parent | 68bf9f15f88b6fdde9ccde722beaf4d15d6d277d (diff) | |
.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.
| -rw-r--r-- | .github/arc_config/values.yaml | 29 |
1 files changed, 16 insertions, 13 deletions
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 |
