diff --git a/apps/gitea/Chart.yaml b/apps/gitea/Chart.yaml index 3034fd4..f94340f 100644 --- a/apps/gitea/Chart.yaml +++ b/apps/gitea/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.8 +version: 0.1.10 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/apps/gitea/README.md b/apps/gitea/README.md new file mode 100644 index 0000000..7d68f32 --- /dev/null +++ b/apps/gitea/README.md @@ -0,0 +1,6 @@ +## Missing + +- db secret generation (sops?) +- SMTP settings / secrets (ungleich mail + sops?) +- Exposing sizes in value.yaml (db, gitea) + - Maybe reducing to 1 PVC? diff --git a/apps/gitea/templates/deployment.yaml b/apps/gitea/templates/deployment.yaml index a40a6ce..ece7e31 100644 --- a/apps/gitea/templates/deployment.yaml +++ b/apps/gitea/templates/deployment.yaml @@ -68,6 +68,8 @@ spec: value: "1000" - name: GITEA__server__DOMAIN value: "{{ tpl .Values.fqdn . }}" + - name: GITEA__server__ROOT_URL + value: "https://{{ tpl .Values.fqdn . }}" - name: GITEA__database__DB_TYPE value: "postgres" - name: GITEA__database__HOST @@ -154,7 +156,7 @@ spec: - ReadWriteMany resources: requests: - storage: 100Mi + storage: 1Gi storageClassName: rook-cephfs --- apiVersion: v1