Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
9360911106 | |||
cc11c392ae | |||
1d357a43f4 | |||
b49c2f9236 | |||
5a2f9be429 | |||
![]() |
ca7005705e | ||
![]() |
51aa742593 | ||
![]() |
8379941aeb | ||
![]() |
565ab14808 | ||
![]() |
a48362f875 | ||
![]() |
0712ed76e9 | ||
![]() |
1379e9d724 | ||
![]() |
af1f7ea186 | ||
![]() |
98dea6ec95 |
30
.drone.yml
Normal file
30
.drone.yml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
steps:
|
||||||
|
- name: build-image
|
||||||
|
image: docker:dind
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run
|
||||||
|
environment:
|
||||||
|
DOCKER_USERNAME:
|
||||||
|
from_secret: DOCKER_USERNAME
|
||||||
|
DOCKER_PASSWORD:
|
||||||
|
from_secret: DOCKER_PASSWORD
|
||||||
|
commands:
|
||||||
|
- sleep 10
|
||||||
|
- echo "$DOCKER_PASSWORD" | docker login --username "$DOCKER_USERNAME" --password-stdin registry.kmlabz.com
|
||||||
|
- docker build -t registry.kmlabz.com/tormakris/drone-kaniko .
|
||||||
|
- docker push registry.kmlabz.com/tormakris/drone-kaniko
|
||||||
|
|
||||||
|
services:
|
||||||
|
- name: docker
|
||||||
|
image: docker:dind
|
||||||
|
privileged: true
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
temp: {}
|
@ -1,4 +1,4 @@
|
|||||||
FROM gcr.io/kaniko-project/executor:debug-v0.9.0
|
FROM gcr.io/kaniko-project/executor:debug
|
||||||
|
|
||||||
ENV HOME /root
|
ENV HOME /root
|
||||||
ENV USER root
|
ENV USER root
|
||||||
|
27
README.md
27
README.md
@ -73,6 +73,33 @@ steps:
|
|||||||
from_secret: docker-password
|
from_secret: docker-password
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Auto tag
|
||||||
|
|
||||||
|
Set `auto_tag: true`.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: golang
|
||||||
|
commands:
|
||||||
|
- go get
|
||||||
|
- go build
|
||||||
|
- name: publish
|
||||||
|
image: banzaicloud/drone-kaniko
|
||||||
|
settings:
|
||||||
|
registry: registry.example.com
|
||||||
|
repo: registry.example.com/example-project
|
||||||
|
auto_tag: true # higher priority then .tags file
|
||||||
|
# tags: ${DRONE_COMMIT_SHA} <= it must be left undefined to use auto_tag
|
||||||
|
username:
|
||||||
|
from_secret: docker-username
|
||||||
|
password:
|
||||||
|
from_secret: docker-password
|
||||||
|
```
|
||||||
|
|
||||||
## Test that it can build
|
## Test that it can build
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
38
plugin.sh
38
plugin.sh
@ -42,6 +42,14 @@ if [[ "${PLUGIN_CACHE:-}" == "true" ]]; then
|
|||||||
CACHE="--cache=true"
|
CACHE="--cache=true"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "${PLUGIN_CACHE_REPO:-}" ]; then
|
||||||
|
CACHE_REPO="--cache-repo=${REGISTRY}/${PLUGIN_CACHE_REPO}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "${PLUGIN_CACHE_TTL:-}" ]; then
|
||||||
|
CACHE_TTL="--cache-ttl=${PLUGIN_CACHE_TTL}"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -n "${PLUGIN_BUILD_ARGS:-}" ]; then
|
if [ -n "${PLUGIN_BUILD_ARGS:-}" ]; then
|
||||||
BUILD_ARGS=$(echo "${PLUGIN_BUILD_ARGS}" | tr ',' '\n' | while read build_arg; do echo "--build-arg=${build_arg}"; done)
|
BUILD_ARGS=$(echo "${PLUGIN_BUILD_ARGS}" | tr ',' '\n' | while read build_arg; do echo "--build-arg=${build_arg}"; done)
|
||||||
fi
|
fi
|
||||||
@ -50,12 +58,38 @@ if [ -n "${PLUGIN_BUILD_ARGS_FROM_ENV:-}" ]; then
|
|||||||
BUILD_ARGS_FROM_ENV=$(echo "${PLUGIN_BUILD_ARGS_FROM_ENV}" | tr ',' '\n' | while read build_arg; do echo "--build-arg ${build_arg}=$(eval "echo \$$build_arg")"; done)
|
BUILD_ARGS_FROM_ENV=$(echo "${PLUGIN_BUILD_ARGS_FROM_ENV}" | tr ',' '\n' | while read build_arg; do echo "--build-arg ${build_arg}=$(eval "echo \$$build_arg")"; done)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# auto_tag, if set auto_tag: true, auto generate .tags file
|
||||||
|
# support format Major.Minor.Release or start with `v`
|
||||||
|
# docker tags: Major, Major.Minor, Major.Minor.Release and latest
|
||||||
|
if [[ "${PLUGIN_AUTO_TAG:-}" == "true" ]]; then
|
||||||
|
TAG=$(echo "${DRONE_TAG:-}" |sed 's/^v//g')
|
||||||
|
part=$(echo "${TAG}" |tr '.' '\n' |wc -l)
|
||||||
|
# expect number
|
||||||
|
echo ${TAG} |grep -E "[a-z-]" &>/dev/null && isNum=1 || isNum=0
|
||||||
|
|
||||||
|
if [ ! -n "${TAG:-}" ];then
|
||||||
|
echo "latest" > .tags
|
||||||
|
elif [ ${isNum} -eq 1 -o ${part} -gt 3 ];then
|
||||||
|
echo "${TAG},latest" > .tags
|
||||||
|
else
|
||||||
|
major=$(echo "${TAG}" |awk -F'.' '{print $1}')
|
||||||
|
minor=$(echo "${TAG}" |awk -F'.' '{print $2}')
|
||||||
|
release=$(echo "${TAG}" |awk -F'.' '{print $3}')
|
||||||
|
|
||||||
|
major=${major:-0}
|
||||||
|
minor=${minor:-0}
|
||||||
|
release=${release:-0}
|
||||||
|
|
||||||
|
echo "${major},${major}.${minor},${major}.${minor}.${release},latest" > .tags
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -n "${PLUGIN_TAGS:-}" ]; then
|
if [ -n "${PLUGIN_TAGS:-}" ]; then
|
||||||
DESTINATIONS=$(echo "${PLUGIN_TAGS}" | tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
|
DESTINATIONS=$(echo "${PLUGIN_TAGS}" | tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
|
||||||
elif [ -f .tags ]; then
|
elif [ -f .tags ]; then
|
||||||
DESTINATIONS=$(cat .tags| tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
|
DESTINATIONS=$(cat .tags| tr ',' '\n' | while read tag; do echo "--destination=${REGISTRY}/${PLUGIN_REPO}:${tag} "; done)
|
||||||
elif [ -n "${PLUGIN_REPO:-}" ]; then
|
elif [ -n "${PLUGIN_REPO:-}" ]; then
|
||||||
DESTINATIONS="--destination=${PLUGIN_REPO}:latest"
|
DESTINATIONS="--destination=${REGISTRY}/${PLUGIN_REPO}:latest"
|
||||||
else
|
else
|
||||||
DESTINATIONS="--no-push"
|
DESTINATIONS="--no-push"
|
||||||
# Cache is not valid with --no-push
|
# Cache is not valid with --no-push
|
||||||
@ -68,6 +102,8 @@ fi
|
|||||||
${EXTRA_OPTS} \
|
${EXTRA_OPTS} \
|
||||||
${DESTINATIONS} \
|
${DESTINATIONS} \
|
||||||
${CACHE:-} \
|
${CACHE:-} \
|
||||||
|
${CACHE_TTL:-} \
|
||||||
|
${CACHE_REPO:-} \
|
||||||
${TARGET:-} \
|
${TARGET:-} \
|
||||||
${BUILD_ARGS:-} \
|
${BUILD_ARGS:-} \
|
||||||
${BUILD_ARGS_FROM_ENV:-}
|
${BUILD_ARGS_FROM_ENV:-}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user