Skip to content
Merged
Show file tree
Hide file tree
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
37 changes: 37 additions & 0 deletions docs/user-guide/src/ironic/images/overview.plantuml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
@startuml
person User
package Kubernetes {
rectangle API {
artifact BareMetalHost as BMH
artifact Ironic as IronicCR
}
rectangle Pods {
component "BareMetal Operator" as BMO
component Ironic {
process Ironic as IronicSvc
process HTTPD
process DNSMasq
}
component "Ironic Standalone Operator" as IrSO
}
}
node Server {
node "BMC (Redfish, IPMI)" as BMC
process "Ironic Python Agent" as IPA
}

User --> BMH : edits
User --> IronicCR : edits

BMH <--> BMO : watches CR
IronicCR <--> IrSO : watches CR

BMO --> IronicSvc : calls
IrSO ==0 Ironic : manages
IronicSvc -0 HTTPD: configures

IronicSvc --> BMC : calls
HTTPD <-- BMC : downloads vmedia
IronicSvc <--> IPA : runs commands
HTTPD <-- IPA : downloads images
@enduml
Binary file added docs/user-guide/src/ironic/images/overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions docs/user-guide/src/ironic/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ Metal3 provides [a way to install Ironic](../irso/introduction.md) with a
suitable configuration. Alternatively, Bare Metal Operator can be set up to use
an externally managed Ironic instance.

### Components overview

![Component overview](./images/overview.png)

### Requirements for external Ironic

- HTTP basic authentication (OpenStack Identity is not supported - see [issue
Expand Down