Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why does pipeline bind a PVC when I run it #1496

Closed
bibi520 opened this issue Oct 30, 2019 · 2 comments
Closed

Why does pipeline bind a PVC when I run it #1496

bibi520 opened this issue Oct 30, 2019 · 2 comments

Comments

@bibi520
Copy link

bibi520 commented Oct 30, 2019

image

1.this is my pipeline yaml

apiVersion: tekton.dev/v1alpha1
kind: Pipeline
metadata:
name: demo-pipeline
spec:
resources:

  • name: source-repo
    type: git
  • name: push-image
    type: image
    tasks:
  • name: skaffold-unit-tests
    taskRef:
    name: build-app
    resources:
    inputs:
    • name: java-demo
      resource: source-repo
      outputs:
    • name: builtImage
      resource: push-image
@bobcatfish
Copy link
Collaborator

Hey @bibi520 ! This is to support the from syntax which lets you provide data from one Task to another Task. There is some bugs such as #1007 which make it so this is always done, even if you don't need it :( but in #1076 we are trying to fix this and you shouldn't see unnecessary PVCs created by the time we go beta 🤞

@bibi520
Copy link
Author

bibi520 commented Oct 31, 2019

OK thank you

@bibi520 bibi520 closed this as completed Nov 19, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants