initial commit
This commit is contained in:
70
namespaces/git/gitea-chart.yml
Normal file
70
namespaces/git/gitea-chart.yml
Normal file
@@ -0,0 +1,70 @@
|
||||
# helm repo add gitea-charts https://dl.gitea.io/charts/
|
||||
# helm install gitea gitea-charts/gitea
|
||||
apiVersion: helm.cattle.io/v1
|
||||
kind: HelmChart
|
||||
metadata:
|
||||
name: gitea
|
||||
namespace: git
|
||||
spec:
|
||||
chart: gitea
|
||||
targetNamespace: git
|
||||
repo: https://dl.gitea.io/charts/
|
||||
version: 9.5.0
|
||||
valuesContent: |-
|
||||
resources:
|
||||
limits:
|
||||
cpu: 200m
|
||||
memory: 256Mi
|
||||
requests:
|
||||
cpu: 200m
|
||||
memory: 256Mi
|
||||
redis-cluster:
|
||||
enabled: false
|
||||
postgresql:
|
||||
enabled: true
|
||||
postgresql-ha:
|
||||
enabled: false
|
||||
persistence:
|
||||
enabled: true
|
||||
gitea:
|
||||
metrics:
|
||||
enabled: true
|
||||
serviceMonitor:
|
||||
enabled: true
|
||||
config:
|
||||
picture:
|
||||
ENABLE_FEDERATED_AVATAR: false
|
||||
DISABLE_GRAVATAR: true
|
||||
ui:
|
||||
DEFAULT_THEME: arc-green
|
||||
server:
|
||||
ENABLE_PPROF: true
|
||||
database:
|
||||
DB_TYPE: postgres
|
||||
session:
|
||||
PROVIDER: db
|
||||
cache:
|
||||
ADAPTER: memory
|
||||
queue:
|
||||
TYPE: level
|
||||
indexer:
|
||||
ISSUE_INDEXER_TYPE: bleve
|
||||
REPO_INDEXER_ENABLED: true
|
||||
webhook:
|
||||
ALLOWED_HOST_LIST: "external,loopback"
|
||||
service:
|
||||
ssh:
|
||||
port: 22
|
||||
annotations:
|
||||
metallb.universe.tf/allow-shared-ip: test
|
||||
ingress:
|
||||
enabled: true
|
||||
className: nginx
|
||||
hosts:
|
||||
- host: git.keligrubb.com
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
persistence:
|
||||
storageClass: longhorn
|
||||
size: 64Gi
|
||||
4
namespaces/git/namespace.yml
Normal file
4
namespaces/git/namespace.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
kind: Namespace
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: git
|
||||
39
namespaces/git/woodpecker-chart.yml
Normal file
39
namespaces/git/woodpecker-chart.yml
Normal file
@@ -0,0 +1,39 @@
|
||||
apiVersion: helm.cattle.io/v1
|
||||
kind: HelmChart
|
||||
metadata:
|
||||
name: woodpecker
|
||||
namespace: git
|
||||
spec:
|
||||
chart: woodpecker
|
||||
targetNamespace: git
|
||||
repo: https://woodpecker-ci.org/
|
||||
version: 0.4.2
|
||||
valuesContent: |-
|
||||
server:
|
||||
image:
|
||||
tag: v1.0.3
|
||||
env:
|
||||
WOODPECKER_ADMIN: kgrubb
|
||||
WOODPECKER_GITEA: true
|
||||
WOODPECKER_GITEA_URL: http://git.keligrubb.com
|
||||
WOODPECKER_GITEA_SKIP_VERIFY: true
|
||||
WOODPECKER_HOST: http://ci.keligrubb.com
|
||||
WOODPECKER_ORGS: homestead
|
||||
extraSecretNamesForEnvFrom:
|
||||
- woodpecker-gitea-client
|
||||
- woodpecker-gitea-secret
|
||||
ingress:
|
||||
enabled: true
|
||||
ingressClassName: nginx
|
||||
hosts:
|
||||
- host: ci.keligrubb.com
|
||||
paths:
|
||||
- path: /
|
||||
backend:
|
||||
serviceName: ci.keligrubb.com
|
||||
servicePort: 80
|
||||
agent:
|
||||
image:
|
||||
tag: v1.0.3
|
||||
env:
|
||||
WOODPECKER_GITEA: true
|
||||
Reference in New Issue
Block a user