Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sysdiglabs/postgres_exporter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.18
Choose a base ref
...
head repository: sysdiglabs/postgres_exporter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.11.19
Choose a head ref
  • 9 commits
  • 3 files changed
  • 3 contributors

Commits on May 22, 2025

  1. Update push.yaml to remove plain text and use small runner

    giovinazzorocco authored May 22, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    db4fa0d View commit details
  2. Update push-dry-run.yaml

    giovinazzorocco authored May 22, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    67af434 View commit details
  3. Update push-dry-run.yaml

    giovinazzorocco authored May 22, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0846bc2 View commit details
  4. Update push.yaml

    giovinazzorocco authored May 22, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1fd8153 View commit details

Commits on May 23, 2025

  1. Update push-dry-run.yaml

    giovinazzorocco authored May 23, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0821779 View commit details
  2. Update push.yaml

    giovinazzorocco authored May 23, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    cf1cc40 View commit details
  3. Merge pull request #129 from sysdiglabs/update-plain-text-with-secret…

    …s-and-runner
    
    Update push actions to remove plain text and use small runner
    giovinazzorocco authored May 23, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    11780b6 View commit details

Commits on Jun 2, 2025

  1. Bump UBI version

    alxbxbx committed Jun 2, 2025
    Copy the full SHA
    cadfb09 View commit details
  2. Merge pull request #131 from sysdiglabs/SECCOMP-37168

    Bump UBI version
    alxbxbx authored Jun 2, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    02be234 View commit details
Showing with 9 additions and 9 deletions.
  1. +4 −4 .github/workflows/push-dry-run.yaml
  2. +4 −4 .github/workflows/push.yaml
  3. +1 −1 Dockerfile
8 changes: 4 additions & 4 deletions .github/workflows/push-dry-run.yaml
Original file line number Diff line number Diff line change
@@ -10,13 +10,13 @@ jobs:
# This workflow contains a single job called "build"
on-success:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: tools-runner
steps:
- name: Trigger jenkins job to upload master to Quay.io
uses: franco-nonne/jenkins-job-trigger-action@update-bundler
uses: draios/jenkins-job-trigger-action@1.1.0
with:
jenkins_url: "https://jenkins.internal.sysdig.tools/"
jenkins_user: 'jenkins-bot@sysdig.com'
jenkins_url: ${{ secrets.JENKINS_INTERNAL_URL }}
jenkins_user: ${{ secrets.JENKINS_BOT_API_USER }}
jenkins_token: ${{ secrets.JENKINS_BOT_API_TOKEN }}
job_timeout: "300"
job_name: "promcat/job/exporters/job/integrations-postgresql-exporter"
8 changes: 4 additions & 4 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
@@ -12,13 +12,13 @@ jobs:
# This workflow contains a single job called "build"
on-success:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: tools-runner
steps:
- name: Trigger jenkins job to upload master to Quay.io
uses: franco-nonne/jenkins-job-trigger-action@update-bundler
uses: draios/jenkins-job-trigger-action@1.1.0
with:
jenkins_url: "https://jenkins.internal.sysdig.tools/"
jenkins_user: 'jenkins-bot@sysdig.com'
jenkins_url: ${{ secrets.JENKINS_INTERNAL_URL }}
jenkins_user: ${{ secrets.JENKINS_BOT_API_USER }}
jenkins_token: ${{ secrets.JENKINS_BOT_API_TOKEN }}
job_timeout: "300"
job_name: "promcat/job/exporters/job/integrations-postgresql-exporter"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ EXPOSE 9187
USER 59000:59000
ENTRYPOINT [ "/bin/postgres_exporter" ]

FROM quay.io/sysdig/sysdig-stig-mini-ubi9:1.2.12 AS ubi
FROM quay.io/sysdig/sysdig-stig-mini-ubi9:1.3.1 AS ubi
COPY --from=builder /bin/postgres_exporter /bin/postgres_exporter
EXPOSE 9187
USER 59000:59000