Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
51 lines
2.2 KiB
YAML
51 lines
2.2 KiB
YAML
{{- if or (.Values.config.storage.providers.s3.enabled) (.Values.config.storage.providers.local.enabled) }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "sebastian.fullname" . }}-storage-secret
|
|
namespace: {{ .Values.namespace }}
|
|
labels:
|
|
{{- include "sebastian.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
stringData:
|
|
storage.yaml: |
|
|
default_provider: {{ .Values.config.storage.default_provider }}
|
|
providers:
|
|
{{- if .Values.config.storage.providers.local.enabled }}
|
|
local:
|
|
base_path: {{ .Values.config.storage.providers.local.base_path }}
|
|
max_file_size: {{ .Values.config.storage.providers.local.max_file_size }}
|
|
allowed_mime_types:
|
|
{{- range .Values.config.storage.providers.local.allowed_mime_types }}
|
|
- {{ . }}
|
|
{{- end }}
|
|
retention_days: {{ .Values.config.storage.providers.local.retention_days }}
|
|
{{- end }}
|
|
{{- if .Values.config.storage.providers.s3.enabled }}
|
|
s3:
|
|
region: {{ .Values.config.storage.providers.s3.region }}
|
|
bucket: {{ .Values.config.storage.providers.s3.bucket }}
|
|
access_key: {{ .Values.config.storage.providers.s3.access_key }}
|
|
secret_key: {{ .Values.config.storage.providers.s3.secret_key }}
|
|
{{- if .Values.config.storage.providers.s3.endpoint }}
|
|
endpoint: {{ .Values.config.storage.providers.s3.endpoint }}
|
|
{{- end }}
|
|
max_file_size: {{ .Values.config.storage.providers.s3.max_file_size }}
|
|
allowed_mime_types:
|
|
{{- range .Values.config.storage.providers.s3.allowed_mime_types }}
|
|
- {{ . }}
|
|
{{- end }}
|
|
retention_days: {{ .Values.config.storage.providers.s3.retention_days }}
|
|
{{- end }}
|
|
upload:
|
|
temp_dir: {{ .Values.config.storage.upload.temp_dir }}
|
|
max_concurrent: {{ .Values.config.storage.upload.max_concurrent }}
|
|
chunk_size: {{ .Values.config.storage.upload.chunk_size }}
|
|
backup:
|
|
enabled: {{ .Values.config.storage.backup.enabled }}
|
|
schedule: {{ .Values.config.storage.backup.schedule }}
|
|
retention:
|
|
days: {{ .Values.config.storage.backup.retention.days }}
|
|
copies: {{ .Values.config.storage.backup.retention.copies }}
|
|
{{- end }}
|