While instantiating CNF, helm-service stuck in activating state?
There are 2 Workarounds-
Either remove stale entry from mongo from TCA-CP:
db.Cnfs.find().pretty()
db.Cnfs.find().count()
This should match what is there in UI. You’ll need to remove the stale entries manually.
Or
Or disable extension platform
curl --request PUT \
--url https://<tca-cp-ip>/admin/hybridity/api/global/settings/ExtensionPlatform/disableRepoExtensionGroup \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"value": "true"
}'
Comments