mirror of
https://github.com/openshift/image-registry.git
synced 2026-02-05 09:45:55 +01:00
docker distribution expects REGISTRY_HTTP_TLS_CIPHERSUITES as a json array (e.g., '["a", "b"]'), while openshift image registry expects comma-separated values (e.g., 'a,b'). setting this variable in the openshift format causes the registry to crash during config parsing. this change replaces REGISTRY_HTTP_TLS_CIPHERSUITES with OPENSHIFT_REGISTRY_HTTP_TLS_CIPHERSUITES to use the comma-separated format. Since the registry cannot start with the old variable set incorrectly, there is no backward compatibility concern.