big test
ci.vdhsn.com/push Build encountered an error Details

feat/add-catawiki
Adam Veldhousen 2023-07-12 01:38:21 -05:00
parent 38fef91c49
commit 8088b95c1e
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B
1 changed files with 137 additions and 0 deletions

View File

@ -22,6 +22,12 @@ steps:
no-push: true
tags:
- ${DRONE_COMMIT_SHA}
custom_labels:
- com.barretthousen.service=catalog
- com.barretthousen.version=${DRONE_COMMIT_SHA}
- com.barretthousen.git-ref=${DRONE_COMMIT_SHA}
- com.barretthousen.build-date=${DRONE_BUILD_STARTED}
- com.barrethousen.builder=${DRONE_COMMIT_AUTHOR}
username:
from_secret: DOCKER_USERNAME
password:
@ -40,6 +46,132 @@ steps:
build_args:
- "service=runner"
no-push: true
tags:
- ${DRONE_COMMIT_SHA}
custom_labels:
- com.barretthousen.service=runner
- com.barretthousen.version=${DRONE_COMMIT_SHA}
- com.barretthousen.git-ref=${DRONE_COMMIT_SHA}
- com.barretthousen.build-date=${DRONE_BUILD_STARTED}
- com.barrethousen.builder=${DRONE_COMMIT_AUTHOR}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
- name: Build & Publish Auth
image: plugins/kaniko
settings:
dockerfile: "./src/Dockerfile.prod-backend"
context: "./src"
registry: git.vdhsn.com
repo: git.vdhsn.com/barretthousen/service-auth
enable_cache: true
cache_repo: git.vdhsn.com/barretthousen/ci-cache
skip_unused_stages: true
build_args:
- "service=auth"
no-push: true
tags:
- ${DRONE_COMMIT_SHA}
custom_labels:
- com.barretthousen.service=auth
- com.barretthousen.version=${DRONE_COMMIT_SHA}
- com.barretthousen.git-ref=${DRONE_COMMIT_SHA}
- com.barretthousen.build-date=${DRONE_BUILD_STARTED}
- com.barrethousen.builder=${DRONE_COMMIT_AUTHOR}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
- name: Build & Publish Proxy Admin
image: plugins/kaniko
settings:
dockerfile: "./src/Dockerfile.prod-backend"
context: "./src"
registry: git.vdhsn.com
repo: git.vdhsn.com/barretthousen/service-proxy-admin
enable_cache: true
cache_repo: git.vdhsn.com/barretthousen/ci-cache
skip_unused_stages: true
build_args:
- "service=proxy-admin"
no-push: true
tags:
- ${DRONE_COMMIT_SHA}
custom_labels:
- com.barretthousen.service=proxy-admin
- com.barretthousen.version=${DRONE_COMMIT_SHA}
- com.barretthousen.git-ref=${DRONE_COMMIT_SHA}
- com.barretthousen.build-date=${DRONE_BUILD_STARTED}
- com.barrethousen.builder=${DRONE_COMMIT_AUTHOR}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
- name: Build & Publish Proxy Web
image: plugins/kaniko
settings:
dockerfile: "./src/Dockerfile.prod-backend"
context: "./src"
registry: git.vdhsn.com
repo: git.vdhsn.com/barretthousen/service-proxy-web
enable_cache: true
cache_repo: git.vdhsn.com/barretthousen/ci-cache
skip_unused_stages: true
build_args:
- "service=proxy-web"
no-push: true
tags:
- ${DRONE_COMMIT_SHA}
custom_labels:
- com.barretthousen.service=proxy-web
- com.barretthousen.version=${DRONE_COMMIT_SHA}
- com.barretthousen.git-ref=${DRONE_COMMIT_SHA}
- com.barretthousen.build-date=${DRONE_BUILD_STARTED}
- com.barrethousen.builder=${DRONE_COMMIT_AUTHOR}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
- name: Build & Publish Web Client
image: plugins/kaniko
settings:
dockerfile: "./src/Dockerfile.prod-frontend"
context: "./src"
registry: git.vdhsn.com
target: production
repo: git.vdhsn.com/barretthousen/client-web-client
enable_cache: true
cache_repo: git.vdhsn.com/barretthousen/ci-cache
skip_unused_stages: true
build_args:
- "service=web-client"
no-push: true
tags:
- ${DRONE_COMMIT_SHA}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
- name: Build & Publish Admin Client
image: plugins/kaniko
settings:
dockerfile: "./src/Dockerfile.prod-frontend"
context: "./src"
registry: git.vdhsn.com
target: production
repo: git.vdhsn.com/barretthousen/client-admin-client
enable_cache: true
cache_repo: git.vdhsn.com/barretthousen/ci-cache
skip_unused_stages: true
build_args:
- "service=admin-client"
no-push: true
tags:
- ${DRONE_COMMIT_SHA}
username:
@ -64,3 +196,8 @@ steps:
depends_on:
- Build & Publish Catalog
- Build & Publish Runner
- Build & Publish Auth
- Build & Publish Proxy Admin
- Build & Publish Proxy Web
- Build & Publish Web Client
- Build & Publish Admin Client