Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,17 +281,18 @@ To configure the Cluster API Provider for OpenStack to create a SSH bastion host
```yaml
bastion:
enabled: true
flavor: <Flavor name>
image: <Image name>
sshKeyName: <Key pair name>
instance:
flavor: <Flavor name>
image: <Image name>
sshKeyName: <Key pair name>
```

A floating IP is created and associated to the bastion host automatically, but you can add the IP address explicitly:

```yaml
bastion:
...
floatingIP: <Floating IP address>
floatingIP: <Floating IP address>
```

If `managedSecurityGroups: true`, security group rule opening 22/tcp is added to security groups for bastion, controller, and worker nodes respectively. Otherwise, you have to add `securityGroups` to the `bastion` in `OpenStackCluster` spec and `OpenStackMachineTemplate` spec template respectively.
Expand Down