Skip to content

Commit

Permalink
cert versioning hard coded to operator
Browse files Browse the repository at this point in the history
  • Loading branch information
mlbiam committed Oct 8, 2024
1 parent d2bede8 commit b7edbf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openunison/deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -1364,8 +1364,8 @@ func (ou *OpenUnisonDeployment) locateChart(configChartName string, chartPathOpt
chartName := configChartName
chartVersion := ""
if strings.Contains(configChartName, "@") {
chartName = ou.operator.chart[0:strings.Index(ou.operator.chart, "@")]
chartVersion = ou.operator.chart[strings.Index(ou.operator.chart, "@")+1:]
chartName = configChartName[0:strings.Index(configChartName, "@")]
chartVersion = configChartName[strings.Index(configChartName, "@")+1:]

fmt.Printf("Chart version specified for %s: %s\n", chartName, chartVersion)

Expand Down

0 comments on commit b7edbf3

Please sign in to comment.