tinyproxy/deployment.yml
Jakub K 3a673df0a1
All checks were successful
continuous-integration/drone Build is passing
init tinyproxy
2024-02-01 22:18:47 +01:00

34 lines
550 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: tinyproxy
labels:
app: tinyproxy
spec:
replicas: 1
selector:
matchLabels:
app: tinyproxy
template:
metadata:
labels:
app: tinyproxy
spec:
containers:
- name: tinyproxy
image: registry.izaac.pl:5000/tinyproxy:latest
ports:
- containerPort: 8888
---
apiVersion: v1
kind: Service
metadata:
name: tinyproxy-svc
spec:
selector:
app: tinyproxy
ports:
- protocol: TCP
port: 8888
targetPort: 8888