mirror of
https://github.com/nold360/hive-apps
synced 2025-01-03 12:11:16 +00:00
fix(woodpecker)
This commit is contained in:
parent
79681adc35
commit
368791aebc
3 changed files with 12 additions and 14 deletions
|
@ -1,7 +1,7 @@
|
||||||
config:
|
config:
|
||||||
description: Woodpecker-CI
|
description: Woodpecker-CI
|
||||||
repoURL: https://woodpecker-ci.org
|
repoURL: https://github.com/woodpecker-ci/helm
|
||||||
targetRevision: v0.15.5
|
targetRevision: main
|
||||||
|
|
||||||
networkPolicy:
|
networkPolicy:
|
||||||
groups:
|
groups:
|
||||||
|
@ -13,7 +13,7 @@ config:
|
||||||
|
|
||||||
apps:
|
apps:
|
||||||
- name: woodpecker-server
|
- name: woodpecker-server
|
||||||
chart: woodpecker-server
|
path: charts/server
|
||||||
secrets:
|
secrets:
|
||||||
- name: github-oauth
|
- name: github-oauth
|
||||||
keys:
|
keys:
|
||||||
|
@ -25,7 +25,7 @@ apps:
|
||||||
|
|
||||||
- name: woodpecker-agent
|
- name: woodpecker-agent
|
||||||
namespace: woodpecker-agent
|
namespace: woodpecker-agent
|
||||||
chart: woodpecker-agent
|
path: charts/agent
|
||||||
secrets:
|
secrets:
|
||||||
- name: woodpecker-secret
|
- name: woodpecker-secret
|
||||||
fromApp: woodpecker-server
|
fromApp: woodpecker-server
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
replicaCount: 3
|
replicaCount: 2
|
||||||
|
|
||||||
image:
|
image:
|
||||||
registry: docker.io
|
registry: docker.io
|
||||||
repository: woodpeckerci/woodpecker-agent
|
repository: woodpeckerci/woodpecker-agent
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
|
||||||
tag: "next"
|
tag: "next"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -7,6 +7,9 @@ image:
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
tag: "next"
|
tag: "next"
|
||||||
|
|
||||||
|
dind:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
env:
|
env:
|
||||||
WOODPECKER_OPEN: "false"
|
WOODPECKER_OPEN: "false"
|
||||||
WOODPECKER_ADMIN: "Nold360"
|
WOODPECKER_ADMIN: "Nold360"
|
||||||
|
@ -18,8 +21,8 @@ env:
|
||||||
HTTPS_PROXY: http://proxy-squid.proxy.svc.cluster.local:3128
|
HTTPS_PROXY: http://proxy-squid.proxy.svc.cluster.local:3128
|
||||||
http_proxy: http://proxy-squid.proxy.svc.cluster.local:3128
|
http_proxy: http://proxy-squid.proxy.svc.cluster.local:3128
|
||||||
https_proxy: http://proxy-squid.proxy.svc.cluster.local:3128
|
https_proxy: http://proxy-squid.proxy.svc.cluster.local:3128
|
||||||
NO_PROXY: localhost,.cluster.local
|
NO_PROXY: localhost,.cluster.local,10.43.0.1
|
||||||
no_proxy: localhost,.cluster.local
|
no_proxy: localhost,.cluster.local,10.43.0.1
|
||||||
|
|
||||||
|
|
||||||
extraSecretNamesForEnvFrom:
|
extraSecretNamesForEnvFrom:
|
||||||
|
@ -32,8 +35,6 @@ persistentVolume:
|
||||||
mountPath: "/var/lib/woodpecker"
|
mountPath: "/var/lib/woodpecker"
|
||||||
storageClass: "local-path"
|
storageClass: "local-path"
|
||||||
|
|
||||||
podAnnotations: {}
|
|
||||||
|
|
||||||
podSecurityContext:
|
podSecurityContext:
|
||||||
fsGroup: 2000
|
fsGroup: 2000
|
||||||
|
|
||||||
|
@ -51,13 +52,11 @@ service:
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
ingressClassName: ingress-external-traefik
|
ingressClassName: ingress-external
|
||||||
labels:
|
labels:
|
||||||
environment: external
|
environment: external
|
||||||
annotations:
|
annotations:
|
||||||
kubernetes.io/tls-acme: "true"
|
kubernetes.io/tls-acme: "true"
|
||||||
kubernetes.io/ingress.class: ingress-external
|
|
||||||
traefik.ingress.kubernetes.io/router.tls: 'true'
|
|
||||||
cert-manager.io/cluster-issuer: letsencrypt
|
cert-manager.io/cluster-issuer: letsencrypt
|
||||||
external-dns.alpha.kubernetes.io/hostname: ci.nold.in
|
external-dns.alpha.kubernetes.io/hostname: ci.nold.in
|
||||||
external-dns.alpha.kubernetes.io/target: nold.in
|
external-dns.alpha.kubernetes.io/target: nold.in
|
||||||
|
|
Loading…
Reference in a new issue