Gitlab CI / CD管道将项目部署到Google k8s

时间:2019-02-13 09:52:30

标签: gitlab

我使用以下文件创建了一个gitlab项目:

enter image description here

.gitlab-ci.yml基本上是

    - kubectl get pods
    - kubectl apply -f sonar-data.yaml
    - kubectl apply -f sonar-extensions.yaml
    - kubectl apply -f sonar-secret.yaml
    - kubectl apply -f sonar-deployment.yaml
    - kubectl apply -f sonar-svc.yaml

但是在运行kubectl时失败,并出现以下错误:

$ kubectl get pods
The connection to the server localhost:8080 was refused - did you specify the right host or port?

通过cat ~/.kube/config,它没有显示此类文件。

但是我的kubernetes已经在gitlab中配置,如下所示:

enter image description here

enter image description here

那么哪里错了?预先感谢!

0 个答案:

没有答案