Hi,
I need a bit of helping! I"m having issues deploying to GAE via the drone-gae plugin covered at in the drone io blog post ‘drone-cloud-native-ci-cd-google-cloud’.
The error message I’ve listed below alludes to the docker image ‘nytimes/drone-gae’ not existing but it does appear to exist hub.docker.com/r/nytimes/drone-gae
Perhaps I have a syntax issue with my 1.0 format? All steps in the below .drone.yml work except the deploy step. Password are all correct in the earlier stages because I am able to publish to docker and GCR.
Drone Version:
drone/drone:1.0.0-rc.5
Error Message:
default: Error: No such image: docker.io/nytimes/drone-gae:latest
.drone.yml
kind: pipeline
name: default
steps:
- name: build
image: node:latest
commands:
- npm install
- npm install -g @angular/cli
- npm run build:uat-server:ssr
- name: docker
image: plugins/docker
settings:
repo: my-repo
username:
from_secret: docker_username
password:
from_secret: docker_password
- name: publish
image: plugins/gcr
settings:
registry: us.gcr.io
repo: gc-project-id/folder-name
tag: latest
json_key:
from_secret: google_credentials
- name: deploy
image: nytimes/drone-gae
settings:
project: gc-project-id
flex_image: us.gcr.io/gc-project-id/image-namelatest
version: latest
addl_flags:
- --stop-previous-version
token:
from_secret: google_credentials
when:
event: push
branch: develop
Thanks!