40 lines
783 B
YAML
40 lines
783 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: gitea
|
|
|
|
helmGlobals:
|
|
chartHome: .helm/charts
|
|
|
|
helmCharts:
|
|
- name: gitea
|
|
repo: https://dl.gitea.com/charts/
|
|
version: 12.7.0
|
|
releaseName: gitea
|
|
namespace: gitea
|
|
valuesFile: values/baseline.yaml
|
|
additionalValuesFiles:
|
|
- values/oidc.yaml
|
|
includeCRDs: false
|
|
skipTests: true
|
|
|
|
resources:
|
|
- ../../base
|
|
- ../../branding
|
|
- network-policy.yaml
|
|
|
|
patches:
|
|
- path: patches/servicemonitor-job-label-patch.yaml
|
|
target:
|
|
group: monitoring.coreos.com
|
|
version: v1
|
|
kind: ServiceMonitor
|
|
name: gitea
|
|
namespace: gitea
|
|
- path: patches/delete-ssh-service.yaml
|
|
target:
|
|
group: ""
|
|
version: v1
|
|
kind: Service
|
|
name: gitea-ssh
|