use kaniko to build container images
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
bb22760426
commit
02b6d29367
66
.drone.yml
66
.drone.yml
@ -13,22 +13,18 @@ steps:
|
|||||||
- find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
|
- find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
|
||||||
- bandit -r . + || if [ $? -eq 1 ]; then echo "you fail"; fi
|
- bandit -r . + || if [ $? -eq 1 ]; then echo "you fail"; fi
|
||||||
|
|
||||||
- name: build
|
- name: kaniko
|
||||||
image: docker:stable-dind
|
image: banzaicloud/drone-kaniko
|
||||||
volumes:
|
settings:
|
||||||
- name: dockersock
|
registry: registry.kmlabz.com
|
||||||
path: /var/run
|
repo: goldenpogacsa/${DRONE_REPO_NAME}
|
||||||
environment:
|
username:
|
||||||
DOCKER_USERNAME:
|
from_secret: DOCKER_USERNAME
|
||||||
from_secret: DOCKER_USERNAME
|
password:
|
||||||
DOCKER_PASSWORD:
|
from_secret: DOCKER_PASSWORD
|
||||||
from_secret: DOCKER_PASSWORD
|
tags:
|
||||||
commands:
|
- latest
|
||||||
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
- ${DRONE_BUILD_NUMBER}
|
||||||
- docker build -t="$DOCKER_USERNAME/consumer_api" .
|
|
||||||
- docker build -t="$DOCKER_USERNAME/consumer_api:$DRONE_BUILD_NUMBER" .
|
|
||||||
- docker push "$DOCKER_USERNAME/consumer_api"
|
|
||||||
- docker push "$DOCKER_USERNAME/consumer_api:$DRONE_BUILD_NUMBER"
|
|
||||||
|
|
||||||
- name: make_docs
|
- name: make_docs
|
||||||
image: python:3.8
|
image: python:3.8
|
||||||
@ -38,23 +34,19 @@ steps:
|
|||||||
- cd docs
|
- cd docs
|
||||||
- make html
|
- make html
|
||||||
|
|
||||||
- name: build_docs
|
- name: kaniko
|
||||||
image: docker:stable-dind
|
image: banzaicloud/drone-kaniko
|
||||||
volumes:
|
settings:
|
||||||
- name: dockersock
|
dockerfile: docs/Dockerfile
|
||||||
path: /var/run
|
registry: registry.kmlabz.com
|
||||||
environment:
|
repo: goldenpogacsa/consumer-api-docs
|
||||||
DOCKER_USERNAME:
|
username:
|
||||||
from_secret: DOCKER_USERNAME
|
from_secret: DOCKER_USERNAME
|
||||||
DOCKER_PASSWORD:
|
password:
|
||||||
from_secret: DOCKER_PASSWORD
|
from_secret: DOCKER_PASSWORD
|
||||||
commands:
|
tags:
|
||||||
- cd docs
|
- latest
|
||||||
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
- ${DRONE_BUILD_NUMBER}
|
||||||
- docker build -t="$DOCKER_USERNAME/consumer-api-docs" .
|
|
||||||
- docker build -t="$DOCKER_USERNAME/consumer-api-docs:$DRONE_BUILD_NUMBER" .
|
|
||||||
- docker push "$DOCKER_USERNAME/consumer-api-docs"
|
|
||||||
- docker push "$DOCKER_USERNAME/consumer-api-docs:$DRONE_BUILD_NUMBER"
|
|
||||||
|
|
||||||
- name: slack
|
- name: slack
|
||||||
image: plugins/slack
|
image: plugins/slack
|
||||||
@ -65,15 +57,3 @@ steps:
|
|||||||
icon_url: https://cloudcdn.tormakristof.eu/static/drone.svg
|
icon_url: https://cloudcdn.tormakristof.eu/static/drone.svg
|
||||||
when:
|
when:
|
||||||
status: [ failure ]
|
status: [ failure ]
|
||||||
|
|
||||||
services:
|
|
||||||
- name: docker
|
|
||||||
image: docker:stable-dind
|
|
||||||
privileged: true
|
|
||||||
volumes:
|
|
||||||
- name: dockersock
|
|
||||||
path: /var/run
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
- name: dockersock
|
|
||||||
temp: {}
|
|
||||||
|
Reference in New Issue
Block a user