From 2eb33d65820e35d8c54011417180ed984704d522 Mon Sep 17 00:00:00 2001 From: shodan Date: Wed, 18 Mar 2026 13:40:02 +0000 Subject: [PATCH] toolbox --- samba-directory/samba-toolbox.yaml | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 samba-directory/samba-toolbox.yaml diff --git a/samba-directory/samba-toolbox.yaml b/samba-directory/samba-toolbox.yaml new file mode 100644 index 0000000..e572d22 --- /dev/null +++ b/samba-directory/samba-toolbox.yaml @@ -0,0 +1,34 @@ +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 \ No newline at end of file