Skip to content

Commit

Permalink
fix parameter error
Browse files Browse the repository at this point in the history
  • Loading branch information
mlbiam committed Oct 11, 2024
1 parent 79165dd commit 1e917cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openunison/deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ type OpenUnisonDeployment struct {

// creates a new deployment structure
func NewOpenUnisonDeployment(namespace string, operatorChart string, orchestraChart string, orchestraLoginPortalChart string, pathToValuesYaml string, secretFile string, clusterManagementChart string, pathToDbPassword string, pathToSmtpPassword string, skipClusterManagement bool, additionalCharts []HelmChartInfo, preCharts []HelmChartInfo, namespaceLabels map[string]string) (*OpenUnisonDeployment, error) {
ou, err := NewSateliteDeployment(namespace, operatorChart, orchestraChart, orchestraLoginPortalChart, pathToValuesYaml, secretFile, "", "", "", "", additionalCharts, preCharts, namespaceLabels, "orchestra", "orchestra-secrets-source")
ou, err := NewSateliteDeployment(namespace, operatorChart, orchestraChart, orchestraLoginPortalChart, pathToValuesYaml, secretFile, "", "", "", "", additionalCharts, preCharts, namespaceLabels, "orchestra", "orchestra-secrets-source", false)

if err != nil {
return nil, err
Expand Down

0 comments on commit 1e917cc

Please sign in to comment.