engine.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. "fmt"
  14. corev1 "k8s.io/api/core/v1"
  15. esapi "github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1"
  16. v1 "github.com/external-secrets/external-secrets/pkg/template/v1"
  17. v2 "github.com/external-secrets/external-secrets/pkg/template/v2"
  18. )
  19. type ExecFunc func(tpl, data map[string][]byte, scope esapi.TemplateScope, target esapi.TemplateTarget, secret *corev1.Secret) error
  20. func EngineForVersion(version esapi.TemplateEngineVersion) (ExecFunc, error) {
  21. switch version {
  22. case esapi.TemplateEngineV1:
  23. return v1.Execute, nil
  24. case esapi.TemplateEngineV2:
  25. return v2.Execute, nil
  26. }
  27. return nil, fmt.Errorf("unsupported template engine version: %s", version)
  28. }