mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-12 20:10:01 -05:00
d74351fda7
Checkov needs the kustomize binary to enable related checks, otherwise these checks are silently skipped. Ref https://www.checkov.io/7.Scan%20Examples/Kustomize.html
29 lines
551 B
YAML
29 lines
551 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: internal-proxy-deployment
|
|
labels:
|
|
app: internal-proxy
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: internal-proxy
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: internal-proxy
|
|
spec:
|
|
containers:
|
|
- name: internal-api
|
|
image: test-image
|
|
resources:
|
|
limits:
|
|
cpu: 30m
|
|
memory: 40Mi
|
|
requests:
|
|
cpu: 30m
|
|
memory: 40Mi
|
|
ports:
|
|
- containerPort: 3000
|
|
...
|