mirror of
https://github.com/thejimnicholson/gitea.git
synced 2025-12-06 03:30:42 +00:00
27 lines
534 B
YAML
27 lines
534 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: gitea
|
|
secretGenerator:
|
|
- literals:
|
|
- pg_username=postgres
|
|
- pg_password=some1pass5here9
|
|
name: gitea-secrets
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|
|
labels:
|
|
type: generated
|
|
resources:
|
|
- namespace.yaml
|
|
# - secrets.yaml
|
|
- postgres-pv.yaml
|
|
- postgres-pvc.yaml
|
|
- gitea-pv.yaml
|
|
- gitea-pvc.yaml
|
|
- 0x-storage.yaml
|
|
- configuration.yaml
|
|
- postgres-deployment.yaml
|
|
- postgres-service.yaml
|
|
- gitea-deployment.yaml
|
|
- gitea-service.yaml
|
|
- ingress.yaml
|