Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(39)

Unified Diff: provider/openstack/provider.go

Issue 96730043: Support constraints vocabs (Closed)
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« constraints/validation.go ('K') | « provider/openstack/local_test.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: provider/openstack/provider.go
=== modified file 'provider/openstack/provider.go'
--- provider/openstack/provider.go 2014-04-21 23:50:20 +0000
+++ provider/openstack/provider.go 2014-04-24 02:03:36 +0000
@@ -528,13 +528,28 @@
}
// ConstraintsValidator is defined on the Environs interface.
-func (e *environ) ConstraintsValidator() constraints.Validator {
+func (e *environ) ConstraintsValidator() (constraints.Validator, error) {
validator := constraints.NewValidator()
validator.RegisterConflicts(
[]string{constraints.InstanceType},
[]string{constraints.Mem, constraints.Arch, constraints.RootDisk, constraints.CpuCores})
validator.RegisterUnsupported(unsupportedConstraints)
- return validator
+ supportedArches, err := e.SupportedArchitectures()
+ if err != nil {
+ return nil, err
+ }
+ validator.RegisterVocabulary(constraints.Arch, supportedArches)
+ novaClient := e.nova()
+ flavors, err := novaClient.ListFlavorsDetail()
+ if err != nil {
+ return nil, err
+ }
+ instTypeNames := make([]string, len(flavors))
+ for i, flavor := range flavors {
+ instTypeNames[i] = flavor.Name
+ }
+ validator.RegisterVocabulary(constraints.InstanceType, instTypeNames)
+ return validator, nil
}
// PrecheckInstance is defined on the state.Prechecker interface.
« constraints/validation.go ('K') | « provider/openstack/local_test.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b