-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] client update
command fails
#1083
Comments
client update
cmmand failsclient update
command fails
Hi @kanngiesser Thank you for reporting this. The decider is doing the correct behaviour as it is conforming to the OSBAPI spec for the case when maintenance info is published. You are correct that the right behaviour is for the Unfortunately, the team does not have the bandwidth to work on this request at the moment and we can't promise when or if we would be able to pick this up. However, we would happily review a PR if you are able to do that. Thank you, |
I may have some time to contribute a fix for this. I've taken a look at the CF v3 API docs on the maintenance object. I'm curious, how is the plan version determined in the CSB? I don't see an option to specify it in the brokerpak spec. |
Hi @jameshochadel, the logic which decides whether a service instance parameter should be updated or whether the service version should instead be upgraded is implemented in The function var maintenanceInfo *domain.MaintenanceInfo
if featureflags.Enabled(featureflags.TfUpgradeEnabled) {
maintenanceInfo = &domain.MaintenanceInfo{
Version: tfBinariesContext.DefaultTfVersion.String(),
Description: fmt.Sprintf(`This upgrade provides support for OpenTofu version: %s. The upgrade operation will take a while. The instance and all associated bindings will be upgraded.`, tfBinariesContext.DefaultTfVersion.String()),
}
} |
Description
The
client update
command fails for service instances which were provisioned bycsb client provision
Expected Behavior
It should be possible to run
csb client update
for service instances which were provisioned withcsb client provision
. Service updates should allow to change user-provided parameters and to change the service plan.Actual Behavior
The
client update
command fails with error messageerror deciding update path: passed maintenance_info does not match the catalog maintenance_info
.Possible Fix
The
client update
command should send a value forprevious_values.maintenance_info.version
andmaintenance_info.version
when sending the update request. Both values must match.With the current implementation, both
previous_values
andmaintenance_info
are left empty when sending the request.Alternatively,
brokerapi/broker/decider/decider.go
should be updated to match the use-case for the client update command instead of throwing ErrMaintenanceInfoConflictSteps to Reproduce
csb client provision --serviceid "${SERVICEID}" --planid "${PLANID}" --instanceid "${INSTANCEID}"
csb client update --serviceid "${SERVICEID}" --planid "${PLANID}" --instanceid "${INSTANCEID}" --instanceid "1" --params '{}'
Context
Failed to test service updates (after import) locally during Brokerpak development
Your Environment
Version used: v2.1.2
Operating System and version (desktop): Ubuntu 22.04.4 LTS (Running from Docker image mcr.microsoft.com/devcontainers/base:jammy)
Link to your project (if public): --
Platform (Azure/AWS/GCP): Local Testing
Applicable Services: Running with mariadb:11.4.2-noble backend (Docker)
The text was updated successfully, but these errors were encountered: