diff --git a/docs/config_examples/customResourceDefinitions/incubator/customresourcedefinitions.yml b/docs/config_examples/customResourceDefinitions/incubator/customresourcedefinitions.yml index 991bb0d87..75552995a 100644 --- a/docs/config_examples/customResourceDefinitions/incubator/customresourcedefinitions.yml +++ b/docs/config_examples/customResourceDefinitions/incubator/customresourcedefinitions.yml @@ -667,6 +667,10 @@ spec: status: type: string default: Pending + lastUpdated: + type: string + error: + type: string additionalPrinterColumns: - name: virtualServerAddress type: string @@ -883,6 +887,13 @@ spec: properties: vsAddress: type: string + status: + type: string + default: pending + lastUpdated: + type: string + error: + type: string additionalPrinterColumns: - name: IPAMVSAddress type: string diff --git a/pkg/controller/postManager.go b/pkg/controller/postManager.go index bdaffb3f2..d2aa9344b 100644 --- a/pkg/controller/postManager.go +++ b/pkg/controller/postManager.go @@ -866,7 +866,7 @@ func (postMgr *PostManager) logAS3Response(responseMap map[string]interface{}) { } responseMap["declaration"] = as3Declaration(decl) } - log.Errorf("[AS3]%v Raw response from Big-IP: %v ", postMgr.postManagerPrefix, responseMap) + log.Debugf("[AS3]%v Raw response from Big-IP: %v ", postMgr.postManagerPrefix, responseMap) } func (postMgr *PostManager) logAS3Request(cfg string) {