我正在使用 gitlab CI/CD 和 GKE。我正在尝试通过 gitlab 创建一个秘密。我收到如下错误
The connection to the server localhost:8080 was refused - did you specify the right host or port?
以下是 yaml 文件中的代码。
deploy to dev:
stage: Dev-Deploy
image: dtzar/helm-kubectl
script:
- kubectl create secret docker-registry pradeep_secret --docker-server=$ARTIFACTORY_DOCKER_REPOSITORY --docker-username=$ARTIFACTORY_USER --docker-password=$ARTIFACTORY_PASS --docker-email="abc@gmail.com"
我该如何进行调试或修复。