feat(container): update image kube-prometheus-stack to v58.7.2 #678
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
--- | |
name: "Flux Tests" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths: ["kubernetes/**.yaml"] | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
jobs: | |
flux-diff: | |
name: Flux Diff | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
strategy: | |
matrix: | |
path: ["kubernetes"] | |
resource: ["helmrelease", "kustomization"] | |
steps: | |
- name: Setup Flux CLI | |
uses: fluxcd/flux2/action@main | |
- name: Diff Resources | |
uses: allenporter/flux-local/action/diff@a7781d853eb47a8c5b24406f1a1ebe6c2c220c73 # 5.3.1 | |
id: diff | |
with: | |
sources: k8s-homelab | |
path: "${{ matrix.path }}" | |
resource: "${{ matrix.resource }}" | |
- if: ${{ steps.diff.outputs.diff != '' }} | |
name: Add comment | |
uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
message-id: "${{ github.event.pull_request.number }}/${{ matrix.path }}/${{ matrix.resource }}" | |
message-failure: Diff was not successful | |
message: | | |
```diff | |
${{ steps.diff.outputs.diff }} | |
``` | |
# flux-test: | |
# name: Flux Test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
# - name: Test Resources | |
# uses: allenporter/flux-local/action/test@efbe055c6dc2a63d1102db582632d2aa03696664 # 3.1.1 | |
# with: | |
# path: kubernetes/tpi/flux/config | |
# enable-helm: true | |
# enable-kyverno: false |