From 8a594f96870067b781186108902c1b3374c274b4 Mon Sep 17 00:00:00 2001 From: kaffa Date: Thu, 12 Mar 2026 14:25:48 +0900 Subject: [PATCH] Add k8s manifest: configmap-ssh.yaml --- k8s/ironclad/configmap-ssh.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 k8s/ironclad/configmap-ssh.yaml diff --git a/k8s/ironclad/configmap-ssh.yaml b/k8s/ironclad/configmap-ssh.yaml new file mode 100644 index 0000000..e90dca4 --- /dev/null +++ b/k8s/ironclad/configmap-ssh.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: ssh-config +data: + sshd_config: | + Port 22 + PermitRootLogin no + PasswordAuthentication yes + ChallengeResponseAuthentication no + UsePAM yes + X11Forwarding no + PrintMotd yes + AcceptEnv LANG LC_* + Subsystem sftp /usr/lib/openssh/sftp-server