1
0
Fork 0
mirror of https://github.com/aevea/action-kaniko.git synced 2025-05-10 09:30:01 +02:00

Initial commit

This commit is contained in:
Alex Viscreanu 2020-02-15 18:55:26 +01:00
commit b351432674
No known key found for this signature in database
GPG key ID: 60A6BD7F046C850B
6 changed files with 347 additions and 0 deletions

43
action.yml Normal file
View file

@ -0,0 +1,43 @@
# kaniko.yml
name: "Kaniko builder"
description: "Build and push docker images using Kaniko"
branding:
icon: anchor
color: orange
inputs:
registry:
description: "Docker registry where the image will be pushed"
required: false
username:
description: "Username used for authentication to the Docker registry"
required: false
password:
description: "Password used for authentication to the Docker registry"
required: false
image:
description: "Image name"
required: true
tag:
description: "Image tag"
required: false
cache:
description: "Enables build cache"
required: false
cache_ttl:
description: "How long the cache should be considered valid"
required: false
cache_registry:
description: "Docker registry meant to be used as cache"
required: false
cache_directory:
description: "Filesystem path meant to be used as cache"
required: false
build_file:
description: "Dockerfile filename"
required: false
extra_args:
description: "Additional arguments to be passed to the kaniko executor"
required: false
runs:
using: "docker"
image: "Dockerfile"