initial commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Aaron Riedel 2023-02-14 11:58:22 +01:00
commit 5a0c043799
Signed by: aaron
GPG key ID: 643004654D40D577
4 changed files with 52 additions and 0 deletions

35
.drone.yml Normal file
View file

@ -0,0 +1,35 @@
kind: pipeline
name: deploy
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
repo: aaronriedel/kustomize-ci
tags: latest
when:
branch:
- main
event:
- push
- name: docker-build
image: plugins/docker
settings:
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
repo: aaronriedel/kustomize-ci
tags: latest
dry_run: true
when:
exclude:
branch:
- main
event:
- push

4
Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM alpine:3.17.1
RUN apk add --no-cache git curl bash
RUN curl -s https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh | bash
RUN mv /kustomize /bin/kustomize

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# kustomize-ci Image
Alpine + git + kustomize

10
renovate.json Normal file
View file

@ -0,0 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"matchPackagePatterns": ["*"],
"automerge": true,
"automergeType": "branch"
}
]
}