You've already forked drone-charts
Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
43b844efd5
|
|||
96f609652c
|
|||
8614ca8e89
|
|||
2026906827 | |||
608605320e | |||
12db483afe | |||
0370c865c4 | |||
548e37f758 | |||
aae4092f7b
|
|||
c93bc34fc7
|
|||
ac72d688ea
|
10
.drone.yml
10
.drone.yml
@ -11,7 +11,7 @@ steps:
|
||||
- name: helm lint
|
||||
commands:
|
||||
- helm lint
|
||||
image: docker.io/volkerraschek/helm:3.9.4
|
||||
image: docker.io/volkerraschek/helm:3.10.2
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
@ -29,7 +29,7 @@ steps:
|
||||
- name: helm template
|
||||
commands:
|
||||
- helm template .
|
||||
image: docker.io/volkerraschek/helm:3.9.4
|
||||
image: docker.io/volkerraschek/helm:3.10.2
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
@ -73,15 +73,15 @@ platform:
|
||||
steps:
|
||||
- name: release-helm-chart
|
||||
commands:
|
||||
- helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
|
||||
- helm repo add drone https://charts.cryptic.systems/drone
|
||||
- helm package --version ${DRONE_TAG} .
|
||||
- helm cm-push ${DRONE_REPO_NAME%-charts}-${DRONE_TAG}.tgz volker.raschek
|
||||
- helm cm-push ${DRONE_REPO_NAME%-charts}-${DRONE_TAG}.tgz drone
|
||||
environment:
|
||||
HELM_REPO_PASSWORD:
|
||||
from_secret: helm_repo_password
|
||||
HELM_REPO_USERNAME:
|
||||
from_secret: helm_repo_username
|
||||
image: docker.io/volkerraschek/helm:3.9.4
|
||||
image: docker.io/volkerraschek/helm:3.10.2
|
||||
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
|
||||
|
31
README.md
31
README.md
@ -1,26 +1,39 @@
|
||||
# drone-charts
|
||||
|
||||
[](https://drone.cryptic.systems/volker.raschek/drone-charts)
|
||||
[](https://artifacthub.io/packages/search?repo=volker-raschek)
|
||||
[](https://artifacthub.io/packages/search?repo=drone-ce)
|
||||
|
||||
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:
|
||||
|
||||
> The repository has been changed and causes error messages when interacting
|
||||
> with the old repository definition. Please remove the chart repo
|
||||
> `volker.raschek` and replace it with `drone`.
|
||||
|
||||
```bash
|
||||
helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
|
||||
helm install drone volker.raschek/drone
|
||||
helm repo add drone https://charts.cryptic.systems/drone
|
||||
helm install drone drone/drone
|
||||
```
|
||||
|
||||
## Customization
|
||||
|
||||
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 drone/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 |
|
||||
| ------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
|
12
values.yaml
12
values.yaml
@ -16,12 +16,10 @@ podAnnotations: {}
|
||||
|
||||
podPriorityClassName: ""
|
||||
|
||||
podSecurityContext:
|
||||
{}
|
||||
podSecurityContext: {}
|
||||
# fsGroup: 2000
|
||||
|
||||
securityContext:
|
||||
{}
|
||||
securityContext: {}
|
||||
# capabilities:
|
||||
# drop:
|
||||
# - ALL
|
||||
@ -29,8 +27,7 @@ securityContext:
|
||||
# runAsNonRoot: true
|
||||
# runAsUser: 1000
|
||||
|
||||
config:
|
||||
{}
|
||||
config: {}
|
||||
# DRONE_BITBUCKET_CLIENT_ID
|
||||
# String value. Configures the Bitbucket OAuth client id. This is used to
|
||||
# authorize access to Bitbucket on behalf of a Drone user.
|
||||
@ -556,8 +553,7 @@ ingress:
|
||||
hosts:
|
||||
- "your-hostname"
|
||||
|
||||
resources:
|
||||
{}
|
||||
resources: {}
|
||||
# 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
|
||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||
|
Reference in New Issue
Block a user