pipeline/pkg/reconciler/taskrun/resources/volume.go
Vincent Demeester e2aa335ec7 Refactor reconciler package to not reference api version
The reconciler package might use support an api version or more, but
should be itseslf under an api version package. Only the types need to be.

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
2019-08-19 11:07:59 -05:00

32 lines
887 B
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 (
corev1 "k8s.io/api/core/v1"
)
// GetPVCVolume gets pipelinerun pvc volume
func GetPVCVolume(name string) corev1.Volume {
return corev1.Volume{
Name: name,
VolumeSource: corev1.VolumeSource{
PersistentVolumeClaim: &corev1.PersistentVolumeClaimVolumeSource{ClaimName: name},
},
}
}