You've already forked drone-charts
Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
608605320e | |||
12db483afe | |||
0370c865c4 | |||
548e37f758 | |||
aae4092f7b
|
|||
c93bc34fc7
|
|||
ac72d688ea
|
|||
fdb778896c
|
|||
cb6a5021c8 | |||
d26bfdea13 | |||
6547aee98e | |||
b774b08dec |
@ -11,7 +11,7 @@ steps:
|
||||
- name: helm lint
|
||||
commands:
|
||||
- helm lint
|
||||
image: docker.io/volkerraschek/helm:3.9.2
|
||||
image: docker.io/volkerraschek/helm:3.10.1
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
@ -20,7 +20,7 @@ steps:
|
||||
- name: markdown lint
|
||||
commands:
|
||||
- markdownlint *.md
|
||||
image: docker.io/volkerraschek/markdownlint:0.32.1
|
||||
image: docker.io/volkerraschek/markdownlint:0.32.2
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
@ -29,7 +29,7 @@ steps:
|
||||
- name: helm template
|
||||
commands:
|
||||
- helm template .
|
||||
image: docker.io/volkerraschek/helm:3.9.2
|
||||
image: docker.io/volkerraschek/helm:3.10.1
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
@ -81,7 +81,7 @@ steps:
|
||||
from_secret: helm_repo_password
|
||||
HELM_REPO_USERNAME:
|
||||
from_secret: helm_repo_username
|
||||
image: docker.io/volkerraschek/helm:3.9.2
|
||||
image: docker.io/volkerraschek/helm:3.10.1
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
|
@ -3,15 +3,16 @@ name: drone
|
||||
description: Drone Helm chart for Kubernetes
|
||||
type: application
|
||||
version: "0.7.1"
|
||||
appVersion: "2.12.1"
|
||||
appVersion: "2.15.0"
|
||||
icon: https://readme.drone.io/logo.svg
|
||||
|
||||
keywords:
|
||||
- git
|
||||
- continuous-delivery
|
||||
- continuous-deployment
|
||||
- continuous-integration
|
||||
- drone
|
||||
- drone-runner
|
||||
- ci
|
||||
- cd
|
||||
- git
|
||||
|
||||
sources:
|
||||
- https://github.com/volker-raschek/drone-charts
|
||||
|
21
README.md
21
README.md
@ -4,12 +4,11 @@
|
||||
[](https://artifacthub.io/packages/search?repo=volker-raschek)
|
||||
|
||||
This is an inofficial helm chart for [drone](https://github.com/drone/drone) and
|
||||
should replace the official unmainted helm chart
|
||||
[repository](https://github.com/drone/charts). The official does not support
|
||||
version `v2` of drone.
|
||||
was created because the official helmet chart was not maintained for a long
|
||||
time - [Issue](https://github.com/drone/charts/issues/46).
|
||||
|
||||
This helm chart can be found on [artifacthub.io](https://artifacthub.io/) and
|
||||
can be installed via helm.
|
||||
This helm chart is maintained by contributors and myself. It is listed on
|
||||
[artifacthub.io](https://artifacthub.io/) and can be installed via helm:
|
||||
|
||||
```bash
|
||||
helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
|
||||
@ -20,7 +19,17 @@ helm install drone volker.raschek/drone
|
||||
|
||||
All [configuration options](https://docs.drone.io/server/reference/) can be
|
||||
defined in the `values.yml` file below the `config` section. Alternatively can
|
||||
be the options passed via the `--set` flag of the `helm install` command.
|
||||
be the options passed via the `--set` flag of the `helm install` command. For
|
||||
example:
|
||||
|
||||
```bash
|
||||
helm install drone volker.raschek/drone \
|
||||
--set config.DRONE_RPC_SECRET-${DRONE_RPC_SECRET} \
|
||||
--set config.DRONE_GITHUB_CLIENT_ID=${DRONE_GITHUB_CLIENT_ID} \
|
||||
--set config.DRONE_GITHUB_CLIENT_SECRET=${DRONE_GITHUB_CLIENT_SECRET}
|
||||
```
|
||||
|
||||
### List of config options
|
||||
|
||||
| value | reference |
|
||||
| ------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
|
@ -1,3 +1,4 @@
|
||||
{{- if .Values.persistence.enabled -}}
|
||||
{{ if and (.Values.config.DRONE_DATABASE_DRIVER | default "sqlite3" | eq "sqlite3") (not .Values.persistence.existingClaim) }}
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
@ -15,3 +16,4 @@ spec:
|
||||
storageClassName: {{ .Values.persistence.storageClass | quote }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end -}}
|
||||
|
19
values.yaml
19
values.yaml
@ -2,8 +2,6 @@
|
||||
# This is a YAML-formatted file.
|
||||
# Declare variables to be passed into your templates.
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
repository: docker.io/drone/drone
|
||||
pullPolicy: IfNotPresent
|
||||
@ -546,14 +544,14 @@ ingress:
|
||||
# cert-manager.io/issuer:
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
- host: "your-hostname"
|
||||
paths:
|
||||
- path: /
|
||||
pathType: ImplementationSpecific
|
||||
- host: "your-hostname"
|
||||
paths:
|
||||
- path: /
|
||||
pathType: ImplementationSpecific
|
||||
tls:
|
||||
- secretName: "your-tls-secret"
|
||||
hosts:
|
||||
- "your-hostname"
|
||||
- secretName: "your-tls-secret"
|
||||
hosts:
|
||||
- "your-hostname"
|
||||
|
||||
resources: {}
|
||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||
@ -576,11 +574,12 @@ affinity: {}
|
||||
# persistence is only required when config.DATABASE_DRIVER is sqlite3 or
|
||||
# undefined.
|
||||
persistence:
|
||||
enabled: true
|
||||
annotation: {}
|
||||
# existingClaim:
|
||||
size: 5Gi
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
- ReadWriteOnce
|
||||
labels: {}
|
||||
# storageClass:
|
||||
|
||||
|
Reference in New Issue
Block a user