Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-peerdb-catalog-pgsetup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@19bb51245e9c80abacb2e91cc42b33fa478b8639 # v4
with:
go-version: '1.24.4'
cache-dependency-path: peerdb-catalog/pgSetup/go.sum
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chart-check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- name: Check docs
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/peerdb-charts-release-pushed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
chartName: [peerdb, peerdb-catalog]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Call release-charts.yml
run: |
gh workflow run release-charts.yml \
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
with:
path: 'src'
fetch-depth: 0
submodules: true
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
with:
path: 'dest'
ref: 'gh-pages'
fetch-depth: 0

- name: Install Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3

- name: Package Helm Charts
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v6
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/update-peerdb-release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
echo "STABLE_PEERDB_VERSION=stable-${{ env.PEERDB_VERSION }}" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
with:
token: '${{ secrets.DEVOPS_BOT_GITHUB_TOKEN }}'
- name: Update PeerDB version
Expand All @@ -51,7 +51,7 @@ jobs:
git diff --exit-code || echo "changes=true" >> $GITHUB_OUTPUT
- name: Get next version
if: ${{ steps.update-peerdb-version.outputs.changes == 'true' }}
uses: reecetech/[email protected]
uses: reecetech/version-increment@a29aa752dc3b8118a2dc2ed93faf0e95a73a9c7e # 2024.10.1
id: version
with:
scheme: semver
Expand Down
6 changes: 3 additions & 3 deletions peerdb-catalog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ schema:
init:
image:
repository: golang
tag: alpine
tag: alpine@sha256:d3f0cf7723f3429e3f9ed846243970b20a2de7bae6a5b66fc5914e228d831bbb
schemaCreate:
repository: alpine
tag: latest
Expand All @@ -110,7 +110,7 @@ schema:
test:
image:
repository: postgres
tag: latest
tag: latest@sha256:5ec39c188013123927f30a006987c6b0e20f3ef2b54b140dfa96dac6844d883f
resources:
requests:
cpu: 0.5
Expand All @@ -128,7 +128,7 @@ temporal:
image:
repository: temporalio/admin-tools
# -- This should be set from the helm values for temporal dependency from the main chart
tag: 1.24.2.1-tctl-1.18.1-cli-0.13.2
tag: 1.24.2.1-tctl-1.18.1-cli-0.13.2@sha256:365697b58d963d9dacdfd7b6135c64d6981c3d4f064da1afe2edb030aa49af6f
pullPolicy: IfNotPresent


Expand Down
2 changes: 1 addition & 1 deletion peerdb/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
catalog:

Check failure on line 1 in peerdb/values.yaml

View workflow job for this annotation

GitHub Actions / check-docs-helm

Outdated documentation, run '`docker run -v "$PWD:/helm-docs" -u $(id -u) jnorwood/helm-docs:latest -c peerdb`' to update.
# -- catalog host - autofilled if using in-cluster catalog, else pulled from .env
pgHost: _PG_HOST_
# -- catalog port - autofilled if using in-cluster catalog, else pulled from .env
Expand Down Expand Up @@ -343,7 +343,7 @@
annotations: {}
image:
repository: nginx
tag: latest
tag: latest@sha256:553f64aecdc31b5bf944521731cd70e35da4faed96b2b7548a3d8e2598c52a42
pullPolicy: Always
resources:
requests:
Expand Down
Loading