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
Fix git related issues found in release testing (#4850)
* Fix helm chart note for ClusterIP
* CF Push: Ensure git credentials are not stored in env var
- use a specific var for clone url instead of obj that becomes env var
- tidy up logic
* Fix issue where path was unescaped, causing proxy fetch of gitlab projects containing %2f to 404
* Update clone failed text, repo does not now have to be public
* Apply nginx uri substituion fix to nginx.dev.conf as well
- think this is only used by docker compose, which isn't supported anymore
Copy file name to clipboardexpand all lines: src/frontend/packages/cloud-foundry/src/features/applications/deploy-application/deploy-application-deployer.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -341,7 +341,7 @@ export class DeployApplicationDeployer {
341
341
break;
342
342
caseSocketEventTypes.CLOSE_FAILED_CLONE:
343
343
this.onClose(log,'Deploy Failed - Failed to clone repository!',
344
-
'Failed to deploy app! Please make sure the repository is public.');
344
+
'Failed to deploy app! Please make sure the repository is accessible.');
345
345
break;
346
346
caseSocketEventTypes.CLOSE_FAILED_NO_BRANCH:
347
347
this.onClose(log,'Deploy Failed - Failed to located branch!',
0 commit comments