5 Commits 9323705c0b ... e867dd51e0

Author SHA1 Message Date
  Victor Lavaud e867dd51e0 Upgrade nextcloud 6 months ago
  Victor Lavaud 2969fa9f40 Change occ to generate 6 months ago
  Victor Lavaud 151e46683f Upgrade nextcloud 6 months ago
  Victor Lavaud 466f14ec6d Add TCP listeners for standardnotes 6 months ago
  Victor Lavaud d686d55798 Update init7 ip address 6 months ago
3 changed files with 17 additions and 5 deletions
  1. 14 2
      ingress/values.yaml
  2. 2 2
      nextcloud/image/Dockerfile
  3. 1 1
      nextcloud/nextcloud-dply.yaml

+ 14 - 2
ingress/values.yaml

@@ -13,7 +13,7 @@ controller:
     externalIPs:
       - 35.184.127.55    # ggl.dodges.it
       - 5.196.26.88   # ovh.dodges.it
-      - 81.6.34.119   # init7 home
+      - 81.6.34.64   # init7 home
       - 2001:41d0:401:3200::1d20
     #ipFamilies:
       #- IPv4
@@ -27,6 +27,13 @@ controller:
       - protocol: TCP
         port: 5432
         name: postgres
+      # Standard Notes
+      - protocol: TCP
+        port: 3000
+        name: standardnotes-sync
+      - protocol: TCP
+        port: 3125
+        name: standardnotes-fs
   enableCertManager: true
   enableSnippets: true
   enableLatencyMetrics: true
@@ -42,7 +49,12 @@ controller:
       - name: postgres-tcp
         port: 5432
         protocol: TCP
-
+      - name: standardnotes-sync-tcp
+        port: 3000
+        protocol: TCP
+      - name: standardnotes-fs-tcp
+        port: 3125
+        protocol: TCP
   tolerations:
     - key: "isNginx"
       operator: "Exists"

+ 2 - 2
nextcloud/image/Dockerfile

@@ -1,4 +1,4 @@
-FROM nextcloud:28.0.4-apache
+FROM nextcloud:29.0.0-apache
 
 RUN apt-get update && apt-get install -y \
     supervisor \
@@ -9,7 +9,7 @@ COPY supervisord.conf /
 
 ENV NEXTCLOUD_UPDATE=1
 
-RUN echo '*/15 * * * * php /var/www/html/occ preview:generate-all' >> /var/spool/cron/crontabs/www-data
+RUN echo '*/15 * * * * php /var/www/html/occ preview:generate' >> /var/spool/cron/crontabs/www-data
 RUN echo '0 2 * * 0 php /var/www/html/occ recognize:recrawl' >> /var/spool/cron/crontabs/www-data
 RUN echo '1 2 * * 0 php /var/www/html/occ recognize:cleanup-tags' >> /var/spool/cron/crontabs/www-data
 

+ 1 - 1
nextcloud/nextcloud-dply.yaml

@@ -26,7 +26,7 @@ spec:
                   - amd64
       containers:
         - name: nextcloud
-          image: qdii/nextcloud:28.0.4-apache
+          image: qdii/nextcloud:29.0.0-apache
           env:
           - name: MYSQL_DATABASE
             value: "nextcloud"