From 4ec7dc4825467d96a6768b73c7a29a6de15918ff Mon Sep 17 00:00:00 2001 From: shubham <shubham.bajpai@mayadata.io> Date: Fri, 14 Aug 2020 14:35:21 +0530 Subject: [PATCH] chore(vendor): update latest openebs/api vendor files Signed-off-by: shubham <shubham.bajpai@mayadata.io> --- go.mod | 2 +- go.sum | 2 ++ .../openebs/api/pkg/apis/cstor/v1/cstorpoolinstance.go | 10 +++++----- vendor/modules.txt | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/go.mod b/go.mod index 96f948b7..044de388 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ require ( github.com/google/go-cmp v0.4.0 github.com/hashicorp/go-version v1.2.0 github.com/kubernetes-csi/external-snapshotter/v2 v2.1.1 - github.com/openebs/api v1.12.1-0.20200805040335-b9bd4809e80c + github.com/openebs/api v1.12.1-0.20200813113856-a86aa610f932 github.com/openebs/maya v0.0.0-20200602143918-71415115098d github.com/pkg/errors v0.9.1 github.com/spf13/cobra v1.0.0 diff --git a/go.sum b/go.sum index f433ecae..a61c60e2 100644 --- a/go.sum +++ b/go.sum @@ -180,6 +180,8 @@ github.com/openebs/api v1.11.1-0.20200625121525-4ef7efa4b876 h1:c6HE7cROx9mC+yJ8 github.com/openebs/api v1.11.1-0.20200625121525-4ef7efa4b876/go.mod h1:TASujm6H1LGdx43MN7Dab1xdAqR7MVU8bsS74Ywop5w= github.com/openebs/api v1.12.1-0.20200805040335-b9bd4809e80c h1:fZmO/A7BnxFAg9y1gjhtN6IG1ZBj0e0bLJTQtOI1Tk4= github.com/openebs/api v1.12.1-0.20200805040335-b9bd4809e80c/go.mod h1:TASujm6H1LGdx43MN7Dab1xdAqR7MVU8bsS74Ywop5w= +github.com/openebs/api v1.12.1-0.20200813113856-a86aa610f932 h1:YzV1nspFTKrCa7c2XeWPcrU9KRvV9Ul9Yu9SLHqldas= +github.com/openebs/api v1.12.1-0.20200813113856-a86aa610f932/go.mod h1:TASujm6H1LGdx43MN7Dab1xdAqR7MVU8bsS74Ywop5w= github.com/openebs/maya v0.0.0-20200602143918-71415115098d h1:o8RIc8RzeZkUlzYM+Sg07wRdekIHytCTMaAhFl8Yams= github.com/openebs/maya v0.0.0-20200602143918-71415115098d/go.mod h1:QQY9cOHKQwZ73qbv6O//UYUBLNV2S0MRDIfG7t5KOCk= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= diff --git a/vendor/github.com/openebs/api/pkg/apis/cstor/v1/cstorpoolinstance.go b/vendor/github.com/openebs/api/pkg/apis/cstor/v1/cstorpoolinstance.go index 4914c57c..99b7ea8b 100644 --- a/vendor/github.com/openebs/api/pkg/apis/cstor/v1/cstorpoolinstance.go +++ b/vendor/github.com/openebs/api/pkg/apis/cstor/v1/cstorpoolinstance.go @@ -31,13 +31,13 @@ import ( // +kubebuilder:object:root=true // +kubebuilder:resource:scope=Namespaced,shortName=cspi // +kubebuilder:printcolumn:name="HostName",type=string,JSONPath=`.spec.hostName`,description="Host name where cstorpool instances scheduled" -// +kubebuilder:printcolumn:name="Allocated",type=string,JSONPath=`.status.capacity.used`,description="The amount of storage space within the pool that has been physically allocated" +// +kubebuilder:printcolumn:name="Allocated",type=string,JSONPath=`.status.capacity.used`,description="The amount of storage space within the pool that has been physically allocated",priority=1 // +kubebuilder:printcolumn:name="Free",type=string,JSONPath=`.status.capacity.free`,description="The amount of usable free space available in the pool" // +kubebuilder:printcolumn:name="Capacity",type=string,JSONPath=`.status.capacity.total`,description="Total amount of usable space in pool" // +kubebuilder:printcolumn:name="ReadOnly",type=boolean,JSONPath=`.status.readOnly`,description="Identifies the pool read only mode" // +kubebuilder:printcolumn:name="ProvisionedReplicas",type=integer,JSONPath=`.status.provisionedReplicas`,description="Represents no.of replicas present in the pool" // +kubebuilder:printcolumn:name="HealthyReplicas",type=integer,JSONPath=`.status.healthyReplicas`,description="Represents no.of healthy replicas present in the pool" -// +kubebuilder:printcolumn:name="Type",type=string,JSONPath=`.spec.poolConfig.dataRaidGroupType`,description="Represents the type of the storage pool" +// +kubebuilder:printcolumn:name="Type",type=string,JSONPath=`.spec.poolConfig.dataRaidGroupType`,description="Represents the type of the storage pool",priority=1 // +kubebuilder:printcolumn:name="Status",type=string,JSONPath=`.status.phase`,description="Identifies the current health of the pool" // +kubebuilder:printcolumn:name="Age",type=date,JSONPath=`.metadata.creationTimestamp`,description="Age of CStorPoolInstance" type CStorPoolInstance struct { @@ -117,13 +117,13 @@ type CStorPoolInstanceStatus struct { // Capacity describes the capacity details of a cstor pool Capacity CStorPoolInstanceCapacity `json:"capacity,omitempty"` //ReadOnly if pool is readOnly or not - ReadOnly bool `json:"readOnly,omitempty"` + ReadOnly bool `json:"readOnly"` // ProvisionedReplicas describes the total count of Volume Replicas // present in the cstor pool - ProvisionedReplicas int32 `json:"provisionedReplicas,omitempty"` + ProvisionedReplicas int32 `json:"provisionedReplicas"` // HealthyReplicas describes the total count of healthy Volume Replicas // in the cstor pool - HealthyReplicas int32 `json:"healthyReplicas,omitempty"` + HealthyReplicas int32 `json:"healthyReplicas"` } // CStorPoolInstanceCapacity stores the pool capacity related attributes. diff --git a/vendor/modules.txt b/vendor/modules.txt index df37a45d..949399c7 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -46,7 +46,7 @@ github.com/matttproud/golang_protobuf_extensions/pbutil github.com/modern-go/concurrent # github.com/modern-go/reflect2 v1.0.1 github.com/modern-go/reflect2 -# github.com/openebs/api v1.12.1-0.20200805040335-b9bd4809e80c +# github.com/openebs/api v1.12.1-0.20200813113856-a86aa610f932 github.com/openebs/api/pkg/apis/cstor github.com/openebs/api/pkg/apis/cstor/v1 github.com/openebs/api/pkg/apis/openebs.io