@@ -1683,8 +1683,18 @@ type FabricNetworkConfigList struct {
1683
1683
Items []FabricNetworkConfig `json:"items"`
1684
1684
}
1685
1685
1686
+ type FabricChaincodeTemplateRef struct {
1687
+ Name string `json:"name"`
1688
+ Namespace string `json:"namespace"`
1689
+ }
1690
+
1686
1691
// FabricChaincodeSpec defines the desired state of FabricChaincode
1687
1692
type FabricChaincodeSpec struct {
1693
+ // +nullable
1694
+ // +optional
1695
+ // +kubebuilder:validation:Optional
1696
+ Template * FabricChaincodeTemplateRef `json:"template"`
1697
+
1688
1698
// +nullable
1689
1699
// +optional
1690
1700
// +kubebuilder:validation:Optional
@@ -1767,6 +1777,45 @@ type FabricChaincodeSpec struct {
1767
1777
MspID string `json:"mspID"`
1768
1778
}
1769
1779
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
+
1770
1819
// FabricChaincodeStatus defines the observed state of FabricChaincode
1771
1820
type FabricChaincodeStatus struct {
1772
1821
Conditions status.Conditions `json:"conditions"`
0 commit comments