- Add Terraform configuration for GCP instance and storage - Add startup script for K3s installation and configuration - Add pipeline scripts for deployment and management - Add Forgejo deployment manifests and configuration
24 lines
530 B
Text
24 lines
530 B
Text
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: tls-forgejo-ingress-http
|
|
namespace: forgejo
|
|
annotations:
|
|
cert-manager.io/issuer: "le-cluster-issuer-http"
|
|
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- ${APP_DOMAIN_NAME}
|
|
secretName: tls-frg-ingress-http
|
|
rules:
|
|
- host: ${APP_DOMAIN_NAME}
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: forgejo-app-service
|
|
port:
|
|
name: web
|