Compare commits
11 Commits
0.0.5
...
f60d5d03e9
| Author | SHA1 | Date | |
|---|---|---|---|
|
f60d5d03e9
|
|||
|
eff88e1d2f
|
|||
|
d027163087
|
|||
|
4051ca22a4
|
|||
|
2608e935b8
|
|||
|
51f3b4f227
|
|||
|
006359687f
|
|||
|
f26d304890
|
|||
|
6feec48ac6
|
|||
|
ed6ed66a37
|
|||
|
09498dd0e5
|
@@ -1,59 +0,0 @@
|
|||||||
matrix:
|
|
||||||
APP:
|
|
||||||
- ui
|
|
||||||
- api
|
|
||||||
- abstraction
|
|
||||||
- rules
|
|
||||||
|
|
||||||
env:
|
|
||||||
NAMESPACE: "homea2"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
build:
|
|
||||||
image: plugins/kaniko
|
|
||||||
settings:
|
|
||||||
repo: ${FORGE_NAME}/${CI_REPO}/${APP}
|
|
||||||
registry:
|
|
||||||
from_secret: container_registry
|
|
||||||
auto_tag: true
|
|
||||||
username:
|
|
||||||
from_secret: container_registry_username
|
|
||||||
password:
|
|
||||||
from_secret: container_registry_password
|
|
||||||
dockerfile: apps/${APP}/Dockerfile
|
|
||||||
when:
|
|
||||||
event: [push, tag]
|
|
||||||
ref:
|
|
||||||
exclude:
|
|
||||||
- refs/tags/*-configchange
|
|
||||||
|
|
||||||
create_namespace:
|
|
||||||
image: quay.io/wollud1969/k8s-admin-helper:0.3.4
|
|
||||||
environment:
|
|
||||||
KUBE_CONFIG_CONTENT:
|
|
||||||
from_secret: kube_config
|
|
||||||
commands:
|
|
||||||
- kubectl create namespace ${NAMESPACE} || echo "Namespace ${NAMESPACE} already exists"
|
|
||||||
when:
|
|
||||||
event: [tag]
|
|
||||||
ref:
|
|
||||||
exclude:
|
|
||||||
- refs/tags/*-configchange
|
|
||||||
|
|
||||||
apply_configuration:
|
|
||||||
image: quay.io/wollud1969/k8s-admin-helper:0.3.4
|
|
||||||
environment:
|
|
||||||
KUBE_CONFIG_CONTENT:
|
|
||||||
from_secret: kube_config
|
|
||||||
commands:
|
|
||||||
kubectl create configmap home-automation-config \
|
|
||||||
--from-file=devices=config/devices.yaml \
|
|
||||||
--from-file=groups=config/groups.yaml \
|
|
||||||
--from-file=layout=config/layout.yaml \
|
|
||||||
--from-file=rules=config/rules.yaml \
|
|
||||||
--from-file=scenes=config/scenes.yaml \
|
|
||||||
--namespace=${NAMESPACE} \
|
|
||||||
--dry-run=client -o yaml | kubectl apply -f -
|
|
||||||
when:
|
|
||||||
event: [tag]
|
|
||||||
|
|
||||||
25
.woodpecker/build.yml
Normal file
25
.woodpecker/build.yml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
matrix:
|
||||||
|
APP:
|
||||||
|
- ui
|
||||||
|
- api
|
||||||
|
- abstraction
|
||||||
|
- rules
|
||||||
|
|
||||||
|
steps:
|
||||||
|
build:
|
||||||
|
image: plugins/kaniko
|
||||||
|
settings:
|
||||||
|
repo: ${FORGE_NAME}/${CI_REPO}/${APP}
|
||||||
|
registry:
|
||||||
|
from_secret: container_registry
|
||||||
|
auto_tag: true
|
||||||
|
username:
|
||||||
|
from_secret: container_registry_username
|
||||||
|
password:
|
||||||
|
from_secret: container_registry_password
|
||||||
|
dockerfile: apps/${APP}/Dockerfile
|
||||||
|
when:
|
||||||
|
event: [push, tag]
|
||||||
|
ref:
|
||||||
|
exclude:
|
||||||
|
- refs/tags/*-configchange
|
||||||
33
.woodpecker/predeploy.yml
Normal file
33
.woodpecker/predeploy.yml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
steps:
|
||||||
|
create_namespace:
|
||||||
|
image: quay.io/wollud1969/k8s-admin-helper:0.3.4
|
||||||
|
environment:
|
||||||
|
KUBE_CONFIG_CONTENT:
|
||||||
|
from_secret: kube_config
|
||||||
|
NAMESPACE: "homea2"
|
||||||
|
commands:
|
||||||
|
- kubectl create namespace ${NAMESPACE} || echo "Namespace ${NAMESPACE} already exists"
|
||||||
|
when:
|
||||||
|
event: [tag]
|
||||||
|
ref:
|
||||||
|
exclude:
|
||||||
|
- refs/tags/*-configchange
|
||||||
|
|
||||||
|
apply_configuration:
|
||||||
|
image: quay.io/wollud1969/k8s-admin-helper:0.3.4
|
||||||
|
environment:
|
||||||
|
KUBE_CONFIG_CONTENT:
|
||||||
|
from_secret: kube_config
|
||||||
|
NAMESPACE: "homea2"
|
||||||
|
commands:
|
||||||
|
kubectl create configmap home-automation-config
|
||||||
|
--from-file=devices=config/devices.yaml
|
||||||
|
--from-file=groups=config/groups.yaml
|
||||||
|
--from-file=layout=config/layout.yaml
|
||||||
|
--from-file=rules=config/rules.yaml
|
||||||
|
--from-file=scenes=config/scenes.yaml
|
||||||
|
--namespace=$NAMESPACE
|
||||||
|
--dry-run=client -o yaml | kubectl apply -f -
|
||||||
|
when:
|
||||||
|
event: [tag]
|
||||||
|
|
||||||
Reference in New Issue
Block a user