mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 10:54:28 +00:00
36 lines
527 B
YAML
36 lines
527 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: spamd-latest
|
|
labels:
|
|
app: spamd
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: spamd
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: spamd
|
|
spec:
|
|
containers:
|
|
- name: spamd
|
|
image: instantlinux/spamassassin:latest
|
|
ports:
|
|
- containerPort: 783
|
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: spamd
|
|
spec:
|
|
selector:
|
|
app: spamd
|
|
ports:
|
|
- protocol: TCP
|
|
port: 783
|
|
targetPort: 783
|