Skip to content

Commit

Permalink
Update comments and run scripts/helm-docs.sh to update the README.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterguy committed Jan 17, 2025
1 parent c5c4eb6 commit 6c28348
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/sourcegraph-executor/k8s/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ In addition to the documented values, the `executor` and `private-docker-registr
| executor.kubernetesJob.resources.limits.memory | string | `"12Gi"` | The maximum memory for a job. |
| executor.kubernetesJob.resources.requests.cpu | string | `""` | The requested CPU for a job. |
| executor.kubernetesJob.resources.requests.memory | string | `"1Gi"` | The requested memory for a job. |
| executor.kubernetesJob.runAsGroup | int | `-1` | The group ID to run Kubernetes jobs as. |
| executor.kubernetesJob.runAsUser | int | `-1` | The user ID to run Kubernetes jobs as. |
| executor.kubernetesJob.runAsGroup | int | `nil` | The group ID to run Kubernetes jobs as. |
| executor.kubernetesJob.runAsUser | int | `nil` | The user ID to run Kubernetes jobs as. |
| executor.log.format | string | `"condensed"` | |
| executor.log.level | string | `"warn"` | Possible values are `dbug`, `info`, `warn`, `eror`, `crit`. |
| executor.log.trace | string | `"false"` | |
Expand Down
10 changes: 4 additions & 6 deletions charts/sourcegraph-executor/k8s/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,10 @@ executor:
kubernetesJob:
# -- The number of seconds after which a Kubernetes job will be terminated.
deadline: "1200"
# -- The user ID to run Kubernetes jobs as.
# -- Set only if used. The `sourcegraph` UID is 100.
# runAsUser: 100
# -- The group ID to run Kubernetes jobs as.
# -- Set only if used. The `sourcegraph` GID is 101.
# runAsGroup: 101
# -- (int) The user ID to run Kubernetes jobs as.
runAsUser:
# -- (int) The group ID to run Kubernetes jobs as.
runAsGroup:
# -- The group ID which is set on the job PVC file system.
fsGroup: "1000"
resources:
Expand Down

0 comments on commit 6c28348

Please sign in to comment.