2 Commits
0.0.1 ... 0.0.3

Author SHA1 Message Date
8867aa39a4 fix ci script
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed
2026-02-19 12:47:32 +01:00
04f9e48d16 fix Dockerfile
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed
2026-02-19 12:45:10 +01:00
2 changed files with 5 additions and 6 deletions

View File

@@ -1,3 +1,6 @@
when:
event: [tag]
steps: steps:
build: build:
image: plugins/kaniko image: plugins/kaniko
@@ -11,8 +14,6 @@ steps:
password: password:
from_secret: container_registry_password from_secret: container_registry_password
dockerfile: Dockerfile dockerfile: Dockerfile
when:
- event: tag
deploy: deploy:
image: quay.io/wollud1969/k8s-admin-helper:0.3.4 image: quay.io/wollud1969/k8s-admin-helper:0.3.4
@@ -23,7 +24,5 @@ steps:
- export IMAGE_TAG=$CI_COMMIT_SHA - export IMAGE_TAG=$CI_COMMIT_SHA
- printf "$KUBE_CONFIG_CONTENT" > /tmp/kubeconfig - printf "$KUBE_CONFIG_CONTENT" > /tmp/kubeconfig
- export KUBECONFIG=/tmp/kubeconfig - export KUBECONFIG=/tmp/kubeconfig
- ./deployment/deploy.sh - ./deploy.sh
when:
- event: tag

View File

@@ -10,7 +10,7 @@ COPY syslog-ng.conf /etc/syslog-ng
RUN mkdir -p /var/log/remote RUN mkdir -p /var/log/remote
VOLUME /var/log/remote VOLUME /var/log/remote
EXPOSE 514/UDP EXPOSE 514/udp
CMD [ "/usr/sbin/syslog-ng", "-f", "/etc/syslog-ng/syslog-ng.conf", "-F" ] CMD [ "/usr/sbin/syslog-ng", "-f", "/etc/syslog-ng/syslog-ng.conf", "-F" ]