mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-14 13:16:54 +00:00
* refactor kubernetes API usage * add ability to audit directory * refactor a bit * fix return statement * fix main.go * add ability to audit multiple resources in a single file
21 lines
344 B
YAML
21 lines
344 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: test-deployment
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: test-deployment
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: test-deployment
|
|
spec:
|
|
containers:
|
|
- name: ubuntu
|
|
image: ubuntu
|
|
ports:
|
|
- containerPort: 3000
|
|
|