Some checks failed
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Concelier Attestation Tests / attestation-tests (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
devportal-offline / build-offline (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
- Added AirgapTimelineImpact, AirgapTimelineImpactInput, and AirgapTimelineImpactResult records for managing air-gap bundle import impacts. - Introduced EvidenceSnapshotRecord, EvidenceSnapshotLinkInput, and EvidenceSnapshotLinkResult records for linking findings to evidence snapshots. - Created IEvidenceSnapshotRepository interface for managing evidence snapshot records. - Developed StalenessValidationService to validate staleness and enforce freshness thresholds. - Implemented AirgapTimelineService for emitting timeline events related to bundle imports. - Added EvidenceSnapshotService for linking findings to evidence snapshots and verifying their validity. - Introduced AirGapOptions for configuring air-gap staleness enforcement and thresholds. - Added minimal jsPDF stub for offline/testing builds in the web application. - Created TypeScript definitions for jsPDF to enhance type safety in the web application.
29 lines
948 B
YAML
29 lines
948 B
YAML
{{- if and .Values.externalSecrets.enabled .Values.externalSecrets.secrets }}
|
|
{{- range $secret := .Values.externalSecrets.secrets }}
|
|
apiVersion: external-secrets.io/v1beta1
|
|
kind: ExternalSecret
|
|
metadata:
|
|
name: {{ include "stellaops.fullname" $ }}-{{ $secret.name }}
|
|
labels:
|
|
{{- include "stellaops.labels" $ | nindent 4 }}
|
|
spec:
|
|
refreshInterval: {{ default "1h" $secret.refreshInterval }}
|
|
secretStoreRef:
|
|
name: {{ $secret.storeRef.name }}
|
|
kind: {{ default "ClusterSecretStore" $secret.storeRef.kind }}
|
|
target:
|
|
name: {{ $secret.target.name | default (printf "%s-%s" (include "stellaops.fullname" $) $secret.name) }}
|
|
creationPolicy: {{ default "Owner" $secret.target.creationPolicy }}
|
|
data:
|
|
{{- range $secret.data }}
|
|
- secretKey: {{ .key }}
|
|
remoteRef:
|
|
key: {{ .remoteKey }}
|
|
{{- if .property }}
|
|
property: {{ .property }}
|
|
{{- end }}
|
|
{{- end }}
|
|
---
|
|
{{- end }}
|
|
{{- end }}
|