07_deployment.yml 971 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. labels:
  5. run: ssh-bastion
  6. name: ssh-bastion
  7. namespace: byoh-ssh-bastion
  8. spec:
  9. replicas: 1
  10. selector:
  11. matchLabels:
  12. run: ssh-bastion
  13. template:
  14. metadata:
  15. labels:
  16. run: ssh-bastion
  17. spec:
  18. serviceAccountName: "ssh-bastion"
  19. containers:
  20. - image: quay.io/eparis/ssh:latest
  21. imagePullPolicy: Always
  22. name: ssh-bastion
  23. securityContext:
  24. privileged: true
  25. ports:
  26. - containerPort: 22
  27. name: ssh
  28. protocol: TCP
  29. volumeMounts:
  30. - name: ssh-host-keys
  31. mountPath: "/etc/ssh/"
  32. readOnly: true
  33. volumes:
  34. - name: ssh-host-keys
  35. secret:
  36. secretName: ssh-host-keys
  37. items:
  38. - key: ssh_host_rsa_key
  39. path: ssh_host_rsa_key
  40. mode: 256
  41. - key: sshd_config
  42. path: sshd_config
  43. restartPolicy: Always