feat(container): update prometheus-node-exporter ( 4.38.0 → 4.39.0 ) #510
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "Flux Diff" | |
on: | |
pull_request: | |
branches: ["main"] | |
paths: ["kubernetes/**"] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
flux-diff: | |
name: Flux Diff | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
strategy: | |
matrix: | |
paths: ["kubernetes"] | |
resources: ["helmrelease", "kustomization"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: pull | |
- name: Checkout default branch | |
uses: actions/checkout@v4 | |
with: | |
ref: "${{ github.event.repository.default_branch }}" | |
path: default | |
- name: Diff resources | |
# FIXME(jfroy): Switch back to upstream after allenporter/flux-local#709 is merged | |
uses: docker://ghcr.io/jfroy/flux-local:latest | |
with: | |
args: >- | |
diff ${{ matrix.resources }} | |
--unified 6 | |
--path /github/workspace/pull/${{ matrix.paths }}/flux | |
--path-orig /github/workspace/default/${{ matrix.paths }}/flux | |
--strip-attrs "helm.sh/chart,checksum/config,app.kubernetes.io/version,chart" | |
--limit-bytes 10000 | |
--all-namespaces | |
--sources "home-kubernetes" | |
--output-file diff.patch | |
- name: Generate diff markdown | |
id: diff-md | |
run: | | |
echo '```diff' > diff.md | |
cat diff.patch >> diff.md | |
echo '```' >> diff.md | |
echo "size=$(stat -c%s diff.patch)" >> "$GITHUB_OUTPUT" | |
- name: Add comment | |
if: ${{ steps.diff-md.outputs.size > 0 }} | |
uses: mshick/add-pr-comment@v2 | |
with: | |
message-id: "${{ github.event.pull_request.number }}/${{ matrix.paths }}/${{ matrix.resources }}" | |
message-failure: Diff was not successful | |
message-path: diff.md |