engine.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. // NOTE: the version can be empty if the ExternalSecret was created with version 0.4.3 or earlier,
  23. // all versions after this will default to "v1" (for v1alpha1 ES) or "v2" (for v1beta1 ES).
  24. // so if we encounter an empty version, we must default to the v1 engine.
  25. case esapi.TemplateEngineV1, "":
  26. return v1.Execute, nil
  27. case esapi.TemplateEngineV2:
  28. return v2.Execute, nil
  29. }
  30. return nil, fmt.Errorf("unsupported template engine version: %s", version)
  31. }