MultiClusterComponent
The MultiClusterComponent custom resource is an envelope used to distribute core.oam.dev/v1alpha2/Component
resources in a multicluster environment.
NOTE
Starting with Verrazzano v1.1.0, it is preferred that the MultiClusterComponent custom resource not be used; instead directly usecore.oam.dev/v1alpha2/Component
resources in your application. See the example application, Multicluster ToDo List, which directly uses core.oam.dev/v1alpha2/Component
resources.
Here is a sample MultiClusterComponent that specifies a OAM Component resource to create on the cluster named managed1
.
apiVersion: clusters.verrazzano.io/v1alpha1
kind: MultiClusterComponent
metadata:
name: hello-helidon-component
namespace: hello-helidon
spec:
template:
spec:
workload:
apiVersion: oam.verrazzano.io/v1alpha1
kind: VerrazzanoHelidonWorkload
metadata:
name: hello-helidon-workload
namespace: hello-helidon
labels:
app: hello-helidon
spec:
deploymentTemplate:
metadata:
name: hello-helidon-deployment
podSpec:
containers:
- name: hello-helidon-container
image: "ghcr.io/verrazzano/example-helidon-greet-app-v1:0.1.12-1-20210409130027-707ecc4"
ports:
- containerPort: 8080
name: http
placement:
clusters:
- name: managed1
MultiClusterComponent
A MultiClusterComponent is an envelope to create core.oam.dev/v1alpha2/Component
resources on the clusters specified in the placement
section.
Field | Type | Description | Required |
---|---|---|---|
apiVersion |
string | clusters.verrazzano.io/v1alpha1 |
Yes |
kind |
string | MultiClusterComponent | Yes |
metadata |
ObjectMeta | Refer to Kubernetes API documentation for fields of metadata. | Yes |
spec |
MultiClusterComponentSpec | The desired state of a core.oam.dev/v1alpha2/Component resource. |
Yes |
status |
MultiClusterResourceStatus | The runtime status of a multicluster resource. | No |
MultiClusterComponentSpec
MultiClusterComponentSpec specifies the desired state of a core.oam.dev/v1alpha2/Component
resource.
Field | Type | Description | Required |
---|---|---|---|
template |
ComponentTemplate | The embedded core.oam.dev/v1alpha2/Component resource. |
Yes |
placement |
Placement | Clusters in which the resource is to be placed. | Yes |
ComponentTemplate
ComponentTemplate has the metadata and spec of the core.oam.dev/v1alpha2/Component
resource.
Field | Type | Description | Required |
---|---|---|---|
metadata |
ObjectMeta | Refer to Kubernetes API documentation for fields of metadata. | No |
spec |
ComponentSpec | An instance of the struct ComponentSpec defined in core_types.go. |
No |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.