adamant-kite-43734
05/10/2026, 11:24 AMworried-state-78253
05/13/2026, 1:43 PMcurl -sS -u '<gitlab-token-username>:<gitlab-token-value>' \
'<HTTPS://REPOADDRESS>' \
| head
That asserted the cluster to see the repo with our credentials, no idea why your seeing Write access issue...
Our secret was created with -
kubectl -n fleet-default create secret generic <xxx-git-auth> \
--type=<http://kubernetes.io/basic-auth|kubernetes.io/basic-auth> \
--from-literal=username='<gitlab-token-username>' \
--from-literal=password='<gitlab-token-value>'
kubernetes.io/basic-auth example above - you may want kubernetes.io/ssh-auth instead... good luck