Add full Gateway API support for exposing Gitea via HTTPRoute, TCPRoute, BackendTLSPolicy, and ClientSettingsPolicy resources. New templates: - `httpRoute.yaml` — renders an HTTPRoute with configurable parentRefs, hostnames, and rules (defaults to PathPrefix `/`) - `tcpRoute.yaml` — renders a TCPRoute for SSH traffic - `backendTLSPolicy.yaml` — renders a BackendTLSPolicy for encrypted backend connections with required validation config - `clientSettingsPolicy.yaml` — renders an NGINX Gateway Fabric ClientSettingsPolicy to raise the request body size limit Infrastructure: - `gatewayAPI.enabled` global toggle gates all resources - Resources grouped under `gatewayAPI.core.*` and `gatewayAPI.nginx.*` - Helper templates extracted into dedicated `_*.tpl` files - Service name helpers (`gitea.service.http.name`, `gitea.service.ssh.name`) extracted into `_services.tpl`; service templates renamed to camelCase - `ROOT_URL`, `DOMAIN`, and `SSH_DOMAIN` auto-resolve from `httpRoute.hostnames[0]`; `httpRoute.tls` switches to `https` Documentation: - New `docs/gateway-api.md` with topology examples, BackendTLSPolicy setup, sectionName guidance, SSH considerations, and NGINX body size limit configuration - `.github/copilot-instructions.md` with project conventions - README parameter table auto-generated via `make readme` Tests: - Helm unit tests for all four new resource templates - Config tests for hostname/TLS resolution from Gateway API values Co-authored-by: Todd Marimon <toddmarimon@gmail.com>
3.3 KiB
3.3 KiB
Gitea Helm Chart — Copilot Instructions
Project Overview
Kubernetes Helm chart for deploying Gitea. Uses Go/Helm templating (templates/), YAML values (values.yaml), and includes sub-charts for PostgreSQL, PostgreSQL-HA, Valkey, and Valkey-cluster.
Build & Test
make readme # Regenerate README.md parameter table + lint
make unittests-helm # Run Helm unit tests (helm-unittest plugin required)
make unittests-bash # Run bash/bats script tests (requires git submodule init)
make unittests # Both of the above
Always run make readme after changing values.yaml @param annotations.
Always run make unittests-helm after changing templates or unit tests.
Conventions
values.yaml
- Use
## @param path.to.key Descriptionannotations for every user-facing value. These drive the auto-generated README parameter table. - Property ordering within a resource block:
enabled,annotations,labelsfirst, then type-specific fields. - Top-level keys are sorted alphabetically within their section group.
- Use Helm Values pattern from renovatebot. Ensure that the attributes
registry,repositoryandtagare available as part of the dictimage. For example:
image:
registry: docker.io
repository: library/busybox
tag: 0.1.0
Templates
- Helm templates live in
templates/gitea/. Helpers live intemplates/_helpers.tpl. - Use camelCase for all files and variables (e.g
httpRoute,backendTLSPolicy,gatewayAPI,statefulSet). - Use
include "gitea.fullname"for naming resources. - Use
failfor required-value validation with clear error messages referencing the full values path. - Ensure, that the attributes
annotations,labels,nameandnamespaceare alphabetically sorted. - Render all attributes, even if they are empty, to prevent drift in Argo CD. For example,
labelsmust be rendered, whileannotationsare defined asyaml:"annotations,omitempty". - Use plural for
*.tplfiles, because they may contain functions for multiple resources of the same kind (e.g._services.tplforhttpService.yamlorsshService.yaml,_backendTLSPolicies.tplforbackendTLSPolicy.yaml).
Unit Tests
- Helm unit tests live in
unittests/helm/mirroring the template structure. - Test files are YAML using the helm-unittest format.
- Each test must set all required values explicitly — do not rely on cross-test state.
- The
values.yamlfile must passyamllint. The configuration is in.yamllint. Usemake yamllintto run the linter.
Commits & PRs
- Follow Conventional Commits for PR titles and commit messages (e.g.
feat:,fix:,refactor:,docs:,style:). - See
CONTRIBUTING.mdfor full PR requirements. - Explain in detail why a change is needed, not just what the change is. Include links to relevant issues, PRs, or external references.
- Add co-authors for any contributions that are not your own. Use the
Co-authored-by:trailer in the commit message.
Documentation
docs/contains topic-specific guides (e.g.gateway-api.md,ha-setup.md).README.mdparameter tables are auto-generated — never edit them manually.