This is an automated email from the ASF dual-hosted git repository.
dahn pushed a change to branch healthcheck-main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
discard 6b6ae4f9885 4.20/main Health Check, please don't merge this!
add d94aaa8b597 Add Cloudian HyperStore Object Storage (#9748)
add 8b092951cbd prometheus: don't poll the same tag multiple times (#10450)
add b8359e8f62e UI: Allow custom footer in password reset page (#10461)
add 1f0ffee8583 VPC: fix private mtu of vpc tier (#10257)
add cd6d1a23a2b KVM: return null state instead of Disconnected when
investigate a host without NFS (#10515)
add 8ce34ad791e kvm: find cluster-wide pools only in Up state when
investigate a host (#10516)
add 0427abf855f Merge branch '4.19' of
https://github.com/apache/cloudstack into 4.20
add b387bc1664c Merge branch '4.20' of https://github.com/apache/cloudstack
add 54c1f92efd2 Fix Stats Collector to not divide by zero (#10492)
add 95c24810ab4 linstor: try to delete -rst resource before snapshot
backup (#10443)
add f8adedc2802 Merge release branch 4.19 to 4.20
add 9c6f2a9e14c Merge release branch 4.20 to main
add aeeabd4430d 4.20/main Health Check, please don't merge this!
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (6b6ae4f9885)
\
N -- N -- N refs/heads/healthcheck-main (aeeabd4430d)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
client/pom.xml | 5 +
.../main/java/com/cloud/ha/KVMInvestigator.java | 5 +-
.../cloudstack/cloudian/client/CloudianClient.java | 303 ++++++-
.../cloudian/client/CloudianCredential.java | 88 ++
.../cloudian/client/CloudianUserBucketUsage.java | 106 +++
.../cloudstack/cloudian/CloudianClientTest.java | 416 ----------
.../cloudstack/cloudian/CloudianUtilsTest.java | 2 +-
.../cloudian/client/CloudianClientTest.java | 790 ++++++++++++++++++
.../cloudstack/metrics/PrometheusExporterImpl.java | 3 +-
plugins/pom.xml | 1 +
plugins/storage/object/cloudian/README.md | 175 ++++
.../quota => storage/object/cloudian}/pom.xml | 35 +-
.../CloudianHyperStoreObjectStoreDriverImpl.java | 890 +++++++++++++++++++++
...CloudianHyperStoreObjectStoreLifeCycleImpl.java | 151 ++++
...CloudianHyperStoreObjectStoreProviderImpl.java} | 14 +-
.../datastore/util/CloudianHyperStoreUtil.java | 211 +++++
.../storage-object-cloudian}/module.properties | 2 +-
.../spring-storage-object-cloudian-context.xml} | 6 +-
...loudianHyperStoreObjectStoreDriverImplTest.java | 686 ++++++++++++++++
...dianHyperStoreObjectStoreLifeCycleImplTest.java | 231 ++++++
...dianHyperStoreObjectStoreProviderImplTest.java} | 13 +-
.../datastore/util/CloudianHyperStoreUtilTest.java | 227 ++++++
plugins/storage/volume/linstor/CHANGELOG.md | 6 +
.../driver/LinstorPrimaryDataStoreDriverImpl.java | 29 +-
pom.xml | 5 +
.../java/com/cloud/network/NetworkServiceImpl.java | 6 +-
.../main/java/com/cloud/server/StatsCollector.java | 4 +-
.../storage/object/BucketApiServiceImpl.java | 9 +-
.../com/cloud/network/NetworkServiceImplTest.java | 2 +-
ui/public/config.json | 1 +
ui/public/locales/en.json | 5 +
ui/src/components/view/ObjectStoreBrowser.vue | 3 +-
ui/src/layouts/UserLayout.vue | 5 +-
ui/src/views/infra/AddObjectStorage.vue | 61 +-
34 files changed, 3972 insertions(+), 524 deletions(-)
create mode 100644
plugins/integrations/cloudian/src/main/java/org/apache/cloudstack/cloudian/client/CloudianCredential.java
create mode 100644
plugins/integrations/cloudian/src/main/java/org/apache/cloudstack/cloudian/client/CloudianUserBucketUsage.java
delete mode 100644
plugins/integrations/cloudian/src/test/java/org/apache/cloudstack/cloudian/CloudianClientTest.java
create mode 100644
plugins/integrations/cloudian/src/test/java/org/apache/cloudstack/cloudian/client/CloudianClientTest.java
create mode 100644 plugins/storage/object/cloudian/README.md
copy plugins/{database/quota => storage/object/cloudian}/pom.xml (69%)
create mode 100644
plugins/storage/object/cloudian/src/main/java/org/apache/cloudstack/storage/datastore/driver/CloudianHyperStoreObjectStoreDriverImpl.java
create mode 100644
plugins/storage/object/cloudian/src/main/java/org/apache/cloudstack/storage/datastore/lifecycle/CloudianHyperStoreObjectStoreLifeCycleImpl.java
copy
plugins/storage/object/{minio/src/main/java/org/apache/cloudstack/storage/datastore/provider/MinIOObjectStoreProviderImpl.java
=>
cloudian/src/main/java/org/apache/cloudstack/storage/datastore/provider/CloudianHyperStoreObjectStoreProviderImpl.java}
(79%)
create mode 100644
plugins/storage/object/cloudian/src/main/java/org/apache/cloudstack/storage/datastore/util/CloudianHyperStoreUtil.java
copy {engine/storage/src/main/resources/META-INF/cloudstack/storage-allocator
=>
plugins/storage/object/cloudian/src/main/resources/META-INF/cloudstack/storage-object-cloudian}/module.properties
(96%)
copy
plugins/{hypervisors/simulator/src/main/resources/META-INF/cloudstack/simulator-storage/spring-simulator-storage-context.xml
=>
storage/object/cloudian/src/main/resources/META-INF/cloudstack/storage-object-cloudian/spring-storage-object-cloudian-context.xml}
(93%)
create mode 100644
plugins/storage/object/cloudian/src/test/java/org/apache/cloudstack/storage/datastore/driver/CloudianHyperStoreObjectStoreDriverImplTest.java
create mode 100644
plugins/storage/object/cloudian/src/test/java/org/apache/cloudstack/storage/datastore/lifecycle/CloudianHyperStoreObjectStoreLifeCycleImplTest.java
copy
plugins/storage/object/{minio/src/test/java/org/apache/cloudstack/storage/datastore/provider/MinIOObjectStoreProviderImplTest.java
=>
cloudian/src/test/java/org/apache/cloudstack/storage/datastore/provider/CloudianHyperStoreObjectStoreProviderImplTest.java}
(74%)
create mode 100644
plugins/storage/object/cloudian/src/test/java/org/apache/cloudstack/storage/datastore/util/CloudianHyperStoreUtilTest.java