├── Chart.lock ├── Chart.yaml ├── LICENSE ├── README.md ├── charts └── mariadb-7.3.0.tgz ├── requirements.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── deployment.yaml ├── gitea │ ├── _container.tpl │ ├── gitea-config.yaml │ ├── gitea-http-svc.yaml │ ├── gitea-pvc.yaml │ └── gitea-ssh-svc.yaml ├── ingress.yaml ├── init │ └── _container.tpl └── memcached │ └── _container.tpl └── values.yaml /Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/Chart.lock -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/README.md -------------------------------------------------------------------------------- /charts/mariadb-7.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/charts/mariadb-7.3.0.tgz -------------------------------------------------------------------------------- /requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/requirements.yaml -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/deployment.yaml -------------------------------------------------------------------------------- /templates/gitea/_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/gitea/_container.tpl -------------------------------------------------------------------------------- /templates/gitea/gitea-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/gitea/gitea-config.yaml -------------------------------------------------------------------------------- /templates/gitea/gitea-http-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/gitea/gitea-http-svc.yaml -------------------------------------------------------------------------------- /templates/gitea/gitea-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/gitea/gitea-pvc.yaml -------------------------------------------------------------------------------- /templates/gitea/gitea-ssh-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/gitea/gitea-ssh-svc.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/init/_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/init/_container.tpl -------------------------------------------------------------------------------- /templates/memcached/_container.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/templates/memcached/_container.tpl -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k8s-land/gitea-chart/HEAD/values.yaml --------------------------------------------------------------------------------