Skip to content

Commit 06cac81

Browse files
committed
feat(api): add resourcepools api
Signed-off-by: Oliver Bähler <[email protected]>
1 parent 51fc4b1 commit 06cac81

File tree

397 files changed

+11113
-49615
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

397 files changed

+11113
-49615
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ assignees: ''
99

1010
<!--
1111
Thanks for taking time reporting a Capsule bug!
12-
12+
1313
-->
1414

1515
# Bug description

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ How would the new interaction with Capsule look like? E.g.
3232
Feel free to add a diagram if that helps explain things.
3333

3434
# Expected behavior
35-
A clear and concise description of what you expect to happen.
35+
A clear and concise description of what you expect to happen.

.github/actions/exists/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ runs:
1818
- shell: bash
1919
id: check
2020
run: |
21-
echo "result=${{ inputs.value != '' }}" >> $GITHUB_OUTPUT
21+
echo "result=${{ inputs.value != '' }}" >> $GITHUB_OUTPUT

.github/actions/setup-caches/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ inputs:
99
runs:
1010
using: composite
1111
steps:
12-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
12+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
1313
with:
1414
path: ~/go/pkg/mod
1515
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('**/go.sum') }}-${{ hashFiles('Makefile') }}
16-
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
16+
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
1717
if: ${{ inputs.build-cache-key }}
1818
with:
1919
path: ~/.cache/go-build
20-
key: ${{ runner.os }}-build-cache-${{ inputs.build-cache-key }}-${{ hashFiles('**/go.sum') }}-${{ hashFiles('Makefile') }}
20+
key: ${{ runner.os }}-build-cache-${{ inputs.build-cache-key }}-${{ hashFiles('**/go.sum') }}-${{ hashFiles('Makefile') }}

.github/configs/ct.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ chart-dirs:
44
- charts
55
chart-repos:
66
- capsule=https://projectcapsule.github.io/charts/
7-
helm-extra-args: "--timeout 600s"
7+
helm-extra-args: "--timeout 600s"
88
validate-chart-schema: false
99
validate-maintainers: false
1010
validate-yaml: true

.github/configs/lintconf.yaml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1-
21
---
2+
ignore:
3+
- config/
4+
- charts/*/templates/
5+
- charts/**/templates/
36
rules:
7+
truthy:
8+
level: warning
9+
allowed-values:
10+
- "true"
11+
- "false"
12+
- "on"
13+
- "off"
14+
15+
check-keys: false
416
braces:
517
min-spaces-inside: 0
618
max-spaces-inside: 0
@@ -39,5 +51,3 @@ rules:
3951
new-lines:
4052
type: unix
4153
trailing-spaces: enable
42-
truthy:
43-
level: warning

.github/workflows/check-actions.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ permissions: {}
33

44
on:
55
pull_request:
6-
branches: [ "main" ]
6+
branches:
7+
- "*"
78

89
concurrency:
910
group: ${{ github.workflow }}-${{ github.ref }}
@@ -16,9 +17,9 @@ jobs:
1617
- name: Checkout
1718
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1819
- name: Ensure SHA pinned actions
19-
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@c3a2b64f69b7a1542a68f44d9edbd9ec3fc1455e # v3.0.20
20+
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@fc87bb5b5a97953d987372e74478de634726b3e5 # v3.0.25
2021
with:
21-
# slsa-github-generator requires using a semver tag for reusable workflows.
22+
# slsa-github-generator requires using a semver tag for reusable workflows.
2223
# See: https://github.com/slsa-framework/slsa-github-generator#referencing-slsa-builders-and-generators
2324
allowlist: |
24-
slsa-framework/slsa-github-generator
25+
slsa-framework/slsa-github-generator

.github/workflows/check-commit.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ permissions: {}
33

44
on:
55
push:
6-
branches: [ "*" ]
6+
branches:
7+
- "*"
78
pull_request:
8-
branches: [ "*" ]
9+
branches:
10+
- "*"
911

1012
concurrency:
1113
group: ${{ github.workflow }}-${{ github.ref }}
1214
cancel-in-progress: true
13-
1415
jobs:
1516
commit_lint:
1617
runs-on: ubuntu-24.04
@@ -19,5 +20,3 @@ jobs:
1920
with:
2021
fetch-depth: 0
2122
- uses: wagoid/commitlint-github-action@b948419dd99f3fd78a6548d48f94e3df7f6bf3ed # v6.2.1
22-
with:
23-
firstParent: true

.github/workflows/check-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Validate PR title
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: amannn/action-semantic-pull-request@40166f00814508ec3201fc8595b393d451c8cd80
18+
- uses: amannn/action-semantic-pull-request@335288255954904a41ddda8947c8f2c844b8bfeb
1919
env:
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2121
with:

.github/workflows/codecov.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)