Skip to content

Commit

Permalink
Merge pull request #7403 from christophd/issue/12222/fix-operator-ins…
Browse files Browse the repository at this point in the history
…tall
  • Loading branch information
pure-bot[bot] committed Dec 13, 2019
2 parents 92f7265 + 2063083 commit 015bbba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install/operator/pkg/syndesis/action/install.go
Expand Up @@ -134,9 +134,9 @@ func (a *installAction) Execute(ctx context.Context, syndesis *v1alpha1.Syndesis
//
if syndesisPhaseIs(syndesis, v1alpha1.SyndesisPhaseInstalling) {
a.log.Info("Will bind sydnesis-db to persistent volume with criteria ",
"volume-access-mode", configuration.Syndesis.Components.Database.Resources.VolumeAccessMode,
"volume-name", configuration.Syndesis.Components.Database.Resources.VolumeName,
"storage-class", configuration.Syndesis.Components.Database.Resources.VolumeStorageClass)
"volume-access-mode", config.Syndesis.Components.Database.Resources.VolumeAccessMode,
"volume-name", config.Syndesis.Components.Database.Resources.VolumeName,
"storage-class", config.Syndesis.Components.Database.Resources.VolumeStorageClass)
}

all = append(all, dbResources...)
Expand Down

0 comments on commit 015bbba

Please sign in to comment.