diff --git a/services/forgejo/forgejo-deployment.yaml b/services/forgejo/forgejo-deployment.yaml index dc9dfab..30b88f5 100644 --- a/services/forgejo/forgejo-deployment.yaml +++ b/services/forgejo/forgejo-deployment.yaml @@ -36,10 +36,16 @@ spec: value: "https://weaver.mynest.love/" - name: FORGEJO__server__HTTP_PORT value: "3000" + - name: FORGEJO__server__START_SSH_SERVER + value: "true" - name: FORGEJO__server__SSH_PORT value: "22" - name: FORGEJO__server__SSH_LISTEN_PORT value: "2222" + - name: FORGEJO__repository__DISABLE_HTTP_GIT + value: "true" + - name: FORGEJO__server__SSH_DOMAIN + value: "weaver.mynest.love" # DB Config - name: FORGEJO__database__DB_TYPE diff --git a/services/forgejo/forgejo-service.yaml b/services/forgejo/forgejo-service.yaml index 571af72..017eacc 100644 --- a/services/forgejo/forgejo-service.yaml +++ b/services/forgejo/forgejo-service.yaml @@ -26,3 +26,16 @@ spec: name: postgres selector: app: forgejo-db +--- +apiVersion: v1 +kind: Service +metadata: + name: forgejo-ssh-lb +spec: + type: LoadBalancer + ports: + - port: 22 + targetPort: 2222 + name: ssh + selector: + app: forgejo diff --git a/services/sonarr-anime/sonarr-anime-pvcs.yaml b/services/sonarr-anime/sonarr-anime-pvcs.yaml index e595895..a2cda34 100644 --- a/services/sonarr-anime/sonarr-anime-pvcs.yaml +++ b/services/sonarr-anime/sonarr-anime-pvcs.yaml @@ -11,4 +11,4 @@ spec: storageClassName: longhorn resources: requests: - storage: 200Mi + storage: 1Gi