mirror of
https://git.cluster.stumblestore.de/llamprecht/KnilchWeb.git
synced 2025-12-15 00:51:19 +01:00
27 lines
No EOL
396 B
YAML
27 lines
No EOL
396 B
YAML
kind: pipeline
|
|
type: kubernetes
|
|
name: default
|
|
|
|
steps:
|
|
- name: check for Hardcoded Credentials
|
|
image: plugins/gitleaks
|
|
|
|
- name: woke check
|
|
image: getwoke/woke
|
|
commands:
|
|
- woke
|
|
|
|
- name: build
|
|
image: node
|
|
commands:
|
|
- npm install typescript
|
|
- npx tsc
|
|
|
|
- name: deploy
|
|
image: vallard/drone-kube
|
|
template: deployment.yaml
|
|
when:
|
|
event:
|
|
- promote
|
|
target:
|
|
- production |