Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(helm): update nextcloud ( 6.5.0 → 6.5.1 ) #229

Merged
merged 1 commit into from
Dec 20, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 19, 2024

This PR contains the following updates:

Package Update Change
nextcloud (source) patch 6.5.0 -> 6.5.1

Release Notes

nextcloud/helm (nextcloud)

v6.5.1

Compare Source

A file sharing server that puts the control and security of your own data back into your hands.

What's Changed

Full Changelog: nextcloud/helm@nextcloud-6.5.0...nextcloud-6.5.1


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link
Contributor

deepsource-io bot commented Dec 19, 2024

Here's the code health analysis summary for commits 441ab9e..c12e5ad. View details on DeepSource ↗.

Analysis Summary

AnalyzerStatusSummaryLink
DeepSource JavaScript LogoJavaScript✅ SuccessView Check ↗
DeepSource Shell LogoShell✅ SuccessView Check ↗
DeepSource KubeLinter LogoKubeLinter✅ SuccessView Check ↗

💡 If you’re a repository administrator, you can configure the quality gates from the settings.

Copy link

--- kubernetes/apps/default/nextcloud/app Kustomization: flux-system/nextcloud HelmRelease: default/nextcloud

+++ kubernetes/apps/default/nextcloud/app Kustomization: flux-system/nextcloud HelmRelease: default/nextcloud

@@ -13,13 +13,13 @@

     spec:
       chart: nextcloud
       sourceRef:
         kind: HelmRepository
         name: nextcloud
         namespace: flux-system
-      version: 6.5.0
+      version: 6.5.1
   install:
     remediation:
       retries: 3
   interval: 30m
   timeout: 15m
   upgrade:

Copy link

--- HelmRelease: default/nextcloud ConfigMap: default/nextcloud-config

+++ HelmRelease: default/nextcloud ConfigMap: default/nextcloud-config

@@ -66,22 +66,22 @@

     $CONFIG = array (
       'memcache.local' => '\OC\Memcache\APCu',
     );
   apps.config.php: |-
     <?php
     $CONFIG = array (
-      "apps_paths" => array (
+      'apps_paths' => array (
           0 => array (
-                  "path"     => OC::$SERVERROOT."/apps",
-                  "url"      => "/apps",
-                  "writable" => false,
+                  'path'     => OC::$SERVERROOT.'/apps',
+                  'url'      => '/apps',
+                  'writable' => false,
           ),
           1 => array (
-                  "path"     => OC::$SERVERROOT."/custom_apps",
-                  "url"      => "/custom_apps",
-                  "writable" => true,
+                  'path'     => OC::$SERVERROOT.'/custom_apps',
+                  'url'      => '/custom_apps',
+                  'writable' => true,
           ),
       ),
     );
   autoconfig.php: |-
     <?php
     $autoconfig_enabled = false;
@@ -166,12 +166,17 @@

       $CONFIG['overwritecondaddr'] = $overwriteCondAddr;
     }
 
     $trustedProxies = getenv('TRUSTED_PROXIES');
     if ($trustedProxies) {
       $CONFIG['trusted_proxies'] = array_filter(array_map('trim', explode(' ', $trustedProxies)));
+    }
+
+    $forwardedForHeaders = getenv('FORWARDED_FOR_HEADERS');
+    if ($forwardedForHeaders) {
+      $CONFIG['forwarded_for_headers'] = array_filter(array_map('trim', explode(' ', $forwardedForHeaders)));
     }
   s3.config.php: |-
     <?php
     if (getenv('OBJECTSTORE_S3_BUCKET')) {
       $use_ssl = getenv('OBJECTSTORE_S3_SSL');
       $use_path = getenv('OBJECTSTORE_S3_USEPATH_STYLE');
@@ -184,14 +189,14 @@

             'bucket' => getenv('OBJECTSTORE_S3_BUCKET'),
             'region' => getenv('OBJECTSTORE_S3_REGION') ?: '',
             'hostname' => getenv('OBJECTSTORE_S3_HOST') ?: '',
             'port' => getenv('OBJECTSTORE_S3_PORT') ?: '',
             'storageClass' => getenv('OBJECTSTORE_S3_STORAGE_CLASS') ?: '',
             'objectPrefix' => getenv("OBJECTSTORE_S3_OBJECT_PREFIX") ? getenv("OBJECTSTORE_S3_OBJECT_PREFIX") : "urn:oid:",
-            'autocreate' => (strtolower($autocreate) === 'false' || $autocreate == false) ? false : true,
-            'use_ssl' => (strtolower($use_ssl) === 'false' || $use_ssl == false) ? false : true,
+            'autocreate' => strtolower($autocreate) !== 'false',
+            'use_ssl' => strtolower($use_ssl) !== 'false',
             // required for some non Amazon S3 implementations
             'use_path_style' => $use_path == true && strtolower($use_path) !== 'false',
             // required for older protocol versions
             'legacy_auth' => $use_legacyauth == true && strtolower($use_legacyauth) !== 'false'
           )
         )

@Tanguille Tanguille merged commit 6ea451d into main Dec 20, 2024
11 checks passed
@Tanguille Tanguille deleted the renovate/nextcloud-6.x branch December 20, 2024 07:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant