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
I have been trying to setup gitkube for my application. The k8s cluster is running on AWS EKS. Gitkubed has been deployed as a LoadBalancer.
I've created the remote.yaml and configured the git remote. When I run git push leadsvc master, I get the following error:
ControlPath too long ('/home/srv_twry/.ssh/ssh-default-leadsvc@a4d730ced73e911ea95fe0ab91861530-1070077455.us-east-1.elb.amazonaws.com:22' >= 108 bytes)
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Anyway to fix this? Where can I save space in order to fit it in the limit?
The text was updated successfully, but these errors were encountered:
You can add ControlPath ~/.ssh/%C in your .ssh/config which will use a hash instead of the full connection information. A small downside is that the control socket names are gibberish but the upside is that the length is fixed so you won't run into the path length problem.
Hi,
I have been trying to setup
gitkube
for my application. The k8s cluster is running on AWS EKS.Gitkubed
has been deployed as aLoadBalancer
.I've created the
remote.yaml
and configured the git remote. When I rungit push leadsvc master
, I get the following error:Anyway to fix this? Where can I save space in order to fit it in the limit?
The text was updated successfully, but these errors were encountered: