int32bit
int32bit
Yes, Welcome : )
This tool just calls Harbor API, so if the server side support this function, our script will be really easy to add this feature.
@stephenwolfe1 Could you upload your PR to fix this ? Thanks
Would you try to use single quotes instead in your environment `HARBOR_USERNAME` to avoid misinterpreting escape ?
Yep, it seems work well, but i can't stand the error message in the docker log. Is there any way to get rid of those error from the log ?
Hi @matthewfischer, I found your blog https://www.mattfischer.com/blog/?p=665, and I wonder why keystone fernet token validation operations are much slower than uuid operations. The performance is up to 14x slower which...
Thanks for your feedback, I have added missing `HARBOR_PROJECT` environment to docker alias in docs. ``` alias harbor='docker run -e HARBOR_USERNAME="admin" -e HARBOR_PASSWORD="Harbor12345" -e HARBOR_PROJECT=1 -e HARBOR_URL="https://docker-reg.mydomain.com" --rm drodriguez/harborclient harbor'...
Could you please run ```bash curl -g -i 'https://docker-reg.mydomain.com/api/repositories?project_id=1' -X GET -H "Accept: application/json" -H "Harbor-API-Version: v2" -H "User-Agent: python-harborclient" -b "beegosessionID: 73f10df3ce3c792ad44616fa4acbfed7" ``` in your bash and check if...
I suggest you create a breakpoint(pdb for example) in https://github.com/int32bit/python-harborclient/blob/master/harborclient/v2/shell.py#L319 and run again step by step, then identify where the potential bottlenecks might be.
I don't think the API request should take up so long time(At most 10 seconds in our environment). Could you please do a API request using pure HTTP like `curl`...