Skip to content

Commit c4210a9

Browse files
committed
update
Signed-off-by: David VIEJO <[email protected]>
1 parent b190a10 commit c4210a9

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

controllers/chaincode/chaincode_controller.go

+3
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,9 @@ func (r *FabricChaincodeReconciler) Reconcile(ctx context.Context, req ctrl.Requ
459459
FailureThreshold: 3,
460460
},
461461
}
462+
if fabricChaincode.Spec.Resources != nil {
463+
container.Resources = *fabricChaincode.Spec.Resources
464+
}
462465
if fabricChaincode.Spec.Command != nil {
463466
container.Command = fabricChaincode.Spec.Command
464467
}

main.go

+2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,10 @@ func main() {
9595
flag.Parse()
9696
log.Infof("Auto renew peer certificates enabled: %t", autoRenewCertificatesPeerEnabled)
9797
log.Infof("Auto renew orderer certificates enabled: %t", autoRenewCertificatesOrdererEnabled)
98+
log.Infof("Auto renew identity certificates enabled: %t", autoRenewCertificatesIdentityEnabled)
9899
log.Infof("Auto renew peer certificates delta: %s", autoRenewPeerCertificatesDelta)
99100
log.Infof("Auto renew orderer certificates delta: %s", autoRenewOrdererCertificatesDelta)
101+
log.Infof("Auto renew identity certificates delta: %s", autoRenewIdentityCertificatesDelta)
100102
// Pass a Config struct
101103
// to initialize a Client struct
102104
// which implements Client interface

0 commit comments

Comments
 (0)