Развертывание в кластере Kubernetes, созданном в GitLab, со значениями по умолчанию после указания
stages:
- build
- deploy
build:
stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
only:
- master
script:
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE
deploy:
stage: deploy
image: gcr.io/triggermesh/tm@sha256:e3ee74db94d215bd297738d93577481f3e4db38013326c90d57f873df7ab41d5
only:
- master
environment: production
script:
- echo "$CI_REGISTRY_IMAGE"
- tm -n "$KUBE_NAMESPACE" --config "$KUBECONFIG" deploy service "$CI_PROJECT_NAME" --from-image "$CI_REGISTRY_IMAGE" --wait
на .gitlab-ci.yml
и
FROM maven:3-jdk-11
COPY . .
RUN mvn --batch-mode --update-snapshots install
ENV PORT=8080
EXPOSE 8080
CMD java -jar target/hello-world-0.1-SNAPSHOT.jar
на Dockerfile
этапе завершается неудачно из-за
$ tm -n "$KUBE_NAMESPACE" --config "$KUBECONFIG" deploy service "$CI_PROJECT_NAME" --from-image "$CI_REGISTRY_IMAGE" --wait
Deployment started. Run "tm -n hello-world-10755640 describe service hello-world" to see the details
Waiting for ready state.2019/02/09 15:02:50 Revision "hello-world-00001" failed with message: "no token in bearer response:\n{\"errors\":[{\"code\":\"DENIED\",\"message\":\"access forbidden\"}],\"http_status\":403}".
ERROR: Job failed: exit code 1
Проект представляет собой приложение Spring Boot.Кластер исправен в соответствии с консолью Google Cloud.