mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-14 04:49:27 -05:00
30 lines
551 B
YAML
30 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
|
||
|
...
|