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
When replicating between two Harbor instances, both behind the provided Nginx proxy (official harbor helm chart), the target harbor-nginx logs show the error: "upstream sent too big header while reading response header from upstream".
Is there a way in the values.yaml to modify the deployed harbor-nginx configmap?
We got it to work by adding the following values to the http section, by editing the live manifest.
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
The issues with this are:
We have to do this manually (or create some script to automate it)
Since we deploy harbor via ArgoCD, it constantly sees the configmap as out of sync, and will overwrite on next sync.
The text was updated successfully, but these errors were encountered:
Hey @Vad1mo we are using the Nginx server that is used when exposing via loadBalancerIP. Any thoughts on how we can accomplish the same thing in the values.yaml for the Nginx server?
@Vad1mo just to understand that right: doing the push to Azure should not involve any proxy or LB in between, should it? Maybe on the Azure side...but on the Harbor end I would have expected a direct connection from the client doing the push replication to the Azure server?
When replicating between two Harbor instances, both behind the provided Nginx proxy (official harbor helm chart), the target harbor-nginx logs show the error: "upstream sent too big header while reading response header from upstream".
Is there a way in the values.yaml to modify the deployed harbor-nginx configmap?
We got it to work by adding the following values to the http section, by editing the live manifest.
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
The issues with this are:
The text was updated successfully, but these errors were encountered: