diff --git a/internal/broker/plans_schema.go b/internal/broker/plans_schema.go index 0383c74c23..08b49a66d9 100644 --- a/internal/broker/plans_schema.go +++ b/internal/broker/plans_schema.go @@ -18,8 +18,6 @@ type RootSchema struct { ShowFormView bool `json:"_show_form_view"` // Specifies in what order properties will be displayed on the form ControlsOrder []string `json:"_controlsOrder"` - // Specified to true loads current instance configuration into the update instance schema - LoadCurrentConfig bool `json:"_load_current_config"` } type ProvisioningProperties struct { @@ -364,10 +362,9 @@ func NewSchema(properties interface{}, update bool, required []string) *RootSche Type: Type{ Type: "object", }, - Properties: properties, - ShowFormView: true, - Required: required, - LoadCurrentConfig: true, + Properties: properties, + ShowFormView: true, + Required: required, } if update { diff --git a/internal/broker/testdata/aws/aws-schema-additional-params-eu.json b/internal/broker/testdata/aws/aws-schema-additional-params-eu.json index 188b8532ce..8e84b8c3b0 100644 --- a/internal/broker/testdata/aws/aws-schema-additional-params-eu.json +++ b/internal/broker/testdata/aws/aws-schema-additional-params-eu.json @@ -12,7 +12,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/aws/aws-schema-additional-params.json b/internal/broker/testdata/aws/aws-schema-additional-params.json index 2ae75b3527..e1e4770426 100644 --- a/internal/broker/testdata/aws/aws-schema-additional-params.json +++ b/internal/broker/testdata/aws/aws-schema-additional-params.json @@ -12,7 +12,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/aws/aws-schema-eu.json b/internal/broker/testdata/aws/aws-schema-eu.json index 43c8cced6d..e496d7dd19 100644 --- a/internal/broker/testdata/aws/aws-schema-eu.json +++ b/internal/broker/testdata/aws/aws-schema-eu.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/aws/aws-schema.json b/internal/broker/testdata/aws/aws-schema.json index f5e3c6f9e5..8a013c43af 100644 --- a/internal/broker/testdata/aws/aws-schema.json +++ b/internal/broker/testdata/aws/aws-schema.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/aws/free-aws-schema-additional-params-eu.json b/internal/broker/testdata/aws/free-aws-schema-additional-params-eu.json index 472f402bd5..112bcc3385 100644 --- a/internal/broker/testdata/aws/free-aws-schema-additional-params-eu.json +++ b/internal/broker/testdata/aws/free-aws-schema-additional-params-eu.json @@ -8,7 +8,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/aws/free-aws-schema-additional-params.json b/internal/broker/testdata/aws/free-aws-schema-additional-params.json index 82d1eb93de..9181f46015 100644 --- a/internal/broker/testdata/aws/free-aws-schema-additional-params.json +++ b/internal/broker/testdata/aws/free-aws-schema-additional-params.json @@ -8,7 +8,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/aws/free-aws-schema-eu.json b/internal/broker/testdata/aws/free-aws-schema-eu.json index e4c4158d71..7c1368e019 100644 --- a/internal/broker/testdata/aws/free-aws-schema-eu.json +++ b/internal/broker/testdata/aws/free-aws-schema-eu.json @@ -6,7 +6,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "modules": { diff --git a/internal/broker/testdata/aws/free-aws-schema.json b/internal/broker/testdata/aws/free-aws-schema.json index 29f0ace25b..db4c3e22db 100644 --- a/internal/broker/testdata/aws/free-aws-schema.json +++ b/internal/broker/testdata/aws/free-aws-schema.json @@ -6,7 +6,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "modules": { diff --git a/internal/broker/testdata/aws/update-aws-schema-additional-params.json b/internal/broker/testdata/aws/update-aws-schema-additional-params.json index ab8650e6a7..b91dddadf8 100644 --- a/internal/broker/testdata/aws/update-aws-schema-additional-params.json +++ b/internal/broker/testdata/aws/update-aws-schema-additional-params.json @@ -7,7 +7,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/aws/update-aws-schema.json b/internal/broker/testdata/aws/update-aws-schema.json index 9aed09282a..397ed8c894 100644 --- a/internal/broker/testdata/aws/update-aws-schema.json +++ b/internal/broker/testdata/aws/update-aws-schema.json @@ -5,7 +5,6 @@ "autoScalerMin", "autoScalerMax" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/aws/update-free-aws-schema-additional-params.json b/internal/broker/testdata/aws/update-free-aws-schema-additional-params.json index f88b804ea4..c135107dc3 100644 --- a/internal/broker/testdata/aws/update-free-aws-schema-additional-params.json +++ b/internal/broker/testdata/aws/update-free-aws-schema-additional-params.json @@ -4,7 +4,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/azure-lite-schema-additional-params-eu-reduced.json b/internal/broker/testdata/azure/azure-lite-schema-additional-params-eu-reduced.json index 56377d06c2..967b8fc877 100644 --- a/internal/broker/testdata/azure/azure-lite-schema-additional-params-eu-reduced.json +++ b/internal/broker/testdata/azure/azure-lite-schema-additional-params-eu-reduced.json @@ -11,7 +11,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/azure-lite-schema-additional-params-eu.json b/internal/broker/testdata/azure/azure-lite-schema-additional-params-eu.json index 6fcd7549c1..62e646fd84 100644 --- a/internal/broker/testdata/azure/azure-lite-schema-additional-params-eu.json +++ b/internal/broker/testdata/azure/azure-lite-schema-additional-params-eu.json @@ -12,7 +12,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/azure-lite-schema-additional-params-reduced.json b/internal/broker/testdata/azure/azure-lite-schema-additional-params-reduced.json index e1bfcbf2c5..b212d9aae6 100644 --- a/internal/broker/testdata/azure/azure-lite-schema-additional-params-reduced.json +++ b/internal/broker/testdata/azure/azure-lite-schema-additional-params-reduced.json @@ -11,7 +11,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/azure-lite-schema-additional-params.json b/internal/broker/testdata/azure/azure-lite-schema-additional-params.json index e0e0d5e2f7..818e6599e6 100644 --- a/internal/broker/testdata/azure/azure-lite-schema-additional-params.json +++ b/internal/broker/testdata/azure/azure-lite-schema-additional-params.json @@ -12,7 +12,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/azure-lite-schema-eu-reduced.json b/internal/broker/testdata/azure/azure-lite-schema-eu-reduced.json index 15bfefba3b..171ec2091a 100644 --- a/internal/broker/testdata/azure/azure-lite-schema-eu-reduced.json +++ b/internal/broker/testdata/azure/azure-lite-schema-eu-reduced.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/azure/azure-lite-schema-eu.json b/internal/broker/testdata/azure/azure-lite-schema-eu.json index 87fa732382..193203c83a 100644 --- a/internal/broker/testdata/azure/azure-lite-schema-eu.json +++ b/internal/broker/testdata/azure/azure-lite-schema-eu.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/azure/azure-lite-schema-reduced.json b/internal/broker/testdata/azure/azure-lite-schema-reduced.json index 540b4ba823..2a568ca675 100644 --- a/internal/broker/testdata/azure/azure-lite-schema-reduced.json +++ b/internal/broker/testdata/azure/azure-lite-schema-reduced.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/azure/azure-lite-schema.json b/internal/broker/testdata/azure/azure-lite-schema.json index a3cec429c5..bd6867c9e2 100644 --- a/internal/broker/testdata/azure/azure-lite-schema.json +++ b/internal/broker/testdata/azure/azure-lite-schema.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/azure/azure-schema-additional-params-eu.json b/internal/broker/testdata/azure/azure-schema-additional-params-eu.json index c75b970e43..eeece583a1 100644 --- a/internal/broker/testdata/azure/azure-schema-additional-params-eu.json +++ b/internal/broker/testdata/azure/azure-schema-additional-params-eu.json @@ -12,7 +12,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/azure-schema-additional-params.json b/internal/broker/testdata/azure/azure-schema-additional-params.json index f28e3c44b9..260d559ae9 100644 --- a/internal/broker/testdata/azure/azure-schema-additional-params.json +++ b/internal/broker/testdata/azure/azure-schema-additional-params.json @@ -12,7 +12,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/azure-schema-eu.json b/internal/broker/testdata/azure/azure-schema-eu.json index c1cb199da8..858ece277b 100644 --- a/internal/broker/testdata/azure/azure-schema-eu.json +++ b/internal/broker/testdata/azure/azure-schema-eu.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/azure/azure-schema.json b/internal/broker/testdata/azure/azure-schema.json index 5f524c41ba..69653f3b4a 100644 --- a/internal/broker/testdata/azure/azure-schema.json +++ b/internal/broker/testdata/azure/azure-schema.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/azure/azure-trial-schema-additional-params.json b/internal/broker/testdata/azure/azure-trial-schema-additional-params.json index 552f20a030..91ac806ed2 100644 --- a/internal/broker/testdata/azure/azure-trial-schema-additional-params.json +++ b/internal/broker/testdata/azure/azure-trial-schema-additional-params.json @@ -6,7 +6,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/azure-trial-schema.json b/internal/broker/testdata/azure/azure-trial-schema.json index f45de7f09c..5ce6601834 100644 --- a/internal/broker/testdata/azure/azure-trial-schema.json +++ b/internal/broker/testdata/azure/azure-trial-schema.json @@ -4,7 +4,6 @@ "name", "modules" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "modules": { diff --git a/internal/broker/testdata/azure/free-azure-schema-additional-params-eu.json b/internal/broker/testdata/azure/free-azure-schema-additional-params-eu.json index 0b51c9f9d6..949d8d6d9e 100644 --- a/internal/broker/testdata/azure/free-azure-schema-additional-params-eu.json +++ b/internal/broker/testdata/azure/free-azure-schema-additional-params-eu.json @@ -8,7 +8,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/free-azure-schema-additional-params.json b/internal/broker/testdata/azure/free-azure-schema-additional-params.json index 7f9707c199..84d3a22d31 100644 --- a/internal/broker/testdata/azure/free-azure-schema-additional-params.json +++ b/internal/broker/testdata/azure/free-azure-schema-additional-params.json @@ -8,7 +8,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/free-azure-schema-eu.json b/internal/broker/testdata/azure/free-azure-schema-eu.json index 79b61c802d..2eb3ba67f5 100644 --- a/internal/broker/testdata/azure/free-azure-schema-eu.json +++ b/internal/broker/testdata/azure/free-azure-schema-eu.json @@ -6,7 +6,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "modules": { diff --git a/internal/broker/testdata/azure/free-azure-schema.json b/internal/broker/testdata/azure/free-azure-schema.json index b27bdfe4b0..0d3bbf738c 100644 --- a/internal/broker/testdata/azure/free-azure-schema.json +++ b/internal/broker/testdata/azure/free-azure-schema.json @@ -6,7 +6,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "modules": { diff --git a/internal/broker/testdata/azure/update-azure-lite-schema-additional-params-reduced.json b/internal/broker/testdata/azure/update-azure-lite-schema-additional-params-reduced.json index 1ca1397b09..0ad6206f7f 100644 --- a/internal/broker/testdata/azure/update-azure-lite-schema-additional-params-reduced.json +++ b/internal/broker/testdata/azure/update-azure-lite-schema-additional-params-reduced.json @@ -7,7 +7,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/update-azure-lite-schema-additional-params.json b/internal/broker/testdata/azure/update-azure-lite-schema-additional-params.json index 018ce48a6f..6bd91fcf39 100644 --- a/internal/broker/testdata/azure/update-azure-lite-schema-additional-params.json +++ b/internal/broker/testdata/azure/update-azure-lite-schema-additional-params.json @@ -7,7 +7,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/update-azure-lite-schema-reduced.json b/internal/broker/testdata/azure/update-azure-lite-schema-reduced.json index 104cf6254f..7d3af88f58 100644 --- a/internal/broker/testdata/azure/update-azure-lite-schema-reduced.json +++ b/internal/broker/testdata/azure/update-azure-lite-schema-reduced.json @@ -5,7 +5,6 @@ "autoScalerMin", "autoScalerMax" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/azure/update-azure-lite-schema.json b/internal/broker/testdata/azure/update-azure-lite-schema.json index 141007cccd..608624e17c 100644 --- a/internal/broker/testdata/azure/update-azure-lite-schema.json +++ b/internal/broker/testdata/azure/update-azure-lite-schema.json @@ -5,7 +5,6 @@ "autoScalerMin", "autoScalerMax" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/azure/update-azure-schema-additional-params.json b/internal/broker/testdata/azure/update-azure-schema-additional-params.json index 2082ab8c60..13b500f8e7 100644 --- a/internal/broker/testdata/azure/update-azure-schema-additional-params.json +++ b/internal/broker/testdata/azure/update-azure-schema-additional-params.json @@ -7,7 +7,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/update-azure-schema.json b/internal/broker/testdata/azure/update-azure-schema.json index 2281b2bf60..6d9207be2a 100644 --- a/internal/broker/testdata/azure/update-azure-schema.json +++ b/internal/broker/testdata/azure/update-azure-schema.json @@ -5,7 +5,6 @@ "autoScalerMin", "autoScalerMax" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/azure/update-azure-trial-schema-additional-params.json b/internal/broker/testdata/azure/update-azure-trial-schema-additional-params.json index f88b804ea4..c135107dc3 100644 --- a/internal/broker/testdata/azure/update-azure-trial-schema-additional-params.json +++ b/internal/broker/testdata/azure/update-azure-trial-schema-additional-params.json @@ -4,7 +4,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/azure/update-free-azure-schema-additional-params.json b/internal/broker/testdata/azure/update-free-azure-schema-additional-params.json index f88b804ea4..c135107dc3 100644 --- a/internal/broker/testdata/azure/update-free-azure-schema-additional-params.json +++ b/internal/broker/testdata/azure/update-free-azure-schema-additional-params.json @@ -4,7 +4,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/gcp/gcp-schema-additional-params-assured-workloads.json b/internal/broker/testdata/gcp/gcp-schema-additional-params-assured-workloads.json index 2d2fd1acd3..b551d81e67 100644 --- a/internal/broker/testdata/gcp/gcp-schema-additional-params-assured-workloads.json +++ b/internal/broker/testdata/gcp/gcp-schema-additional-params-assured-workloads.json @@ -12,7 +12,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/gcp/gcp-schema-additional-params.json b/internal/broker/testdata/gcp/gcp-schema-additional-params.json index dda094adcd..9040c626b7 100644 --- a/internal/broker/testdata/gcp/gcp-schema-additional-params.json +++ b/internal/broker/testdata/gcp/gcp-schema-additional-params.json @@ -12,7 +12,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/gcp/gcp-schema-assured-workloads.json b/internal/broker/testdata/gcp/gcp-schema-assured-workloads.json index ba785a3088..13b2b7c284 100644 --- a/internal/broker/testdata/gcp/gcp-schema-assured-workloads.json +++ b/internal/broker/testdata/gcp/gcp-schema-assured-workloads.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/gcp/gcp-schema.json b/internal/broker/testdata/gcp/gcp-schema.json index 25639294c9..c62e0f1cde 100644 --- a/internal/broker/testdata/gcp/gcp-schema.json +++ b/internal/broker/testdata/gcp/gcp-schema.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/gcp/update-gcp-schema-additional-params.json b/internal/broker/testdata/gcp/update-gcp-schema-additional-params.json index f163a417b2..c405a0dcdf 100644 --- a/internal/broker/testdata/gcp/update-gcp-schema-additional-params.json +++ b/internal/broker/testdata/gcp/update-gcp-schema-additional-params.json @@ -7,7 +7,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/gcp/update-gcp-schema.json b/internal/broker/testdata/gcp/update-gcp-schema.json index ade4f46e82..71eab32cdf 100644 --- a/internal/broker/testdata/gcp/update-gcp-schema.json +++ b/internal/broker/testdata/gcp/update-gcp-schema.json @@ -5,7 +5,6 @@ "autoScalerMin", "autoScalerMax" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/own-cluster-schema-additional-params.json b/internal/broker/testdata/own-cluster-schema-additional-params.json index 3722461d56..1c1226149c 100644 --- a/internal/broker/testdata/own-cluster-schema-additional-params.json +++ b/internal/broker/testdata/own-cluster-schema-additional-params.json @@ -7,7 +7,6 @@ "shootDomain", "modules" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "kubeconfig": { diff --git a/internal/broker/testdata/own-cluster-schema.json b/internal/broker/testdata/own-cluster-schema.json index 3722461d56..1c1226149c 100644 --- a/internal/broker/testdata/own-cluster-schema.json +++ b/internal/broker/testdata/own-cluster-schema.json @@ -7,7 +7,6 @@ "shootDomain", "modules" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "kubeconfig": { diff --git a/internal/broker/testdata/sap-converged-cloud/sap-converged-cloud-schema-additional-params.json b/internal/broker/testdata/sap-converged-cloud/sap-converged-cloud-schema-additional-params.json index 9ef941260b..ebdbd88161 100644 --- a/internal/broker/testdata/sap-converged-cloud/sap-converged-cloud-schema-additional-params.json +++ b/internal/broker/testdata/sap-converged-cloud/sap-converged-cloud-schema-additional-params.json @@ -12,7 +12,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/sap-converged-cloud/sap-converged-cloud-schema.json b/internal/broker/testdata/sap-converged-cloud/sap-converged-cloud-schema.json index 8ee2124287..a1cd7c8062 100644 --- a/internal/broker/testdata/sap-converged-cloud/sap-converged-cloud-schema.json +++ b/internal/broker/testdata/sap-converged-cloud/sap-converged-cloud-schema.json @@ -9,7 +9,6 @@ "modules", "networking" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/sap-converged-cloud/update-sap-converged-cloud-schema-additional-params.json b/internal/broker/testdata/sap-converged-cloud/update-sap-converged-cloud-schema-additional-params.json index 67219e41ab..81ddc80553 100644 --- a/internal/broker/testdata/sap-converged-cloud/update-sap-converged-cloud-schema-additional-params.json +++ b/internal/broker/testdata/sap-converged-cloud/update-sap-converged-cloud-schema-additional-params.json @@ -7,7 +7,6 @@ "oidc", "administrators" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "administrators": { diff --git a/internal/broker/testdata/sap-converged-cloud/update-sap-converged-cloud-schema.json b/internal/broker/testdata/sap-converged-cloud/update-sap-converged-cloud-schema.json index e02da7d58e..368109d4cc 100644 --- a/internal/broker/testdata/sap-converged-cloud/update-sap-converged-cloud-schema.json +++ b/internal/broker/testdata/sap-converged-cloud/update-sap-converged-cloud-schema.json @@ -5,7 +5,6 @@ "autoScalerMin", "autoScalerMax" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "autoScalerMax": { diff --git a/internal/broker/testdata/update-own-cluster-schema-additional-params.json b/internal/broker/testdata/update-own-cluster-schema-additional-params.json index 33081110e1..5a4b9d3322 100644 --- a/internal/broker/testdata/update-own-cluster-schema-additional-params.json +++ b/internal/broker/testdata/update-own-cluster-schema-additional-params.json @@ -3,7 +3,6 @@ "_controlsOrder": [ "kubeconfig" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "kubeconfig": { diff --git a/internal/broker/testdata/update-own-cluster-schema.json b/internal/broker/testdata/update-own-cluster-schema.json index 33081110e1..5a4b9d3322 100644 --- a/internal/broker/testdata/update-own-cluster-schema.json +++ b/internal/broker/testdata/update-own-cluster-schema.json @@ -3,7 +3,6 @@ "_controlsOrder": [ "kubeconfig" ], - "_load_current_config": true, "_show_form_view": true, "properties": { "kubeconfig": {