Skip to content

Commit

Permalink
Update helm updater to version that will pass validation
Browse files Browse the repository at this point in the history
  • Loading branch information
djzager committed Jun 27, 2018
1 parent b505505 commit 49db372
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion registries/adapters/helm_adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func (r *HelmAdapter) FetchSpecs(imageNames []string) ([]*bundle.Spec, error) {
// Convert chart to Bundle Spec
spec := &bundle.Spec{
Runtime: 2,
Version: "1.0",
Version: "1.0.0",
Async: "optional",
Bindable: false,
Image: r.Config.Runner,
Expand Down
2 changes: 1 addition & 1 deletion registries/adapters/helm_adapter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func TestHelmFetchSpecs(t *testing.T) {

spec := specs[0]
ft.Equal(t, spec.Runtime, 2)
ft.Equal(t, spec.Version, "1.0")
ft.Equal(t, spec.Version, "1.0.0")
ft.Equal(t, spec.Image, "runner_image")
ft.Equal(t, spec.Metadata["displayName"], "mariadb (Helm)")
}

0 comments on commit 49db372

Please sign in to comment.