pipeline/pkg/reconciler/taskrun/resources/apply.go
Dibyo Mukherjee ecddd2f64e Explicitly substitute resource conditional variables.
Previously, we'd change the variable names to what the
taskrun format and then rely on the taskrun's variable
substitution logic. This approach is hacky and now we
explicitly replace the resource variable strings with the
right values without relying on the TaskRun logic.

In the future, we should consider doing the same for parameter
variables as well.

Signed-off-by: Dibyo Mukherjee <dibyo@google.com>
2019-08-30 13:13:04 -05:00

112 lines
4.2 KiB
Go

/*
Copyright 2019 The Tekton Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package resources
import (
"fmt"
"github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha1"
)
// ApplyParameters applies the params from a TaskRun.Input.Parameters to a TaskSpec
func ApplyParameters(spec *v1alpha1.TaskSpec, tr *v1alpha1.TaskRun, defaults ...v1alpha1.ParamSpec) *v1alpha1.TaskSpec {
// This assumes that the TaskRun inputs have been validated against what the Task requests.
// stringReplacements is used for standard single-string stringReplacements, while arrayReplacements contains arrays
// that need to be further processed.
stringReplacements := map[string]string{}
arrayReplacements := map[string][]string{}
// Set all the default stringReplacements
for _, p := range defaults {
if p.Default != nil {
if p.Default.Type == v1alpha1.ParamTypeString {
stringReplacements[fmt.Sprintf("inputs.params.%s", p.Name)] = p.Default.StringVal
} else {
arrayReplacements[fmt.Sprintf("inputs.params.%s", p.Name)] = p.Default.ArrayVal
}
}
}
// Set and overwrite params with the ones from the TaskRun
for _, p := range tr.Spec.Inputs.Params {
if p.Value.Type == v1alpha1.ParamTypeString {
stringReplacements[fmt.Sprintf("inputs.params.%s", p.Name)] = p.Value.StringVal
} else {
arrayReplacements[fmt.Sprintf("inputs.params.%s", p.Name)] = p.Value.ArrayVal
}
}
return ApplyReplacements(spec, stringReplacements, arrayReplacements)
}
// ApplyResources applies the substitution from values in resources which are referenced in spec as subitems
// of the replacementStr.
func ApplyResources(spec *v1alpha1.TaskSpec, resolvedResources map[string]v1alpha1.PipelineResourceInterface, replacementStr string) *v1alpha1.TaskSpec {
replacements := map[string]string{}
for name, r := range resolvedResources {
for k, v := range r.Replacements() {
replacements[fmt.Sprintf("%s.resources.%s.%s", replacementStr, name, k)] = v
}
}
// We always add replacements for 'path'
if spec.Inputs != nil {
for _, r := range spec.Inputs.Resources {
replacements[fmt.Sprintf("inputs.resources.%s.path", r.Name)] = v1alpha1.InputResourcePath(r.ResourceDeclaration)
}
}
if spec.Outputs != nil {
for _, r := range spec.Outputs.Resources {
replacements[fmt.Sprintf("outputs.resources.%s.path", r.Name)] = v1alpha1.OutputResourcePath(r.ResourceDeclaration)
}
}
return ApplyReplacements(spec, replacements, map[string][]string{})
}
// ApplyReplacements replaces placeholders for declared parameters with the specified replacements.
func ApplyReplacements(spec *v1alpha1.TaskSpec, stringReplacements map[string]string, arrayReplacements map[string][]string) *v1alpha1.TaskSpec {
spec = spec.DeepCopy()
// Apply variable expansion to steps fields.
steps := spec.Steps
for i := range steps {
v1alpha1.ApplyStepReplacements(&steps[i], stringReplacements, arrayReplacements)
}
// Apply variable expansion to stepTemplate fields.
if spec.StepTemplate != nil {
v1alpha1.ApplyStepReplacements(&v1alpha1.Step{Container: *spec.StepTemplate}, stringReplacements, arrayReplacements)
}
// Apply variable expansion to the build's volumes
for i, v := range spec.Volumes {
spec.Volumes[i].Name = v1alpha1.ApplyReplacements(v.Name, stringReplacements)
if v.VolumeSource.ConfigMap != nil {
spec.Volumes[i].ConfigMap.Name = v1alpha1.ApplyReplacements(v.ConfigMap.Name, stringReplacements)
}
if v.VolumeSource.Secret != nil {
spec.Volumes[i].Secret.SecretName = v1alpha1.ApplyReplacements(v.Secret.SecretName, stringReplacements)
}
if v.PersistentVolumeClaim != nil {
spec.Volumes[i].PersistentVolumeClaim.ClaimName = v1alpha1.ApplyReplacements(v.PersistentVolumeClaim.ClaimName, stringReplacements)
}
}
return spec
}