From 24149dfc1c1017c5421de3f97c01b135c299bce4 Mon Sep 17 00:00:00 2001 From: James Pace Date: Thu, 27 Apr 2023 20:38:03 -0400 Subject: [PATCH] Remove ostree. I don't care about this pipeline at this point. --- .../ostree-package-pipeline.yaml | 47 ------------------- 1 file changed, 47 deletions(-) delete mode 100644 generic-pipelines/ostree-package-pipeline.yaml diff --git a/generic-pipelines/ostree-package-pipeline.yaml b/generic-pipelines/ostree-package-pipeline.yaml deleted file mode 100644 index b21a37d..0000000 --- a/generic-pipelines/ostree-package-pipeline.yaml +++ /dev/null @@ -1,47 +0,0 @@ -# A pipeline to build and deploy my fork of the debian packaging for ostree. ---- -apiVersion: tekton.dev/v1beta1 -kind: Pipeline -metadata: - name: ostree-package-pipeline -spec: - description: "Package fork of ostree." - params: - - name: deploy - type: string - description: "'true' if we should deploy the image using ansible." - workspaces: - - name: shared-data - description: Shared data. - - name: git-credentials - description: tekton git credentials - - name: deploy-credentials - description: tekton credentials to deployment server - tasks: - - name: fetch-repo - workspaces: - - name: output - workspace: shared-data - - name: ssh-directory - workspace: git-credentials - params: - - name: url - value: ssh://git.jpace121.net:2222/packaging/ostree - - name: branch - value: jamesp/latest - taskRef: - name: j7s-git-clone - - name: build - runAfter: ["fetch-repo"] - workspaces: - - name: source - workspace: shared-data - - name: ssh-directory - workspace: deploy-credentials - params: - - name: deploy - value: $(params.deploy) - - name: ansible-file-path - value: ./j7s-build-files - taskRef: - name: j7s-ansible-build \ No newline at end of file