mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-07 22:53:55 -05:00
misc: added checks for infisical standalone helm
This commit is contained in:
@@ -3,7 +3,62 @@ name: Release Infisical Core Helm chart
|
|||||||
on: [workflow_dispatch]
|
on: [workflow_dispatch]
|
||||||
|
|
||||||
jobs:
|
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: Add Helm repositories
|
||||||
|
run: |
|
||||||
|
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
|
||||||
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||||
|
helm repo update
|
||||||
|
|
||||||
|
- 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/infisical-standalone-postgres
|
||||||
|
|
||||||
|
- name: Create kind cluster
|
||||||
|
uses: helm/kind-action@v1.12.0
|
||||||
|
|
||||||
|
- name: Create namespace
|
||||||
|
run: kubectl create namespace infisical-standalone-postgres
|
||||||
|
|
||||||
|
- name: Create Infisical secrets
|
||||||
|
run: |
|
||||||
|
kubectl create secret generic infisical-secrets \
|
||||||
|
--namespace infisical-standalone-postgres \
|
||||||
|
--from-literal=AUTH_SECRET=6c1fe4e407b8911c104518103505b218 \
|
||||||
|
--from-literal=ENCRYPTION_KEY=6c1fe4e407b8911c104518103505b218 \
|
||||||
|
--from-literal=SITE_URL=http://localhost:8080
|
||||||
|
|
||||||
|
- name: Run chart-testing (install)
|
||||||
|
run: |
|
||||||
|
ct install \
|
||||||
|
--config ct.yaml \
|
||||||
|
--charts helm-charts/infisical-standalone-postgres \
|
||||||
|
--helm-extra-args="--timeout=300s" \
|
||||||
|
--helm-extra-set-args="--set ingress.nginx.enabled=false --set infisical.autoDatabaseSchemaMigration=false --set infisical.replicaCount=1 --set infisical.image.tag=v0.132.2-postgres" \
|
||||||
|
--namespace infisical-standalone-postgres
|
||||||
|
|
||||||
release:
|
release:
|
||||||
|
needs: test-helm
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|||||||
61
.github/workflows/run-helm-chart-tests-infisical-standalone-postgres.yml
vendored
Normal file
61
.github/workflows/run-helm-chart-tests-infisical-standalone-postgres.yml
vendored
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
name: Run Helm Chart Tests for Infisical Standalone Postgres
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "helm-charts/infisical-standalone-postgres/**"
|
||||||
|
- ".github/workflows/run-helm-chart-tests-infisical-standalone-postgres.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: Add Helm repositories
|
||||||
|
run: |
|
||||||
|
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
|
||||||
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||||
|
helm repo update
|
||||||
|
|
||||||
|
- 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/infisical-standalone-postgres
|
||||||
|
|
||||||
|
- name: Create kind cluster
|
||||||
|
uses: helm/kind-action@v1.12.0
|
||||||
|
|
||||||
|
- name: Create namespace
|
||||||
|
run: kubectl create namespace infisical-standalone-postgres
|
||||||
|
|
||||||
|
- name: Create Infisical secrets
|
||||||
|
run: |
|
||||||
|
kubectl create secret generic infisical-secrets \
|
||||||
|
--namespace infisical-standalone-postgres \
|
||||||
|
--from-literal=AUTH_SECRET=6c1fe4e407b8911c104518103505b218 \
|
||||||
|
--from-literal=ENCRYPTION_KEY=6c1fe4e407b8911c104518103505b218 \
|
||||||
|
--from-literal=SITE_URL=http://localhost:8080
|
||||||
|
|
||||||
|
- name: Run chart-testing (install)
|
||||||
|
run: |
|
||||||
|
ct install \
|
||||||
|
--config ct.yaml \
|
||||||
|
--charts helm-charts/infisical-standalone-postgres \
|
||||||
|
--helm-extra-args="--timeout=300s" \
|
||||||
|
--helm-extra-set-args="--set ingress.nginx.enabled=false --set infisical.autoDatabaseSchemaMigration=false --set infisical.replicaCount=1 --set infisical.image.tag=v0.132.2-postgres" \
|
||||||
|
--namespace infisical-standalone-postgres
|
||||||
@@ -40,3 +40,7 @@ cli/detect/config/gitleaks.toml:gcp-api-key:578
|
|||||||
cli/detect/config/gitleaks.toml:gcp-api-key:579
|
cli/detect/config/gitleaks.toml:gcp-api-key:579
|
||||||
cli/detect/config/gitleaks.toml:gcp-api-key:581
|
cli/detect/config/gitleaks.toml:gcp-api-key:581
|
||||||
cli/detect/config/gitleaks.toml:gcp-api-key:582
|
cli/detect/config/gitleaks.toml:gcp-api-key:582
|
||||||
|
.github/workflows/run-helm-chart-tests-infisical-standalone-postgres.yml:generic-api-key:51
|
||||||
|
.github/workflows/run-helm-chart-tests-infisical-standalone-postgres.yml:generic-api-key:50
|
||||||
|
.github/workflows/helm-release-infisical-core.yml:generic-api-key:48
|
||||||
|
.github/workflows/helm-release-infisical-core.yml:generic-api-key:47
|
||||||
|
|||||||
2
ct.yaml
2
ct.yaml
@@ -10,3 +10,5 @@ kube-versions:
|
|||||||
- v1.33.0
|
- v1.33.0
|
||||||
|
|
||||||
validate-maintainers: false
|
validate-maintainers: false
|
||||||
|
|
||||||
|
kubectl-timeout: 300s
|
||||||
|
|||||||
@@ -5,8 +5,10 @@ nameOverride: ""
|
|||||||
fullnameOverride: ""
|
fullnameOverride: ""
|
||||||
|
|
||||||
infisical:
|
infisical:
|
||||||
enabled: true # -- Enable Infisical chart deployment
|
# -- Enable Infisical chart deployment
|
||||||
name: infisical # -- Sets the name of the deployment within this chart
|
enabled: true
|
||||||
|
# -- Sets the name of the deployment within this chart
|
||||||
|
name: infisical
|
||||||
|
|
||||||
# -- Automatically migrates new database schema when deploying
|
# -- Automatically migrates new database schema when deploying
|
||||||
autoDatabaseSchemaMigration: true
|
autoDatabaseSchemaMigration: true
|
||||||
@@ -67,7 +69,7 @@ infisical:
|
|||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
# -- Memory limit for Infisical container
|
# -- Memory limit for Infisical container
|
||||||
memory: 600Mi
|
memory: 1000Mi
|
||||||
requests:
|
requests:
|
||||||
# -- CPU request for Infisical container
|
# -- CPU request for Infisical container
|
||||||
cpu: 350m
|
cpu: 350m
|
||||||
|
|||||||
Reference in New Issue
Block a user