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
When an app is being reconciled, the app controller createsvcap-application and vcap-services secrets whose names are set to app_name, followed by the -vcap-services and -vcap-application suffixes. This naming convention is quite naive, names should really be uuids. Furthermore, the secret names are stored in the app status, so using naming convention does not really make sense.
Action to take
The app controller should set uuid.NewString() (uuidv4) names for those secrets
Make sure that such a change does not affect existing apps. It shouldn't as the secret names should be already stored in the app status
The text was updated successfully, but these errors were encountered:
When an app is being reconciled, the app controller creates
vcap-application
andvcap-services
secrets whose names are set toapp_name
, followed by the-vcap-services
and-vcap-application
suffixes. This naming convention is quite naive, names should really be uuids. Furthermore, the secret names are stored in the app status, so using naming convention does not really make sense.Action to take
uuid.NewString()
(uuidv4) names for those secretsThe text was updated successfully, but these errors were encountered: