Add Manila to Renovate

Change-Id: I0b7245fc8c4326c227908d6aca077789ee4a7d7c
diff --git a/renovate.json b/renovate.json
index 1f7b65e..298f9b0 100644
--- a/renovate.json
+++ b/renovate.json
@@ -22,11 +22,37 @@
       "groupName": "tempest",
       "matchDatasources": ["git-refs"],
       "matchFileNames": ["images/tempest/Dockerfile"]
+    },
+    {
+      "groupName": "openstack",
+      "matchDatasources": ["git-refs"],
+      "matchFileNames": ["images/manila/Dockerfile"]
     }
   ],
   "customManagers": [
     {
       "customType": "regex",
+      "fileMatch": ["images/manila/Dockerfile"],
+      "matchStrings": [
+        "ARG (?<depName>[A-Z_]+)_GIT_REF=(?<currentDigest>.*?)\\s+ADD --keep-git-dir=true https://opendev\\.org/openstack/(?<packageName>[a-z-]+)\\.git"
+      ],
+      "datasourceTemplate": "git-refs",
+      "depNameTemplate": "openstack/{{packageName}}",
+      "packageNameTemplate": "https://opendev.org/openstack/{{packageName}}",
+      "currentValueTemplate": "{{#if (equals baseBranch 'main')}}master{{else}}{{baseBranch}}{{/if}}"
+    },
+    {
+      "customType": "regex",
+      "fileMatch": ["images/tempest/Dockerfile"],
+      "matchStrings": [
+        "ADD --keep-git-dir=true https://opendev.org/openstack/(?<depName>[^.]+)(\\.git)?#(?<currentDigest>[0-9a-f]{40}) /src(?<path>.*)"
+      ],
+      "datasourceTemplate": "git-refs",
+      "packageNameTemplate": "https://opendev.org/openstack/{{depName}}",
+      "currentValueTemplate": "master"
+    },
+    {
+      "customType": "regex",
       "fileMatch": ["images/magnum/Dockerfile"],
       "matchStrings": ["magnum-cluster-api==(?<currentValue>.*?)\\s"],
       "datasourceTemplate": "pypi",
@@ -41,16 +67,6 @@
       "depNameTemplate": "neutron-policy-server",
       "packageNameTemplate": "https://review.vexxhost.dev/neutron-policy-server",
       "currentValueTemplate": "main"
-    },
-    {
-      "customType": "regex",
-      "fileMatch": ["images/tempest/Dockerfile"],
-      "matchStrings": [
-        "ADD --keep-git-dir=true https://opendev.org/openstack/(?<depName>[^.]+)(\\.git)?#(?<currentDigest>[0-9a-f]{40}) /src(?<path>.*)"
-      ],
-      "datasourceTemplate": "git-refs",
-      "packageNameTemplate": "https://opendev.org/openstack/{{depName}}",
-      "currentValueTemplate": "master"
     }
   ]
 }