feat: support extraVolumes and extraVolumeMounts
This commit is contained in:
parent
6f36f2b794
commit
04e6d2214c
@ -30,12 +30,23 @@ spec:
|
|||||||
- name: http
|
- name: http
|
||||||
containerPort: 80
|
containerPort: 80
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
- name: https
|
||||||
|
containerPort: 443
|
||||||
|
protocol: TCP
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
{{- if .Values.config.DRONE_DATABASE_DRIVER | default "sqlite3" | eq "sqlite3" }}
|
{{- if .Values.config.DRONE_DATABASE_DRIVER | default "sqlite3" | eq "sqlite3" }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: {{ default "/data/database.sqlite" .Values.config.DRONE_DATABASE_DATASOURCE | dir }}
|
mountPath: {{ default "/data/database.sqlite" .Values.config.DRONE_DATABASE_DATASOURCE | dir }}
|
||||||
|
{{- with .Values.extraVolumeMounts }}
|
||||||
|
{{- toYaml . | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- else }}
|
||||||
|
{{- with .Values.extraVolumeMounts }}
|
||||||
|
volumeMounts:
|
||||||
|
{{- toYaml . | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.affinity }}
|
{{- with .Values.affinity }}
|
||||||
affinity:
|
affinity:
|
||||||
@ -66,9 +77,20 @@ spec:
|
|||||||
{{- with .Values.persistence.existingClaim }}
|
{{- with .Values.persistence.existingClaim }}
|
||||||
claimName: {{ tpl . $ }}
|
claimName: {{ tpl . $ }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.extraVolumes }}
|
||||||
|
{{- toYaml . | nindent 6 }}
|
||||||
|
{{- end }}
|
||||||
{{- else if and (.Values.config.DRONE_DATABASE_DRIVER | default "sqlite3" | eq "sqlite3") (not .Values.persistence.existingClaim) }}
|
{{- else if and (.Values.config.DRONE_DATABASE_DRIVER | default "sqlite3" | eq "sqlite3") (not .Values.persistence.existingClaim) }}
|
||||||
volumes:
|
volumes:
|
||||||
- name: data
|
- name: data
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: {{ include "drone.fullname" . }}
|
claimName: {{ include "drone.fullname" . }}
|
||||||
|
{{- with .Values.extraVolumes }}
|
||||||
|
{{- toYaml . | nindent 6 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- else }}
|
||||||
|
{{- with .Values.extraVolumes }}
|
||||||
|
volumes:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
@ -12,8 +12,8 @@ spec:
|
|||||||
type: {{ .Values.service.type }}
|
type: {{ .Values.service.type }}
|
||||||
ports:
|
ports:
|
||||||
- port: {{ .Values.service.port }}
|
- port: {{ .Values.service.port }}
|
||||||
targetPort: http
|
targetPort: {{ .Values.config.DRONE_SERVER_PROTO | default "http" }}
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
name: http
|
name: {{ .Values.config.DRONE_SERVER_PROTO | default "http" }}
|
||||||
selector:
|
selector:
|
||||||
{{- include "drone.selectorLabels" . | nindent 4 }}
|
{{- include "drone.selectorLabels" . | nindent 4 }}
|
||||||
|
32
values.yaml
32
values.yaml
@ -575,3 +575,35 @@ persistence:
|
|||||||
labels: {}
|
labels: {}
|
||||||
annotation: {}
|
annotation: {}
|
||||||
# storageClass:
|
# storageClass:
|
||||||
|
|
||||||
|
# extra volumes for the pod
|
||||||
|
extraVolumes: {}
|
||||||
|
# The following example mount the same secret, which contains tls certificates
|
||||||
|
# under different names. Each volume mount contains only selected items of the
|
||||||
|
# secret. This make it easier to place the items on different locations inside the
|
||||||
|
# container filesystem via extraVolumeMounts.
|
||||||
|
# - name: custom-ca-anchor
|
||||||
|
# secret:
|
||||||
|
# secretName: drone-custom-tls-certificates
|
||||||
|
# items:
|
||||||
|
# - key: ca.crt
|
||||||
|
# path: ca.crt
|
||||||
|
# mode: 0444
|
||||||
|
# - name: custom-tls-certificates
|
||||||
|
# secret:
|
||||||
|
# secretName: drone-custom-tls-certificates
|
||||||
|
# items:
|
||||||
|
# - key: tls.key
|
||||||
|
# path: tls.key
|
||||||
|
# mode: 0400
|
||||||
|
# - key: tls.crt
|
||||||
|
# path: tls.crt
|
||||||
|
# mode: 0444
|
||||||
|
|
||||||
|
extraVolumeMounts: {}
|
||||||
|
# The following example follows the example of extraVolumes and mounts the
|
||||||
|
# volumes to the corresponding paths in the container filesystem.
|
||||||
|
# - name: custom-ca-anchor
|
||||||
|
# mountPath: /usr/local/share/ca-certificates
|
||||||
|
# - name: custom-tls-certificates
|
||||||
|
# mountPath: /etc/drone/tls
|
Loading…
Reference in New Issue
Block a user