Skip to content

Commit 9e58fb9

Browse files
Update provisioning parameters in E2E tests (#2104)
1 parent dd76087 commit 9e58fb9

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

testing/e2e/provisioning/pkg/client/broker/broker_client.go

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,9 @@ type instanceDetailsResponse struct {
100100
}
101101

102102
type provisionParameters struct {
103-
Name string `json:"name"`
104-
Region string `json:"region"`
105-
Components []string `json:"components"`
106-
KymaVersion string `json:"kymaVersion,omitempty"`
103+
Name string `json:"name"`
104+
Region string `json:"region"`
105+
KymaVersion string `json:"kymaVersion,omitempty"`
107106
}
108107

109108
// ProvisionRuntime requests Runtime provisioning in KEB
@@ -304,7 +303,6 @@ func (c *Client) FetchDashboardURL() (string, error) {
304303
func (c *Client) prepareProvisionDetails(customVersion string) ([]byte, error) {
305304
parameters := provisionParameters{
306305
Name: c.clusterName,
307-
Components: []string{}, // fill with optional components
308306
KymaVersion: customVersion, // If empty filed will be omitted
309307
}
310308
if c.brokerConfig.PlanID != trialPlanID {

0 commit comments

Comments
 (0)