You've already forked athens-proxy-charts
Compare commits
36 Commits
0.1.0
...
43f6c91ded
Author | SHA1 | Date | |
---|---|---|---|
43f6c91ded | |||
a241881e52 | |||
6a8e77bf9b | |||
56bf81d28a | |||
bba7e7b072 | |||
cfd08061ce | |||
7eccb13c44 | |||
2d4ffa692c | |||
7b9ee48c72 | |||
6886542c5d | |||
3daaf37885 | |||
2939d1d24e | |||
47914b0937 | |||
541cd3d9dd
|
|||
654b79be1e | |||
600a43d435 | |||
d96c6373ab
|
|||
4145524966 | |||
66a2488814 | |||
73bc0ab040 | |||
a3a7818691 | |||
f95c4eb3cd | |||
3887a8a365 | |||
ef0aacfa39 | |||
e9912721a8 | |||
4685124993 | |||
b4bfc9f25e | |||
8b769cc6e0 | |||
c6e41ee730 | |||
cb3dacf0ae
|
|||
136bb65085 | |||
f952ee0d12 | |||
b64651317b | |||
d3118548ca | |||
bcbaef562a
|
|||
19326d6da1 |
45
.drone.yml
45
.drone.yml
@ -3,15 +3,21 @@ kind: pipeline
|
||||
type: kubernetes
|
||||
name: linter
|
||||
|
||||
clone:
|
||||
disable: true
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
arch: amd64
|
||||
|
||||
steps:
|
||||
- name: clone
|
||||
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
||||
|
||||
- name: helm lint
|
||||
commands:
|
||||
- helm lint
|
||||
image: docker.io/volkerraschek/helm:3.9.0
|
||||
image: git.cryptic.systems/volker.raschek/helm:3.13.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
@ -20,7 +26,16 @@ steps:
|
||||
- name: markdown lint
|
||||
commands:
|
||||
- markdownlint *.md
|
||||
image: docker.io/volkerraschek/markdownlint:0.30.0
|
||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.37.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
memory: 150M
|
||||
|
||||
- name: helm template
|
||||
commands:
|
||||
- helm template .
|
||||
image: git.cryptic.systems/volker.raschek/helm:3.13.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
@ -28,19 +43,21 @@ steps:
|
||||
|
||||
- name: email-notification
|
||||
environment:
|
||||
PLUGIN_HOST:
|
||||
SMTP_FROM_ADDRESS:
|
||||
from_secret: smtp_from_address
|
||||
SMTP_FROM_NAME:
|
||||
from_secret: smtp_from_name
|
||||
SMTP_HOST:
|
||||
from_secret: smtp_host
|
||||
PLUGIN_USERNAME:
|
||||
SMTP_USERNAME:
|
||||
from_secret: smtp_username
|
||||
PLUGIN_PASSWORD:
|
||||
SMTP_PASSWORD:
|
||||
from_secret: smtp_password
|
||||
PLUGIN_FROM:
|
||||
from_secret: smtp_mail_address
|
||||
image: docker.io/drillster/drone-email:latest
|
||||
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50
|
||||
memory: 25M
|
||||
cpu: 150
|
||||
memory: 150M
|
||||
when:
|
||||
status:
|
||||
- changed
|
||||
@ -56,10 +73,16 @@ kind: pipeline
|
||||
type: kubernetes
|
||||
name: release
|
||||
|
||||
clone:
|
||||
disable: true
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
|
||||
steps:
|
||||
- name: clone
|
||||
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
||||
|
||||
- name: release-helm-chart
|
||||
commands:
|
||||
- helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
|
||||
@ -70,7 +93,7 @@ steps:
|
||||
from_secret: helm_repo_password
|
||||
HELM_REPO_USERNAME:
|
||||
from_secret: helm_repo_username
|
||||
image: docker.io/volkerraschek/helm:3.9.0
|
||||
image: git.cryptic.systems/volker.raschek/helm:3.13.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
|
@ -3,7 +3,7 @@ name: athens-proxy
|
||||
description: Athens proxy server for golang
|
||||
type: application
|
||||
version: "0.1.0"
|
||||
appVersion: "0.11.0"
|
||||
appVersion: "v0.12.1"
|
||||
icon: https://github.com/gomods/athens/blob/main/docs/static/banner.png?raw=true
|
||||
|
||||
keywords:
|
||||
|
@ -24,7 +24,7 @@ spec:
|
||||
name: {{ include "athens-proxy.fullname" . }}
|
||||
securityContext:
|
||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||
image: "{{ .Values.image.repository }}:v{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
|
Reference in New Issue
Block a user