Skip to content

Commit

Permalink
Merge pull request #1390 from flaper87/fix-sec-group-filer
Browse files Browse the repository at this point in the history
openstack: Use the right security group name for machines
  • Loading branch information
openshift-merge-robot committed Mar 8, 2019
2 parents 0429d95 + 6f9966e commit bfa9dec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/asset/machines/openstack/machines.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func provider(clusterID string, platform *openstack.Platform, mpool *openstack.M
AvailabilityZone: az,
SecurityGroups: []openstackprovider.SecurityGroupParam{
{
Name: role,
Name: fmt.Sprintf("%s-%s", clusterID, role),
},
},
// TODO(flaper87): Trunk support missing. Need to add it back
Expand Down

0 comments on commit bfa9dec

Please sign in to comment.