Skip to content
Snippets Groups Projects
Verified Commit f416e437 authored by Louis's avatar Louis :fire:
Browse files

[Woodpecker CI] Add basic yaml docs to values.yaml

parent 8f30a0ce
No related branches found
No related tags found
No related merge requests found
*.tgz
\ No newline at end of file
...@@ -3,8 +3,8 @@ type: application ...@@ -3,8 +3,8 @@ type: application
name: woodpecker-ci name: woodpecker-ci
description: Woodpecker is a simple CI engine with great extensibility. description: Woodpecker is a simple CI engine with great extensibility.
icon: 'https://helm-forks.s3.eu-west-2.amazonaws.com/icons/woodpecker-ci.png' icon: https://helm-forks.s3.eu-west-2.amazonaws.com/icons/woodpecker-ci.png
version: 0.2.0 version: 0.2.1
appVersion: "0.15.1" appVersion: "0.15.1"
...@@ -4,6 +4,7 @@ fullnameOverride: "" ...@@ -4,6 +4,7 @@ fullnameOverride: ""
## clusterDns will be used by the agents to locate the server service ## clusterDns will be used by the agents to locate the server service
clusterDns: "svc.cluster.local" clusterDns: "svc.cluster.local"
## @section Common Values
## Configuration values shared by the server and agent pods ## Configuration values shared by the server and agent pods
common: common:
environment: environment:
...@@ -20,6 +21,7 @@ common: ...@@ -20,6 +21,7 @@ common:
# WOODPECKER_ADMIN: user1,user2 # WOODPECKER_ADMIN: user1,user2
# OTHER_VAR: some_value # OTHER_VAR: some_value
## @section Server Configuration
## The server provides the UI and C&C capabilities of the woodpecker instance ## The server provides the UI and C&C capabilities of the woodpecker instance
server: server:
image: image:
...@@ -59,6 +61,7 @@ server: ...@@ -59,6 +61,7 @@ server:
- path: / - path: /
pathType: ImplementationSpecific pathType: ImplementationSpecific
## @section Agent Configuration
## Agents run the actual build pipelines, and communicate back to the server instance. ## Agents run the actual build pipelines, and communicate back to the server instance.
## The amount of build parallelism is equal to R x P, where R is the number of replicas ## The amount of build parallelism is equal to R x P, where R is the number of replicas
## (number of pods) and P is the parallelism of each pod (number of concurrent builds each ## (number of pods) and P is the parallelism of each pod (number of concurrent builds each
...@@ -84,6 +87,7 @@ agent: ...@@ -84,6 +87,7 @@ agent:
cpu: 1 cpu: 1
memory: 2Gi memory: 2Gi
## @skip resources
resources: {} resources: {}
## We usually recommend not to specify default resources and to leave this as a conscious ## We usually recommend not to specify default resources and to leave this as a conscious
## choice for the user. This also increases chances charts run on environments with little ## choice for the user. This also increases chances charts run on environments with little
...@@ -96,7 +100,7 @@ resources: {} ...@@ -96,7 +100,7 @@ resources: {}
# cpu: 100m # cpu: 100m
# memory: 128Mi # memory: 128Mi
## @skip serviceAccount
serviceAccount: serviceAccount:
## Specifies whether a service account should be created ## Specifies whether a service account should be created
create: true create: true
...@@ -106,11 +110,14 @@ serviceAccount: ...@@ -106,11 +110,14 @@ serviceAccount:
## If not set and create is true, a name is generated using the fullname template ## If not set and create is true, a name is generated using the fullname template
name: "" name: ""
## @skip podAnnotations
podAnnotations: {} podAnnotations: {}
## @skip podSecurityContext
podSecurityContext: {} podSecurityContext: {}
# fsGroup: 2000 # fsGroup: 2000
## @skip securityContext
securityContext: {} securityContext: {}
# capabilities: # capabilities:
# drop: # drop:
...@@ -119,8 +126,11 @@ securityContext: {} ...@@ -119,8 +126,11 @@ securityContext: {}
# runAsNonRoot: true # runAsNonRoot: true
# runAsUser: 1000 # runAsUser: 1000
## @skip nodeSelector
nodeSelector: {} nodeSelector: {}
## @skip tolerations
tolerations: [] tolerations: []
## @skip affinity
affinity: {} affinity: {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment