Compare commits

..

3 Commits

Author SHA1 Message Date
e1e5661abc Use network mode host for build action.
Some checks failed
Build prometheus image / Build-and-release-image (push) Failing after 1m3s
2025-05-06 09:47:35 +00:00
269b572f64 Use newer build-push action.
All checks were successful
Build prometheus image / Build-and-release-image (push) Successful in 1m26s
2025-04-30 08:09:27 +00:00
bbefb1dd7b Remove glances from monitoring stack.
All checks were successful
Build prometheus image / Build-and-release-image (push) Successful in 2m17s
2025-04-18 14:40:52 +02:00
2 changed files with 6 additions and 4 deletions

View File

@@ -21,6 +21,9 @@ jobs:
steps: steps:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
with:
buildkitd-flags: '--allow-insecure-entitlement network.host'
driver-opts: network=host
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v3
@@ -49,10 +52,12 @@ jobs:
images: ${{ secrets.REGISTRY_URL }}${{ env.IMAGE }} images: ${{ secrets.REGISTRY_URL }}${{ env.IMAGE }}
- name: Build and push Docker image - name: Build and push Docker image
uses: docker/build-push-action@v4 uses: docker/build-push-action@v6
env: env:
ACTIONS_RUNTIME_TOKEN: '' ACTIONS_RUNTIME_TOKEN: ''
with: with:
allow: network.host
network: host
tags: ${{ vars.LOCAL_REGISTRY_URL }}${{ env.IMAGE }}:latest tags: ${{ vars.LOCAL_REGISTRY_URL }}${{ env.IMAGE }}:latest
push: true push: true

View File

@@ -15,6 +15,3 @@ scrape_configs:
- job_name: traefik - job_name: traefik
static_configs: static_configs:
- targets: ['traefik.fam-steinle.de'] - targets: ['traefik.fam-steinle.de']
- job_name: glances
static_configs:
- targets: ['glances.fam-steinle.de']