engine.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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/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. // We want to leave this for new versions
  21. switch version { //nolint:gocritic
  22. case esapi.TemplateEngineV2:
  23. return v2.Execute, nil
  24. }
  25. return nil, fmt.Errorf("unsupported template engine version: %s", version)
  26. }