Skip to content

Commit

Permalink
Merge pull request #6 from automationbroker/add-dashboard-url
Browse files Browse the repository at this point in the history
Add serialized alpha string to bundle
  • Loading branch information
Shawn Hurley authored Apr 19, 2018
2 parents 8060836 + 97a1f8b commit 99aa044
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions artifacts/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ spec:
type: string
metadata:
type: string
alpha:
type: string
async:
type: string
pattern: '^(optional|required|unsupported)$'
Expand Down
4 changes: 3 additions & 1 deletion pkg/apis/automationbroker.io/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ type BundleSpec struct {
Async AsyncType `json:"async"`
// Store the metadata as a json encoded string to preserve the genericness
Metadata string `json:"metadata"`
Plans []Plan `json:"plans"`
// Store the alpha map as a json encoded string to preserve the genericness
Alpha string
Plans []Plan `json:"plans"`
}

// Plan - a plan for a bundle spec
Expand Down

0 comments on commit 99aa044

Please sign in to comment.