Kubernates - production deployment

Hi! I added Kubernate throught Gitlab and set .gitlab-ci.yml like:

include:
  - template: Auto-DevOps.gitlab-ci.yml

production:
  environment:
    kubernetes:
      namespace: production

I am using docker in my app. Everything is working till to production step. It won't to make release on server. Here is stacktrace:

[0KRunning with gitlab-runner 13.0.0 (c127439c)
[0;m[0K  on runner-gitlab-runner-8694c4fdd7-9q68g yUSsHA9-
[0;msection_start:1590762846:prepare_executor
[0K[0K[36;1mPreparing the "kubernetes" executor[0;m
[0;m[0KUsing Kubernetes namespace: gitlab-managed-apps
[0;m[0KUsing Kubernetes executor with image registry.gitlab.com/gitlab-org/cluster-integration/auto-deploy-image:v0.15.0 ...
[0;msection_end:1590762846:prepare_executor
[0Ksection_start:1590762846:prepare_script
[0K[0K[36;1mPreparing environment[0;m
[0;mWaiting for pod gitlab-managed-apps/runner-yussha9--project-19047139-concurrent-0jttf4 to be running, status is Pending
Running on runner-yussha9--project-19047139-concurrent-0jttf4 via runner-gitlab-runner-8694c4fdd7-9q68g...
section_end:1590762850:prepare_script
[0Ksection_start:1590762850:get_sources
[0K[0K[36;1mGetting source from Git repository[0;m
[0;m[32;1mFetching changes with git depth set to 50...[0;m
Initialized empty Git repository in /builds/billie-pay/web-app/.git/
[32;1mCreated fresh repository.[0;m
From https://gitlab.com/billie-pay/web-app
 * [new ref]         refs/pipelines/150959696 -> refs/pipelines/150959696
 * [new branch]      master                   -> origin/master
[32;1mChecking out e6b6f58f as master...[0;m

[32;1mSkipping Git submodules setup[0;m
section_end:1590762852:get_sources
[0Ksection_start:1590762852:restore_cache
[0K[0K[36;1mRestoring cache[0;m
[0;msection_end:1590762852:restore_cache
[0Ksection_start:1590762852:download_artifacts
[0K[0K[36;1mDownloading artifacts[0;m
[0;msection_end:1590762852:download_artifacts
[0Ksection_start:1590762852:build_script
[0K[0K[36;1mRunning before_script and script[0;m
[0;m[32;1m$ auto-deploy check_kube_domain[0;m
[32;1m$ auto-deploy download_chart[0;m
Creating /root/.helm 
Creating /root/.helm/repository 
Creating /root/.helm/repository/cache 
Creating /root/.helm/repository/local 
Creating /root/.helm/plugins 
Creating /root/.helm/starters 
Creating /root/.helm/cache/archive 
Creating /root/.helm/repository/repositories.yaml 
Adding stable repo with URL: https://kubernetes-charts.storage.googleapis.com 
Adding local repo with URL: http://127.0.0.1:8879/charts 
$HELM_HOME has been configured at /root/.helm.
Not installing Tiller due to 'client-only' flag having been set
"gitlab" has been added to your repositories
Hang tight while we grab the latest from your chart repositories...
...Unable to get an update from the "local" chart repository (http://127.0.0.1:8879/charts):
	Get http://127.0.0.1:8879/charts/index.yaml: dial tcp 127.0.0.1:8879: connect: connection refused
...Successfully got an update from the "gitlab" chart repository
...Successfully got an update from the "stable" chart repository
Update Complete.
Saving 1 charts
Downloading postgresql from repo https://kubernetes-charts.storage.googleapis.com/
Deleting outdated charts
Hang tight while we grab the latest from your chart repositories...
...Unable to get an update from the "local" chart repository (http://127.0.0.1:8879/charts):
	Get http://127.0.0.1:8879/charts/index.yaml: dial tcp 127.0.0.1:8879: connect: connection refused
...Successfully got an update from the "gitlab" chart repository
...Successfully got an update from the "stable" chart repository
Update Complete.
Saving 1 charts
Downloading postgresql from repo https://kubernetes-charts.storage.googleapis.com/
Deleting outdated charts
[32;1m$ auto-deploy ensure_namespace[0;m
NAME         STATUS   AGE
production   Active   69m
[32;1m$ auto-deploy initialize_tiller[0;m
Checking Tiller...
Tiller is listening on localhost:44134
Client: &version.Version{SemVer:"v2.16.6", GitCommit:"dd2e5695da88625b190e6b22e9542550ab503a47", GitTreeState:"clean"}
[debug] SERVER: "localhost:44134"

Kubernetes: &version.Info{Major:"1", Minor:"14+", GitVersion:"v1.14.9-eks-f459c0", GitCommit:"f459c0672169dd35e77af56c24556530a05e9ab1", GitTreeState:"clean", BuildDate:"2020-03-18T04:24:17Z", GoVersion:"go1.12.12", Compiler:"gc", Platform:"linux/amd64"}
Server: &version.Version{SemVer:"v2.16.6", GitCommit:"dd2e5695da88625b190e6b22e9542550ab503a47", GitTreeState:"clean"}

[32;1m$ auto-deploy create_secret[0;m
Create secret...
secret "gitlab-registry-billie-pay-web-app" deleted
secret/gitlab-registry-billie-pay-web-app replaced
[32;1m$ auto-deploy deploy[0;m
secret "production-secret" deleted
secret/production-secret replaced
No helm values file found at '.gitlab/auto-deploy-values.yaml'
Deploying new stable release...
Release "production" does not exist. Installing it now.
INSTALL FAILED
PURGING CHART
Error: release production failed: timed out waiting for the condition
Successfully purged a chart!
Error: release production failed: timed out waiting for the condition
section_end:1590763183:build_script
[0Ksection_start:1590763183:after_script
[0K[0K[36;1mRunning after_script[0;m
[0;msection_end:1590763184:after_script
[0Ksection_start:1590763184:upload_artifacts_on_failure
[0K[0K[36;1mUploading artifacts for failed job[0;m
[0;msection_end:1590763184:upload_artifacts_on_failure
[0K[31;1mERROR: Job failed: command terminated with exit code 1
[0;m

I don't how to verify what problem is here.