Skip to content

Commit

Permalink
fix typo in microversion defaults. release 0.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vooon committed Aug 7, 2024
1 parent ea98d53 commit cafa24e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion heat/stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ parameters:
plugin_version:
type: string
label: Fleeting plugin version tag
default: 0.21.0
default: 0.21.1

gitlab_runner_image:
type: string
Expand Down
2 changes: 1 addition & 1 deletion provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (g *InstanceGroup) Init(ctx context.Context, log hclog.Logger, settings pro
return provider.ProviderInfo{}, fmt.Errorf("Failed to connect to OpenStack Nova: %w", err)
}

if g.NovaMicroversion != "" {
if g.NovaMicroversion == "" {
g.NovaMicroversion = "2.79" // Train+
}

Expand Down

0 comments on commit cafa24e

Please sign in to comment.