From 7ede4e2cf52a7a98079450f4a54aafad5674adc8 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Sat, 7 Dec 2024 05:48:28 +0400 Subject: [PATCH] fix(k8-operator): moved template --- k8-operator/api/v1alpha1/common.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/k8-operator/api/v1alpha1/common.go b/k8-operator/api/v1alpha1/common.go index 387bc7c9e..f9197bc8b 100644 --- a/k8-operator/api/v1alpha1/common.go +++ b/k8-operator/api/v1alpha1/common.go @@ -102,4 +102,8 @@ type ManagedKubeSecretConfig struct { // +kubebuilder:validation:Optional // +kubebuilder:default:=Orphan CreationPolicy string `json:"creationPolicy"` + + // The template to transform the secret data + // +kubebuilder:validation:Optional + Template *InfisicalSecretTemplate `json:"template,omitempty"` }