Signed-off-by: Omega Zeng <omegazeng@gmail.com>
This commit is contained in:
Omega Zeng
2019-06-13 01:32:15 -07:00
committed by Kubernetes Prow Robot
parent 1cea58f5eb
commit 00fb906f94
4 changed files with 16 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: v1
name: drone
home: https://drone.io/
icon: https://drone.io/apple-touch-icon.png
version: 2.0.1
version: 2.0.2
appVersion: 1.1.0
description: Drone is a Continuous Delivery system built on container technology
keywords:
+1
View File
@@ -93,6 +93,7 @@ The following table lists the configurable parameters of the drone charts and th
| `server.schedulerName` | Drone **server** alternate scheduler name | `nil` |
| `server.affinity` | Drone **server** scheduling preferences | `{}` |
| `server.nodeSelector` | Drone **server** node labels for pod assignment | `{}` |
| `server.tolerations` | Drone **server** node taints to tolerate | `[]` |
| `server.extraContainers` | Additional sidecar containers | `""` |
| `server.extraVolumes` | Additional volumes for use in extraContainers | `""` |
| `agent.env` | Drone **agent** environment variables | `(default values)` |
@@ -37,6 +37,10 @@ spec:
{{- if .Values.server.nodeSelector }}
nodeSelector:
{{ toYaml .Values.server.nodeSelector | indent 8 }}
{{- end }}
{{- with .Values.server.tolerations }}
tolerations:
{{- toYaml . | nindent 6 }}
{{- end }}
serviceAccountName: {{ template "drone.serviceAccountName" . }}
containers:
+10
View File
@@ -192,6 +192,11 @@ server:
##
nodeSelector: {}
## Node taints to tolerate
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## additional siecar containers, e. g. for a database proxy, such as Google's cloudsql-proxy.
## ex: https://github.com/kubernetes/charts/tree/master/stable/keycloak
##
@@ -248,6 +253,11 @@ agent:
##
nodeSelector: {}
## Node taints to tolerate
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
dind:
## Enable or disable DinD
## If disabled, the drone agent will spawn docker containers on the host. Pay