engine.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. Licensed under the Apache License, Version 2.0 (the "License");
  3. you may not use this file except in compliance with the License.
  4. You may obtain a copy of the License at
  5. http://www.apache.org/licenses/LICENSE-2.0
  6. Unless required by applicable law or agreed to in writing, software
  7. distributed under the License is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. limitations under the License.
  10. */
  11. package template
  12. import (
  13. corev1 "k8s.io/api/core/v1"
  14. esapi "github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1"
  15. v1 "github.com/external-secrets/external-secrets/pkg/template/v1"
  16. v2 "github.com/external-secrets/external-secrets/pkg/template/v2"
  17. )
  18. type ExecFunc func(tpl, data map[string][]byte, scope esapi.TemplateScope, target esapi.TemplateTarget, secret *corev1.Secret) error
  19. func EngineForVersion(version esapi.TemplateEngineVersion) (ExecFunc, error) {
  20. switch version {
  21. case esapi.TemplateEngineV1:
  22. return v1.Execute, nil
  23. case esapi.TemplateEngineV2:
  24. return v2.Execute, nil
  25. }
  26. // in case we run with a old v1alpha1 CRD
  27. // we must return v1 as default
  28. return v1.Execute, nil
  29. }