Skip to content

Commit 5292add

Browse files
committed
Add support for FabricChaincodeTemplateRef in FabricChaincodeSpec
Signed-off-by: David VIEJO <[email protected]>
1 parent 062f66a commit 5292add

File tree

4 files changed

+274
-183
lines changed

4 files changed

+274
-183
lines changed

api/hlf.kungfusoftware.es/v1alpha1/hlf_types.go

+49
Original file line numberDiff line numberDiff line change
@@ -1683,8 +1683,18 @@ type FabricNetworkConfigList struct {
16831683
Items []FabricNetworkConfig `json:"items"`
16841684
}
16851685

1686+
type FabricChaincodeTemplateRef struct {
1687+
Name string `json:"name"`
1688+
Namespace string `json:"namespace"`
1689+
}
1690+
16861691
// FabricChaincodeSpec defines the desired state of FabricChaincode
16871692
type FabricChaincodeSpec struct {
1693+
// +nullable
1694+
// +optional
1695+
// +kubebuilder:validation:Optional
1696+
Template *FabricChaincodeTemplateRef `json:"template"`
1697+
16881698
// +nullable
16891699
// +optional
16901700
// +kubebuilder:validation:Optional
@@ -1767,6 +1777,45 @@ type FabricChaincodeSpec struct {
17671777
MspID string `json:"mspID"`
17681778
}
17691779

1780+
func (in *FabricChaincodeSpec) ApplyDefaultValuesFromTemplate(template *FabricChaincodeTemplate) {
1781+
if in.ImagePullPolicy == "" {
1782+
in.ImagePullPolicy = template.Spec.ImagePullPolicy
1783+
}
1784+
if in.ImagePullSecrets == nil || len(in.ImagePullSecrets) == 0 {
1785+
in.ImagePullSecrets = template.Spec.ImagePullSecrets
1786+
}
1787+
if in.Command == nil || len(in.Command) == 0 {
1788+
in.Command = template.Spec.Command
1789+
}
1790+
if in.Args == nil || len(in.Args) == 0 {
1791+
in.Args = template.Spec.Args
1792+
}
1793+
if in.Affinity == nil {
1794+
in.Affinity = template.Spec.Affinity
1795+
}
1796+
if in.Tolerations == nil || len(in.Tolerations) == 0 {
1797+
in.Tolerations = template.Spec.Tolerations
1798+
}
1799+
if in.Resources == nil {
1800+
in.Resources = template.Spec.Resources
1801+
}
1802+
if in.Credentials == nil {
1803+
in.Credentials = template.Spec.Credentials
1804+
}
1805+
if in.Replicas == 0 {
1806+
in.Replicas = template.Spec.Replicas
1807+
}
1808+
if in.Env == nil || len(in.Env) == 0 {
1809+
in.Env = template.Spec.Env
1810+
}
1811+
if in.ChaincodeServerPort == 0 {
1812+
in.ChaincodeServerPort = template.Spec.ChaincodeServerPort
1813+
}
1814+
if in.MspID == "" {
1815+
in.MspID = template.Spec.MspID
1816+
}
1817+
}
1818+
17701819
// FabricChaincodeStatus defines the observed state of FabricChaincode
17711820
type FabricChaincodeStatus struct {
17721821
Conditions status.Conditions `json:"conditions"`

0 commit comments

Comments
 (0)