From 0bf5f4cdd5da2f1bfac4923a9823d090debe85ff Mon Sep 17 00:00:00 2001 From: John Stewart Date: Wed, 19 Oct 2022 16:16:46 +0000 Subject: [PATCH 1/2] Release 0.1.15 admission-controller Helm Charts --- admission-controller/Chart.yaml | 4 ++-- admission-controller/templates/certs.yaml | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/admission-controller/Chart.yaml b/admission-controller/Chart.yaml index ecb30e6..a775071 100644 --- a/admission-controller/Chart.yaml +++ b/admission-controller/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 appVersion: "0.0.1" -version: 0.1.14 +version: 0.1.15 name: admission-controller description: Lacework admission controller using Lacework proxy scanner type: application @@ -15,4 +15,4 @@ dependencies: - name: proxy-scanner version: 0.10.0 condition: proxy-scanner.enabled - repository: https://lacework.github.io/helm-charts \ No newline at end of file + repository: https://lacework.github.io/helm-charts diff --git a/admission-controller/templates/certs.yaml b/admission-controller/templates/certs.yaml index c0b7bf8..6c824d6 100644 --- a/admission-controller/templates/certs.yaml +++ b/admission-controller/templates/certs.yaml @@ -1,3 +1,4 @@ +{{- if not .Values.certs.secret_name }} apiVersion: v1 kind: Secret metadata: @@ -7,4 +8,5 @@ data: ca.crt: {{ .Values.scanner.caCert }} # root CA for scanner {{- end }} admission.crt: {{ .Values.certs.serverCertificate }} # place server cert - admission.key: {{ .Values.certs.serverKey }} # place server key \ No newline at end of file + admission.key: {{ .Values.certs.serverKey }} # place server key +{{- end }} From 8e71a215222f3cdac664687b6809830018b2b93a Mon Sep 17 00:00:00 2001 From: John Stewart Date: Sun, 5 Jul 2026 18:48:09 -0400 Subject: [PATCH 2/2] ci: add gitea-mirror-sync push trigger On-push thin caller of the shared reusable workflow in thecrimsontint/.github so the Gitea pull-mirror syncs near-real-time instead of on the 8h schedule. Co-Authored-By: Claude Fable 5 --- .github/workflows/gitea-mirror-sync.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/gitea-mirror-sync.yml diff --git a/.github/workflows/gitea-mirror-sync.yml b/.github/workflows/gitea-mirror-sync.yml new file mode 100644 index 0000000..1d9498d --- /dev/null +++ b/.github/workflows/gitea-mirror-sync.yml @@ -0,0 +1,8 @@ +name: Sync Gitea mirror +on: + push: + workflow_dispatch: +jobs: + mirror-sync: + uses: thecrimsontint/.github/.github/workflows/gitea-mirror-sync.yml@main + secrets: inherit