sigs.k8s.io/cluster-api@v1.7.1/docs/book/src/images/management-workload-separate-clusters.plantuml (about)

     1  @startuml
     2  
     3  [clusterctl]
     4  
     5  package "Management Cluster" {
     6      [Kubeadm Bootstrap Provider] as cabpk
     7      [Core Provider] as capi
     8      [Kubeadm Control Plane Provider] as cakcp
     9      [Infrastructure Provider] as infra #white
    10      [API Server] as api #white
    11      capi --> api
    12      cabpk --> api
    13      cakcp --> api
    14      infra --> api
    15  }
    16  
    17  clusterctl -> api
    18  
    19  package "Workload Cluster 1" {
    20      [API Server] as api1 #white
    21      [etcd] as etcd1 #white
    22      capi ---> api1
    23      cakcp ---> api1
    24      cakcp ---> etcd1
    25  }
    26  
    27  package "Workload Cluster 2" {
    28      [API Server] as api2 #white
    29      [etcd] as etcd2 #white
    30      capi ---> api2
    31      cakcp ---> api2
    32      cakcp ---> etcd2
    33  }
    34  
    35  @enduml