You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .openapi/kas-fleet-manager.yaml
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1625,6 +1625,7 @@ components:
1625
1625
- cluster_id
1626
1626
- cluster_external_id
1627
1627
- cluster_ingress_dns_name
1628
+
- kafka_machine_pool_node_count
1628
1629
type: object
1629
1630
properties:
1630
1631
cluster_id:
@@ -1636,6 +1637,15 @@ components:
1636
1637
cluster_ingress_dns_name:
1637
1638
description: dns name of the cluster. Can be obtained from the response JSON of the /api/clusters_mgmt/v1/clusters/<cluster_id>/ingresses (dns_name)
1638
1639
type: string
1640
+
kafka_machine_pool_node_count:
1641
+
description: |-
1642
+
The node count given to the created kafka machine pool.
1643
+
The machine pool must be created via /api/clusters_mgmt/v1/clusters/<cluster_id>/machine_pools prior to passing this value.
1644
+
The created machine pool must have a `bf2.org/kafkaInstanceProfileType=standard` label and a `bf2.org/kafkaInstanceProfileType=standard:NoExecute` taint.
1645
+
The name of the machine pool must be `kafka-standard`
1646
+
The node count value has to be a multiple of 3 with a minimum of 3 nodes.
Copy file name to clipboardExpand all lines: packages/kafka-management-sdk/docs/EnterpriseOsdClusterPayload.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
**clusterId** | **String** | OSD cluster ID |
12
12
**clusterExternalId** | **String** | external cluster ID. Can be obtained from the response JSON of ocm get /api/clusters_mgmt/v1/clusters/<cluster_id> |
13
13
**clusterIngressDnsName** | **String** | dns name of the cluster. Can be obtained from the response JSON of the /api/clusters_mgmt/v1/clusters/<cluster_id>/ingresses (dns_name) |
14
+
**kafkaMachinePoolNodeCount** | **Integer** | The node count given to the created kafka machine pool. The machine pool must be created via /api/clusters_mgmt/v1/clusters/<cluster_id>/machine_pools prior to passing this value. The created machine pool must have a `bf2.org/kafkaInstanceProfileType=standard` label and a `bf2.org/kafkaInstanceProfileType=standard:NoExecute` taint. The name of the machine pool must be `kafka-standard` The node count value has to be a multiple of 3 with a minimum of 3 nodes. |
Copy file name to clipboardExpand all lines: packages/kafka-management-sdk/src/main/java/com/openshift/cloud/api/kas/models/EnterpriseOsdClusterPayload.java
* The node count given to the created kafka machine pool. The machine pool must be created via /api/clusters_mgmt/v1/clusters/<cluster_id>/machine_pools prior to passing this value. The created machine pool must have a `bf2.org/kafkaInstanceProfileType=standard` label and a `bf2.org/kafkaInstanceProfileType=standard:NoExecute` taint. The name of the machine pool must be `kafka-standard` The node count value has to be a multiple of 3 with a minimum of 3 nodes.
145
+
* @return kafkaMachinePoolNodeCount
146
+
**/
147
+
@javax.annotation.Nonnull
148
+
@ApiModelProperty(required = true, value = "The node count given to the created kafka machine pool. The machine pool must be created via /api/clusters_mgmt/v1/clusters/<cluster_id>/machine_pools prior to passing this value. The created machine pool must have a `bf2.org/kafkaInstanceProfileType=standard` label and a `bf2.org/kafkaInstanceProfileType=standard:NoExecute` taint. The name of the machine pool must be `kafka-standard` The node count value has to be a multiple of 3 with a minimum of 3 nodes.")
0 commit comments