mirror of
https://github.com/bvanroll/stage-infra.git
synced 2025-08-30 12:32:46 +00:00
cleanup en prep voor multirepo pipeline
This commit is contained in:
23
Tekton/tasks/deploy-app.yaml
Normal file
23
Tekton/tasks/deploy-app.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
---
|
||||
apiVersion: tekton.dev/v1alpha1
|
||||
kind: Task
|
||||
metadata:
|
||||
name: deploy-app
|
||||
spec:
|
||||
params:
|
||||
- name: yaml-location
|
||||
default: deploy.yaml
|
||||
- name: command
|
||||
default: apply
|
||||
workspaces:
|
||||
- name: source
|
||||
mountpath: /source
|
||||
steps:
|
||||
- name: deploy-new-app
|
||||
image: lachlanevenson/k8s-kubectl
|
||||
command: ["kubectl"]
|
||||
args:
|
||||
- "$(params.command)"
|
||||
- "-f"
|
||||
- "/source/$(params.yaml-location)"
|
Reference in New Issue
Block a user