Code de mon article sur Kube Linter pour le magazine "Programmez !"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
314 B

apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: kubelinter
namespace: kubelinter
spec:
resources:
inputs:
- name: src
type: git
steps:
- name: kubelinter
image: stackrox/kube-linter:0.2.3-alpine
workingDir: /workspace/src
command: [ "/kube-linter", "lint", "./kube" ]