22 lines
558 B
YAML
22 lines
558 B
YAML
# services/gitea/kustomization.yaml
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: gitea
|
|
resources:
|
|
- namespace.yaml
|
|
- serviceaccount.yaml
|
|
- pvc.yaml
|
|
- deployment.yaml
|
|
- service.yaml
|
|
- ingress.yaml
|
|
- atlas-identity-bootstrap-job.yaml
|
|
|
|
configMapGenerator:
|
|
- name: gitea-atlas-identity-bootstrap
|
|
files:
|
|
- gitea_atlas_identity_ensure.sh=scripts/gitea_atlas_identity_ensure.sh
|
|
- gitea_branch_protection_check.py=scripts/gitea_branch_protection_check.py
|
|
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|