mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
misc: add verification check for secret operator
This commit is contained in:
70
.github/workflows/release-k8-operator-helm.yml
vendored
70
.github/workflows/release-k8-operator-helm.yml
vendored
@@ -1,27 +1,59 @@
|
|||||||
name: Release K8 Operator Helm Chart
|
name: Release K8 Operator Helm Chart
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release-helm:
|
test-helm:
|
||||||
name: Release Helm Chart
|
name: Test Helm Chart
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Install Helm
|
- name: Set up Helm
|
||||||
uses: azure/setup-helm@v3
|
uses: azure/setup-helm@v4.2.0
|
||||||
with:
|
with:
|
||||||
version: v3.10.0
|
version: v3.17.0
|
||||||
|
|
||||||
- name: Install python
|
- uses: actions/setup-python@v5.3.0
|
||||||
uses: actions/setup-python@v4
|
with:
|
||||||
|
python-version: "3.x"
|
||||||
|
check-latest: true
|
||||||
|
|
||||||
- name: Install Cloudsmith CLI
|
- name: Set up chart-testing
|
||||||
run: pip install --upgrade cloudsmith-cli
|
uses: helm/chart-testing-action@v2.7.0
|
||||||
|
|
||||||
- name: Build and push helm package to CloudSmith
|
- name: Run chart-testing (lint)
|
||||||
run: cd helm-charts && sh upload-k8s-operator-cloudsmith.sh
|
run: ct lint --config ct.yaml --charts helm-charts/secrets-operator
|
||||||
env:
|
|
||||||
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
|
- name: Create kind cluster
|
||||||
|
uses: helm/kind-action@v1.12.0
|
||||||
|
|
||||||
|
- name: Run chart-testing (install)
|
||||||
|
run: ct install --config ct.yaml --charts helm-charts/secrets-operator
|
||||||
|
|
||||||
|
release-helm:
|
||||||
|
name: Release Helm Chart
|
||||||
|
needs: test-helm
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install Helm
|
||||||
|
uses: azure/setup-helm@v3
|
||||||
|
with:
|
||||||
|
version: v3.10.0
|
||||||
|
|
||||||
|
- name: Install python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
|
||||||
|
- name: Install Cloudsmith CLI
|
||||||
|
run: pip install --upgrade cloudsmith-cli
|
||||||
|
|
||||||
|
- name: Build and push helm package to CloudSmith
|
||||||
|
run: cd helm-charts && sh upload-k8s-operator-cloudsmith.sh
|
||||||
|
env:
|
||||||
|
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
|
||||||
|
|||||||
38
.github/workflows/run-helm-chart-tests-secret-operator.yml
vendored
Normal file
38
.github/workflows/run-helm-chart-tests-secret-operator.yml
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
name: Run Helm Chart Tests for Secret Operator
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "helm-charts/secrets-operator/**"
|
||||||
|
- ".github/workflows/run-helm-chart-tests-secret-operator.yml"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test-helm:
|
||||||
|
name: Test Helm Chart
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set up Helm
|
||||||
|
uses: azure/setup-helm@v4.2.0
|
||||||
|
with:
|
||||||
|
version: v3.17.0
|
||||||
|
|
||||||
|
- uses: actions/setup-python@v5.3.0
|
||||||
|
with:
|
||||||
|
python-version: "3.x"
|
||||||
|
check-latest: true
|
||||||
|
|
||||||
|
- name: Set up chart-testing
|
||||||
|
uses: helm/chart-testing-action@v2.7.0
|
||||||
|
|
||||||
|
- name: Run chart-testing (lint)
|
||||||
|
run: ct lint --config ct.yaml --charts helm-charts/secrets-operator
|
||||||
|
|
||||||
|
- name: Create kind cluster
|
||||||
|
uses: helm/kind-action@v1.12.0
|
||||||
|
|
||||||
|
- name: Run chart-testing (install)
|
||||||
|
run: ct install --config ct.yaml --charts helm-charts/secrets-operator
|
||||||
Reference in New Issue
Block a user