Since we want to get rid of the NFS server, we need to use something else for the registry storage. We can use S3 for this by setting the following:
{noformat} openshift_hosted_registry_storage_kind=object openshift_hosted_registry_storage_provider=s3 openshift_hosted_registry_storage_s3_accesskey=access_key_id openshift_hosted_registry_storage_s3_secretkey=secret_access_key openshift_hosted_registry_storage_s3_bucket=bucket_name openshift_hosted_registry_storage_s3_region=bucket_region openshift_hosted_registry_storage_s3_chunksize=26214400 openshift_hosted_registry_storage_s3_rootdirectory=/registry openshift_hosted_registry_pullthrough=true openshift_hosted_registry_acceptschema2=true openshift_hosted_registry_enforcequota=true {noformat}
Notes:
* S3 bucket must exist prior to running the installation.
https://docs.openshift.com/container-platform/3.5/install_config/install/advanced_install.html#advanced-install-registry-storage |
|