Gitlab Helm Chart Install - Sidekiq Continous Restart

Doing a complete fresh install of helm chart for gitlab v4.1.2. Underlying K8S version is 1.16.10

The following as custom valuse:

certmanager-issuer:
email: “email@email.com
nginx-ingress:
enabled: false
redis:
cluster:
enabled: true
global:
ingress:
configureCertmanager: false
certmanager:
install: false
gitlab-runner:
install: false
gitlab:
sidekiq:
minReplicas: 1
maxReplicas: 1
gitlab-shell:
minReplicas: 1
maxReplicas: 1
prometheus:
install: false
registry:
enabled: false

All pods & workload starts successfully except for sidekiq & webservice.

Seems like the pods terminate at this point:

Sidekiq log:
2020-07-16T12:49:41.334Z 8 TID-gnevcng5w INFO: Cron Jobs - add job with name: geo_repository_verification_secondary_scheduler_worker
16/07/2020 22:49:41 2020-07-16T12:49:41.336Z 8 TID-gnevcng5w INFO: Cron Jobs - add job with name: geo_secondary_registry_consistency_worker
16/07/2020 22:49:44 Creating scope :of_projects. Overwriting existing method MergeRequest.of_projects.
16/07/2020 22:49:44 Creating scope :join_project. Overwriting existing method MergeRequest.join_project.
16/07/2020 22:49:44 Creating scope :references_project. Overwriting existing method MergeRequest.references_project.
16/07/2020 22:49:44 Creating scope :system. Overwriting existing method Note.system.
16/07/2020 22:49:56 Creating scope :without_statuses. Overwriting existing method CommitStatus.without_statuses.
16/07/2020 22:49:57 Creating scope :opened. Overwriting existing method Epic.opened.
16/07/2020 22:49:57 Creating scope :closed. Overwriting existing method Epic.closed.
16/07/2020 22:49:59 An enum element in Ci::Runner uses the prefix ‘not_’. This will cause a conflict with auto generated negative scopes.
16/07/2020 22:50:04 Creating scope :order_created_desc. Overwriting existing method Packages::Package.order_created_desc.
16/07/2020 22:50:04 Creating scope :order_name_desc. Overwriting existing method Packages::Package.order_name_desc.
16/07/2020 22:50:16 Creating scope :without_statuses. Overwriting existing method Ci::Pipeline.without_statuses.

Webservices Log:
Creating scope :order_name_asc. Overwriting existing method Member.order_name_asc.
16/07/2020 22:52:47 Creating scope :order_name_desc. Overwriting existing method Member.order_name_desc.
16/07/2020 22:52:48 Creating scope :with_logging_info. Overwriting existing method PagesDomain.with_logging_info.
16/07/2020 22:52:48 Creating scope :system. Overwriting existing method PrometheusMetric.system.
16/07/2020 22:53:05 Creating scope :system. Overwriting existing method Gitlab::DatabaseImporters::CommonMetrics::PrometheusMetric.system.
16/07/2020 22:53:17 Creating scope :code_owner. Overwriting existing method ApprovalMergeRequestRule.code_owner.
16/07/2020 22:53:18 Creating scope :failed. Overwriting existing method Geo::UploadRegistry.failed.

Connectivity to redis & postgres are successful. Tried multiple helm uninstall/install, the issue still persists.

What else can i check to further troubleshoot this issue?