From 8105ac534686babee9480ae037021ada82dba443 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Sun, 10 May 2015 13:06:20 +0900 Subject: [PATCH] Fix struct tag --- pkg/api/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/types.go b/pkg/api/types.go index ed4f75bf133..6b6151650ee 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -298,7 +298,7 @@ type PersistentVolumeClaimStatus struct { // Phase represents the current phase of PersistentVolumeClaim Phase PersistentVolumeClaimPhase `json:"phase,omitempty"` // AccessModes contains all ways the volume backing the PVC can be mounted - AccessModes []AccessModeType `json:"accessModes,omitempty` + AccessModes []AccessModeType `json:"accessModes,omitempty"` // Represents the actual resources of the underlying volume Capacity ResourceList `json:"capacity,omitempty"` // VolumeRef is a reference to the PersistentVolume bound to the PersistentVolumeClaim