ssh_bastion.yml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. ---
  2. - name: Create ssh bastion namespace
  3. k8s:
  4. kubeconfig: "{{ kubeconfig_path }}"
  5. kind: Namespace
  6. name: byoh-ssh-bastion
  7. state: present
  8. - name: Create ssh bastion keys secret
  9. k8s:
  10. kubeconfig: "{{ kubeconfig_path }}"
  11. resource_definition:
  12. apiVersion: v1
  13. kind: Secret
  14. metadata:
  15. name: ssh-host-keys
  16. namespace: byoh-ssh-bastion
  17. data:
  18. ssh_host_rsa_key: "{{ lookup('file', '../../inventory/dynamic/injected/ssh-privatekey') | b64encode }}"
  19. sshd_config: "{{ lookup('file', 'files/sshd_config') | b64encode }}"
  20. no_log: true
  21. - name: Create ssh bastion service
  22. k8s:
  23. kubeconfig: "{{ kubeconfig_path }}"
  24. src: files/01_service.yml
  25. - name: Create ssh bastion service account
  26. k8s:
  27. kubeconfig: "{{ kubeconfig_path }}"
  28. src: files/02_serviceaccount.yml
  29. - name: Create ssh bastion role
  30. k8s:
  31. kubeconfig: "{{ kubeconfig_path }}"
  32. src: files/03_role.yml
  33. - name: Create ssh bastion role binding
  34. k8s:
  35. kubeconfig: "{{ kubeconfig_path }}"
  36. src: files/04_rolebinding.yml
  37. - name: Create ssh bastion cluster role
  38. k8s:
  39. kubeconfig: "{{ kubeconfig_path }}"
  40. src: files/05_clusterrole.yml
  41. - name: Create ssh bastion cluster role binding
  42. k8s:
  43. kubeconfig: "{{ kubeconfig_path }}"
  44. src: files/06_clusterrolebinding.yml
  45. - name: Create ssh bastion deployment
  46. k8s:
  47. kubeconfig: "{{ kubeconfig_path }}"
  48. src: files/07_deployment.yml
  49. - name: Wait for ssh bastion deployment to rollout
  50. k8s_facts:
  51. kubeconfig: "{{ kubeconfig_path }}"
  52. namespace: byoh-ssh-bastion
  53. kind: Deployment
  54. name: ssh-bastion
  55. register: k8s_result
  56. until:
  57. - k8s_result.resources is defined
  58. - k8s_result.resources | length > 0
  59. - k8s_result.resources[0].status is defined
  60. - k8s_result.resources[0].status.availableReplicas is defined
  61. - k8s_result.resources[0].status.availableReplicas > 0
  62. retries: 36
  63. delay: 5
  64. - name: Get ssh bastion address
  65. k8s_facts:
  66. kubeconfig: "{{ kubeconfig_path }}"
  67. namespace: byoh-ssh-bastion
  68. kind: Service
  69. name: ssh-bastion
  70. register: k8s_result
  71. until:
  72. - k8s_result.resources is defined
  73. - k8s_result.resources | length > 0
  74. - k8s_result.resources[0].status is defined
  75. - k8s_result.resources[0].status.loadBalancer is defined
  76. - k8s_result.resources[0].status.loadBalancer.ingress is defined
  77. - k8s_result.resources[0].status.loadBalancer.ingress | length > 0
  78. - k8s_result.resources[0].status.loadBalancer.ingress[0].hostname is defined
  79. retries: 36
  80. delay: 5
  81. - name: Set fact ssh_bastion
  82. set_fact:
  83. ssh_bastion: "{{ k8s_result.resources[0].status.loadBalancer.ingress[0].hostname }}"