diff --git a/clusters/default/apps/gitea/Values.yaml b/clusters/default/apps/gitea/Values.yaml index 9805448..210b1a2 100644 --- a/clusters/default/apps/gitea/Values.yaml +++ b/clusters/default/apps/gitea/Values.yaml @@ -1,14 +1,6 @@ name: gitea namespace: default -image: - app: - repository: gitea/gitea - tag: 1.24.2 - db: - repository: postgres - tag: 15.10 - env: USER_UID: 1000 USER_GID: 1000 diff --git a/clusters/default/apps/gitea/templates/gitea-db.yaml b/clusters/default/apps/gitea/templates/gitea-db.yaml index 0ea45d4..362afbb 100644 --- a/clusters/default/apps/gitea/templates/gitea-db.yaml +++ b/clusters/default/apps/gitea/templates/gitea-db.yaml @@ -22,7 +22,7 @@ spec: mountPath: /var/lib/postgresql/data containers: - name: "{{ .Values.name }}-db" - image: "{{ .Values.image.db.repository }}:{{ .Values.image.db.tag }}" + image: "postgres:15.10" env: - name: POSTGRES_USER value: "{{ .Values.env.DB_USER }}" diff --git a/clusters/default/apps/gitea/templates/gitea.yaml b/clusters/default/apps/gitea/templates/gitea.yaml index 90e280b..0ceffc7 100644 --- a/clusters/default/apps/gitea/templates/gitea.yaml +++ b/clusters/default/apps/gitea/templates/gitea.yaml @@ -27,7 +27,7 @@ spec: done containers: - name: "{{ .Values.name }}-app" - image: "{{ .Values.image.app.repository }}:{{ .Values.image.app.tag }}" + image: "gitea/gitea:1.24.2" env: - name: USER_UID value: "{{ .Values.env.USER_UID }}"