mirror of
https://github.com/super-linter/super-linter.git
synced 2025-02-20 12:02:50 -05:00
chore: fix checkov and sqlfluff tests (#6574)
This commit is contained in:
parent
5031c6a8ce
commit
8ed4d0718f
2 changed files with 40 additions and 1 deletions
|
@ -1,3 +1,38 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: NetworkPolicy
|
||||
metadata:
|
||||
name: test-network-policy
|
||||
namespace: test
|
||||
spec:
|
||||
podSelector:
|
||||
matchLabels:
|
||||
app: test
|
||||
policyTypes:
|
||||
- Ingress
|
||||
- Egress
|
||||
ingress:
|
||||
- from:
|
||||
- ipBlock:
|
||||
cidr: 172.17.0.0/16
|
||||
except:
|
||||
- 172.17.1.0/24
|
||||
- namespaceSelector:
|
||||
matchLabels:
|
||||
project: myproject
|
||||
- podSelector:
|
||||
matchLabels:
|
||||
role: frontend
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 6379
|
||||
egress:
|
||||
- to:
|
||||
- ipBlock:
|
||||
cidr: 10.0.0.0/24
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 5978
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
|
|
|
@ -1 +1,5 @@
|
|||
DELETE FROM person WHERE 1 = 1;
|
||||
DELETE
|
||||
FROM
|
||||
person
|
||||
WHERE
|
||||
1 = 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue