34 lines
751 B
YAML
34 lines
751 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: samba-toolbox
|
|
namespace: samba-directory
|
|
labels:
|
|
app: samba-toolbox
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: samba-toolbox
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: samba-toolbox
|
|
spec:
|
|
containers:
|
|
- name: samba-toolbox
|
|
image: quay.io/samba.org/samba-toolbox:latest
|
|
imagePullPolicy: IfNotPresent
|
|
command: ["/bin/sh", "-c"]
|
|
args:
|
|
- |
|
|
echo "samba-toolbox started"
|
|
sleep infinity
|
|
tty: true
|
|
stdin: true
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
limits:
|
|
memory: 512Mi |