forked from redhat-actions/openshift-actions-runner-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
57 lines (47 loc) · 1.84 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
appName: actions-runner
runnerImage: quay.io/redhat-github-actions/runner
runnerTag: v1.0.0
# GitHub organization or user. Required.
# If githubRepository is set, this must be the organization or user who owns that repository.
githubOwner: ""
# GitHub repository to install runners to. Can be omitted for an organization-level runner.
githubRepository: ""
# If you're using GitHub Enterprise, enter your company domain here.
# eg. github.mycompany.com
githubDomain: ""
# The name of the k8s secret to create.
secretName: "github-pat"
# The name of the key that points to the data within the secret.
# Modify this to store multiple PATs in one secret.
secretKey: "github-pat"
# The PAT itself - must be set if the secret is being created.
githubPat: ""
# Pass labels using array syntax, which is curly braces surrounding comma-separated items.
# --set runnerLabels="{ label1, label2 }" results in the labels "label1" and "label2".
runnerLabels: []
# Adjust replicas depending on your resources available,
# and how many jobs you want to run concurrently.
replicas: 1
serviceAccountName: default
# Adjust requests and limits depending on your resources,
# and how heavyweight your workloads are.
memoryRequest: "512Mi"
memoryLimit: "1Gi"
cpuRequest: "100m"
cpuLimit: "250m"
# Enable custom cluster PKI loading
# https://docs.openshift.com/container-platform/4.6/networking/configuring-a-custom-pki.html
clusterPKI: false
# You can inject arbitrary environment variables here:
runnerEnv:
# - name: ENV_VAR
# value: env_value
# or, through the command line:
# --set runnerEnv[0].name="ENV_VAR" --set runnerEnv[0].value="env_value"
## Proxy Configuration Example:
# - name: https_proxy
# value: http://proxy.example.com:9000
# - name: http_proxy
# value: http://proxy.example.com:9000
# - name: no_proxy
# value: localhost