23 Commits
0.5.0 ... 0.5.3

Author SHA1 Message Date
43e5e1135e fix(README): add note about changed chart repo
All checks were successful
continuous-integration/drone/push Build is passing
2022-12-13 21:32:08 +01:00
2eaa818ab9 fix(README): add note about changed chart repo
Some checks reported errors
continuous-integration/drone/push Build was killed
2022-12-13 21:29:21 +01:00
c1f608b086 fix: change repository
All checks were successful
continuous-integration/drone/push Build is passing
2022-12-13 21:06:08 +01:00
db7d69e2aa chore(deps): update dependency docker.io/volkerraschek/helm to v3.10.2
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-11-22 18:33:49 +01:00
04194e5a18 chore(deps): update dependency docker.io/volkerraschek/helm to v3.10.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-10-16 13:11:55 +02:00
444e0b5934 chore(deps): update dependency docker.io/volkerraschek/helm to v3.10.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-09-21 21:52:32 +02:00
d3fe125661 chore(deps): update dependency docker.io/volkerraschek/helm to v3.9.4
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-08-30 18:52:16 +02:00
d8f500a92a chore(deps): update dependency docker.io/volkerraschek/markdownlint to v0.32.2
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-08-21 16:55:07 +02:00
f578d8bec0 fix(ci): use docker.io/volkerraschek/drone-email:0.1.1
All checks were successful
continuous-integration/drone/push Build is passing
2022-07-26 17:50:17 +02:00
54de055eb3 chore(deps): update dependency docker.io/volkerraschek/markdownlint to v0.32.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-07-25 13:24:06 +02:00
ef7d40283e chore(deps): update dependency docker.io/volkerraschek/helm to v3.9.2
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-07-23 10:41:27 +02:00
29375b7fdb chore(deps): update dependency docker.io/volkerraschek/markdownlint to v0.32.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-07-18 11:13:32 +02:00
eb1e5fdcc1 chore(deps): update dependency docker.io/volkerraschek/helm to v3.9.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-07-14 18:31:29 +02:00
bda3b8053d fix(ci): helm template
All checks were successful
continuous-integration/drone/push Build is passing
2022-06-26 18:16:24 +02:00
e3155c9223 Merge pull request 'chore(deps): update dependency docker.io/volkerraschek/helm to v3.9.0' (#9) from renovate/docker.io-volkerraschek-helm-3.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #9
2022-05-24 20:47:20 +00:00
ea2ca22e7c fix: mounting of env var file
All checks were successful
continuous-integration/drone/push Build is passing
2022-05-24 22:44:04 +02:00
cfd5890a1c chore(deps): update dependency docker.io/volkerraschek/helm to v3.9.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-05-24 08:54:13 +02:00
1c94c9de06 fix(ci): resource limits
All checks were successful
continuous-integration/drone/push Build is passing
2022-05-21 11:27:35 +02:00
8d67cc291f chore(deps): update dependency docker.io/volkerraschek/helm to v3.8.2
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-05-11 10:31:26 +02:00
3dcd0742a3 fix: helm lint error: mapping values are not allowed
All checks were successful
continuous-integration/drone/push Build is passing
2022-05-10 08:55:06 +02:00
f6e9e6bce7 Merge pull request #3 from vickunwu/patch-1
Some checks failed
continuous-integration/drone/push Build is failing
[fix]utilize the 'replicaCount' variable in Values
2022-05-10 08:29:36 +02:00
c2188e6838 [fix]utilize the 'replicaCount' variable in Values 2022-05-09 16:55:54 +08:00
e41ee3cd47 fix(drone): remove sync via drone - use instead gitea push feature
All checks were successful
continuous-integration/drone/push Build is passing
2022-04-19 22:29:22 +02:00
5 changed files with 48 additions and 80 deletions

View File

@ -11,7 +11,7 @@ steps:
- name: helm lint - name: helm lint
commands: commands:
- helm lint - helm lint
image: docker.io/volkerraschek/helm:3.8.1 image: docker.io/volkerraschek/helm:3.10.2
resources: resources:
limits: limits:
cpu: 50 cpu: 50
@ -20,27 +20,38 @@ steps:
- name: markdown lint - name: markdown lint
commands: commands:
- markdownlint *.md - markdownlint *.md
image: docker.io/volkerraschek/markdownlint:0.31.1 image: docker.io/volkerraschek/markdownlint:0.32.2
resources: resources:
limits: limits:
cpu: 50 cpu: 50
memory: 50M memory: 50M
- name: email-notification - name: helm template
environment: commands:
PLUGIN_HOST: - helm template .
from_secret: smtp_host image: docker.io/volkerraschek/helm:3.10.2
PLUGIN_USERNAME:
from_secret: smtp_username
PLUGIN_PASSWORD:
from_secret: smtp_password
PLUGIN_FROM:
from_secret: smtp_mail_address
image: docker.io/drillster/drone-email:latest
resources: resources:
limits: limits:
cpu: 50 cpu: 150
memory: 25M memory: 150M
- name: email-notification
environment:
SMTP_FROM_ADDRESS:
from_secret: smtp_from_address
SMTP_FROM_NAME:
from_secret: smtp_from_name
SMTP_HOST:
from_secret: smtp_host
SMTP_USERNAME:
from_secret: smtp_username
SMTP_PASSWORD:
from_secret: smtp_password
image: docker.io/volkerraschek/drone-email:0.1.1
resources:
limits:
cpu: 150
memory: 150M
when: when:
status: status:
- changed - changed
@ -52,7 +63,6 @@ trigger:
- tag - tag
--- ---
kind: pipeline kind: pipeline
type: kubernetes type: kubernetes
name: release name: release
@ -63,69 +73,22 @@ platform:
steps: steps:
- name: release-helm-chart - name: release-helm-chart
commands: 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 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: environment:
HELM_REPO_PASSWORD: HELM_REPO_PASSWORD:
from_secret: helm_repo_password from_secret: helm_repo_password
HELM_REPO_USERNAME: HELM_REPO_USERNAME:
from_secret: helm_repo_username from_secret: helm_repo_username
image: docker.io/volkerraschek/helm:3.8.1 image: docker.io/volkerraschek/helm:3.10.2
resources:
limits:
cpu: 150
memory: 150M
trigger: trigger:
event: event:
- tag - tag
repo: repo:
- volker.raschek/drone-runner-charts - volker.raschek/drone-runner-charts
---
kind: pipeline
type: kubernetes
name: sync
platform:
os: linux
arch: amd64
steps:
- name: github
image: docker.io/appleboy/drone-git-push:latest
resources:
limits:
cpu: 50
memory: 25M
settings:
branch: master
remote: ssh://git@github.com/volker-raschek/drone-runner-charts.git
force: true
ssh_key:
from_secret: ssh_key
- name: email-notification
environment:
PLUGIN_HOST:
from_secret: smtp_host
PLUGIN_USERNAME:
from_secret: smtp_username
PLUGIN_PASSWORD:
from_secret: smtp_password
PLUGIN_FROM:
from_secret: smtp_mail_address
image: docker.io/drillster/drone-email:latest
resources:
limits:
cpu: 50
memory: 25M
when:
status:
- changed
- failure
trigger:
branch:
- master
event:
- push
repo:
- volker.raschek/drone-runner-charts

View File

@ -1,19 +1,23 @@
# drone-charts # drone-charts
[![Build Status](https://drone.cryptic.systems/api/badges/volker.raschek/drone-runner-charts/status.svg)](https://drone.cryptic.systems/volker.raschek/drone-runner-charts) [![Build Status](https://drone.cryptic.systems/api/badges/volker.raschek/drone-runner-charts/status.svg)](https://drone.cryptic.systems/volker.raschek/drone-runner-charts)
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/volker-raschek)](https://artifacthub.io/packages/search?repo=volker-raschek) [![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/drone-ce)](https://artifacthub.io/packages/search?repo=drone-ce)
This is an inofficial helm chart for This is an inofficial helm chart for
[drone-runner](https://github.com/drone/drone-runner-kube) and should replace [drone-runner](https://github.com/drone/drone-runner-kube) and should replace
the official unmainted helm chart the official unmaintained helm chart
[repository](https://github.com/drone/drone-runner-kube). [repository](https://github.com/drone/drone-runner-kube).
This helm chart can be found on [artifacthub.io](https://artifacthub.io/) and This helm chart can be found on [artifacthub.io](https://artifacthub.io/) and
can be installed via helm. 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 ```bash
helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek helm repo add drone https://charts.cryptic.systems/drone
helm install drone volker.raschek/drone-runner helm install drone drone/drone-runner
``` ```
## Customization ## Customization

View File

@ -5,6 +5,7 @@ metadata:
labels: labels:
{{- include "droneRunner.labels" . | nindent 4 }} {{- include "droneRunner.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount | default 1 }}
selector: selector:
matchLabels: matchLabels:
{{- include "droneRunner.selectorLabels" . | nindent 6 }} {{- include "droneRunner.selectorLabels" . | nindent 6 }}
@ -37,7 +38,7 @@ spec:
{{- toYaml .Values.resources | nindent 12 }} {{- toYaml .Values.resources | nindent 12 }}
{{- if and (hasKey .Values.envFile "content") (hasKey .Values.config "DRONE_RUNNER_ENV_FILE") }} {{- if and (hasKey .Values.envFile "content") (hasKey .Values.config "DRONE_RUNNER_ENV_FILE") }}
volumeMounts: volumeMounts:
- name: env-file - name: custom-env-vars
mountPath: {{ dir .Values.config.DRONE_RUNNER_ENV_FILE }} mountPath: {{ dir .Values.config.DRONE_RUNNER_ENV_FILE }}
readOnly: true readOnly: true
{{- end}} {{- end}}
@ -59,10 +60,10 @@ spec:
{{- end }} {{- end }}
{{- if and (hasKey .Values.envFile "content") (hasKey .Values.config "DRONE_RUNNER_ENV_FILE") }} {{- if and (hasKey .Values.envFile "content") (hasKey .Values.config "DRONE_RUNNER_ENV_FILE") }}
volumes: volumes:
- name: env-file - name: custom-env-vars
configMap: configMap:
name: {{ include "droneRunner.fullname" . }} name: {{ include "droneRunner.fullname" . }}
items: items:
- key: {{ base .Values.config.DRONE_RUNNER_ENV_FILE }} - key: custom-env-vars
path: {{ base .Values.config.DRONE_RUNNER_ENV_FILE }} path: {{ base .Values.config.DRONE_RUNNER_ENV_FILE }}
{{- end}} {{- end}}

View File

@ -6,6 +6,6 @@ metadata:
{{- include "droneRunner.labels" . | nindent 4 }} {{- include "droneRunner.labels" . | nindent 4 }}
name: {{ include "droneRunner.fullname" . }} name: {{ include "droneRunner.fullname" . }}
data: data:
{{ base .Values.config.DRONE_RUNNER_ENV_FILE }}: | custom-env-vars: |
{{ .Values.envFile.content }} {{- .Values.envFile.content | nindent 4 }}
{{- end }} {{- end }}

View File

@ -337,7 +337,7 @@ config: {}
# DRONE_UI_USERNAME: "" # DRONE_UI_USERNAME: ""
envFile: {} envFile: {}
# content: | # content: |-
# KEY=VALUE # KEY=VALUE