Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhtc1202 committed Jul 21, 2022
1 parent f413a7e commit 05443eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/config/piped.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ func (s *PipedSpec) UnmarshalJSON(data []byte) error {
s.ChartRegistries = ps.ChartRegistries
s.ChartRepositories = ps.ChartRepositories
// Add all CloudProviders configuration as PlatformProviders configuration.
s.PlatformProviders = append(ps.PlatformProviders, ps.CloudProviders...)
s.PlatformProviders = append(s.PlatformProviders, ps.PlatformProviders...)
s.PlatformProviders = append(s.PlatformProviders, ps.CloudProviders...)
s.AnalysisProviders = ps.AnalysisProviders
s.Notifications = ps.Notifications
s.SecretManagement = ps.SecretManagement
Expand Down

0 comments on commit 05443eb

Please sign in to comment.