| `KUBE_NAMESPACE` | string | no | The deployment namespace. If not specified, the context default will be used. If the context has no default, falls back to `default` | v0.1.0 ~ |
| `AUTO_DEVOPS_DEPLOY_DEBUG` | boolean | no | See [Customizing Auto DevOps](https://docs.gitlab.com/ee/topics/autodevops/customize.html). | [v0.16.0](https://gitlab.com/gitlab-org/cluster-integration/auto-deploy-image/compare/v0.15.0...v0.16.0) ~ |
| `HELM_RELEASE_NAME` | string | no | See [Customizing Auto DevOps](https://docs.gitlab.com/ee/topics/autodevops/customize.html). | v0.1.0 ~ |
pod_name=$(kubectl get pod -l"app=$appLabel"-n"$KUBE_NAMESPACE"--sort-by'{.metadata.creationTimestamp}'-o custom-columns=:metadata.name --no-headers | tail-n 1)
pod_name=$(kubectl -n"$EXPECTED_NAMESPACE"get pod -l"app=$appLabel"--sort-by'{.metadata.creationTimestamp}'-o custom-columns=:metadata.name --no-headers | tail-n 1)
# Wait for DB pod to be ready
count=0
while[[$(kubectl get pods -l"app=$dbLabel"-o'jsonpath={..status.conditions[?(@.type=="Ready")].status}')!="True"]];do