-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into Use-tpl-function
- Loading branch information
Showing
96 changed files
with
2,906 additions
and
189 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
tenant: | ||
pools: | ||
- servers: 1 | ||
name: pool0 | ||
volumesPerServer: 1 | ||
size: 1Gi | ||
buckets: | ||
- name: mybucket | ||
region: local |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: tests-cluster-chainsaw | ||
|
||
on: | ||
pull_request: | ||
branches-ignore: | ||
- 'gh-pages' | ||
|
||
jobs: | ||
test-cluster-standalone: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup kind | ||
uses: ./.github/actions/setup-kind | ||
|
||
- name: Deploy the operator | ||
uses: ./.github/actions/deploy-operator | ||
|
||
- name: Install Prometheus CRDs | ||
run: | | ||
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts | ||
helm install prometheus-crds prometheus-community/prometheus-operator-crds | ||
- name: Install Chainsaw | ||
uses: kyverno/action-install-chainsaw@b2f61a8d0459a65c476ac802514d88e1612b3396 # v0.2.9 | ||
|
||
- name: Setup MinIO | ||
run: | | ||
helm repo add minio-operator https://operator.min.io | ||
helm upgrade \ | ||
--install \ | ||
--namespace minio-system \ | ||
--create-namespace \ | ||
--wait \ | ||
operator minio-operator/operator | ||
helm upgrade \ | ||
--install \ | ||
--namespace minio \ | ||
--create-namespace \ | ||
--wait \ | ||
--values ./.github/minio.yaml \ | ||
tenant minio-operator/tenant | ||
- name: Run Kyverno/Chainsaw | ||
run: chainsaw test |
This file was deleted.
Oops, something went wrong.
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.