You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

273 lines
7.8 KiB

Fix terraform0.13 errors (#7077) * [terraform/aws] Fix Terraform >=0.13 warnings Terraform >=0.13 gives the following warning: ``` Warning: Interpolation-only expressions are deprecated ``` The fix was tested as follows: ``` rm -rf .terraform && terraform0.12.26 init && terraform0.12.26 validate rm -rf .terraform && terraform0.13.5 init && terraform0.13.5 validate rm -rf .terraform && terraform0.14.3 init && terraform0.14.3 validate ``` which gave no errors nor warnings. * [terraform/openstack] Fixes for Terraform >=0.13 Terraform >=0.13 gives the following error: ``` Error: Failed to install providers Could not find required providers, but found possible alternatives: hashicorp/openstack -> terraform-provider-openstack/openstack ``` This patch fixes these errors. This fix was tested as follows: ``` rm -rf .terraform && terraform0.12.26 init && terraform0.12.26 validate rm -rf .terraform && terraform0.13.5 init && terraform0.13.5 validate rm -rf .terraform && terraform0.14.3 init && terraform0.14.3 validate ``` which gave no errors nor warnings for Terraform 0.13.5 and Terraform 0.14.3. Unfortunately, 0.12.x gives a harmless warning, but with 0.14.3 out the door, I guess we need to move on. * [terraform/packet] Fixes for Terraform >=0.13 This fix was tested as follows: ``` export PACKET_AUTH_TOKEN=blah-blah rm -rf .terraform && terraform0.12.26 init && terraform0.12.26 validate rm -rf .terraform && terraform0.13.5 init && terraform0.13.5 validate rm -rf .terraform && terraform0.14.3 init && terraform0.14.3 validate ``` Errors are gone, but warnings still remain. It is impossible to please all three versions of Terraform. * Add tests for Terraform >=0.13
3 years ago
Fix terraform0.13 errors (#7077) * [terraform/aws] Fix Terraform >=0.13 warnings Terraform >=0.13 gives the following warning: ``` Warning: Interpolation-only expressions are deprecated ``` The fix was tested as follows: ``` rm -rf .terraform && terraform0.12.26 init && terraform0.12.26 validate rm -rf .terraform && terraform0.13.5 init && terraform0.13.5 validate rm -rf .terraform && terraform0.14.3 init && terraform0.14.3 validate ``` which gave no errors nor warnings. * [terraform/openstack] Fixes for Terraform >=0.13 Terraform >=0.13 gives the following error: ``` Error: Failed to install providers Could not find required providers, but found possible alternatives: hashicorp/openstack -> terraform-provider-openstack/openstack ``` This patch fixes these errors. This fix was tested as follows: ``` rm -rf .terraform && terraform0.12.26 init && terraform0.12.26 validate rm -rf .terraform && terraform0.13.5 init && terraform0.13.5 validate rm -rf .terraform && terraform0.14.3 init && terraform0.14.3 validate ``` which gave no errors nor warnings for Terraform 0.13.5 and Terraform 0.14.3. Unfortunately, 0.12.x gives a harmless warning, but with 0.14.3 out the door, I guess we need to move on. * [terraform/packet] Fixes for Terraform >=0.13 This fix was tested as follows: ``` export PACKET_AUTH_TOKEN=blah-blah rm -rf .terraform && terraform0.12.26 init && terraform0.12.26 validate rm -rf .terraform && terraform0.13.5 init && terraform0.13.5 validate rm -rf .terraform && terraform0.14.3 init && terraform0.14.3 validate ``` Errors are gone, but warnings still remain. It is impossible to please all three versions of Terraform. * Add tests for Terraform >=0.13
3 years ago
  1. ---
  2. # Tests for contrib/terraform/
  3. .terraform_install:
  4. extends: .job
  5. before_script:
  6. - update-alternatives --install /usr/bin/python python /usr/bin/python3 1
  7. - ./tests/scripts/rebase.sh
  8. - ./tests/scripts/testcases_prepare.sh
  9. - ./tests/scripts/terraform_install.sh
  10. # Set Ansible config
  11. - cp ansible.cfg ~/.ansible.cfg
  12. # Prepare inventory
  13. - cp contrib/terraform/$PROVIDER/sample-inventory/cluster.tfvars .
  14. - ln -s contrib/terraform/$PROVIDER/hosts
  15. - terraform init contrib/terraform/$PROVIDER
  16. # Copy SSH keypair
  17. - mkdir -p ~/.ssh
  18. - echo "$PACKET_PRIVATE_KEY" | base64 -d > ~/.ssh/id_rsa
  19. - chmod 400 ~/.ssh/id_rsa
  20. - echo "$PACKET_PUBLIC_KEY" | base64 -d > ~/.ssh/id_rsa.pub
  21. - mkdir -p group_vars
  22. # Random subnet to avoid routing conflicts
  23. - export TF_VAR_subnet_cidr="10.$(( $RANDOM % 256 )).$(( $RANDOM % 256 )).0/24"
  24. .terraform_validate:
  25. extends: .terraform_install
  26. stage: unit-tests
  27. tags: [light]
  28. only: ['master', /^pr-.*$/]
  29. script:
  30. - terraform validate -var-file=cluster.tfvars contrib/terraform/$PROVIDER
  31. - terraform fmt -check -diff contrib/terraform/$PROVIDER
  32. .terraform_apply:
  33. extends: .terraform_install
  34. tags: [light]
  35. stage: deploy-part3
  36. when: manual
  37. only: [/^pr-.*$/]
  38. artifacts:
  39. when: always
  40. paths:
  41. - cluster-dump/
  42. variables:
  43. ANSIBLE_INVENTORY_UNPARSED_FAILED: "true"
  44. ANSIBLE_INVENTORY: hosts
  45. CI_PLATFORM: tf
  46. TF_VAR_ssh_user: $SSH_USER
  47. TF_VAR_cluster_name: $CI_JOB_ID
  48. script:
  49. - tests/scripts/testcases_run.sh
  50. after_script:
  51. # Cleanup regardless of exit code
  52. - chronic ./tests/scripts/testcases_cleanup.sh
  53. tf-validate-openstack:
  54. extends: .terraform_validate
  55. variables:
  56. TF_VERSION: 0.12.30
  57. PROVIDER: openstack
  58. CLUSTER: $CI_COMMIT_REF_NAME
  59. tf-validate-packet:
  60. extends: .terraform_validate
  61. variables:
  62. TF_VERSION: 0.12.30
  63. PROVIDER: packet
  64. CLUSTER: $CI_COMMIT_REF_NAME
  65. tf-validate-aws:
  66. extends: .terraform_validate
  67. variables:
  68. TF_VERSION: 0.12.30
  69. PROVIDER: aws
  70. CLUSTER: $CI_COMMIT_REF_NAME
  71. tf-0.13.x-validate-openstack:
  72. extends: .terraform_validate
  73. variables:
  74. TF_VERSION: 0.13.5
  75. PROVIDER: openstack
  76. CLUSTER: $CI_COMMIT_REF_NAME
  77. tf-0.13.x-validate-packet:
  78. extends: .terraform_validate
  79. variables:
  80. TF_VERSION: 0.13.5
  81. PROVIDER: packet
  82. CLUSTER: $CI_COMMIT_REF_NAME
  83. tf-0.13.x-validate-aws:
  84. extends: .terraform_validate
  85. variables:
  86. TF_VERSION: 0.13.5
  87. PROVIDER: aws
  88. CLUSTER: $CI_COMMIT_REF_NAME
  89. tf-0.13.x-validate-exoscale:
  90. extends: .terraform_validate
  91. variables:
  92. TF_VERSION: 0.13.5
  93. PROVIDER: exoscale
  94. CLUSTER: $CI_COMMIT_REF_NAME
  95. tf-0.14.x-validate-openstack:
  96. extends: .terraform_validate
  97. variables:
  98. TF_VERSION: 0.14.3
  99. PROVIDER: openstack
  100. CLUSTER: $CI_COMMIT_REF_NAME
  101. tf-0.14.x-validate-packet:
  102. extends: .terraform_validate
  103. variables:
  104. TF_VERSION: 0.14.3
  105. PROVIDER: packet
  106. CLUSTER: $CI_COMMIT_REF_NAME
  107. tf-0.14.x-validate-aws:
  108. extends: .terraform_validate
  109. variables:
  110. TF_VERSION: 0.14.3
  111. PROVIDER: aws
  112. CLUSTER: $CI_COMMIT_REF_NAME
  113. tf-0.14.x-validate-exoscale:
  114. extends: .terraform_validate
  115. variables:
  116. TF_VERSION: 0.14.3
  117. PROVIDER: exoscale
  118. CLUSTER: $CI_COMMIT_REF_NAME
  119. # tf-packet-ubuntu16-default:
  120. # extends: .terraform_apply
  121. # variables:
  122. # TF_VERSION: 0.12.30
  123. # PROVIDER: packet
  124. # CLUSTER: $CI_COMMIT_REF_NAME
  125. # TF_VAR_number_of_k8s_masters: "1"
  126. # TF_VAR_number_of_k8s_nodes: "1"
  127. # TF_VAR_plan_k8s_masters: t1.small.x86
  128. # TF_VAR_plan_k8s_nodes: t1.small.x86
  129. # TF_VAR_facility: ewr1
  130. # TF_VAR_public_key_path: ""
  131. # TF_VAR_operating_system: ubuntu_16_04
  132. #
  133. # tf-packet-ubuntu18-default:
  134. # extends: .terraform_apply
  135. # variables:
  136. # TF_VERSION: 0.12.30
  137. # PROVIDER: packet
  138. # CLUSTER: $CI_COMMIT_REF_NAME
  139. # TF_VAR_number_of_k8s_masters: "1"
  140. # TF_VAR_number_of_k8s_nodes: "1"
  141. # TF_VAR_plan_k8s_masters: t1.small.x86
  142. # TF_VAR_plan_k8s_nodes: t1.small.x86
  143. # TF_VAR_facility: ams1
  144. # TF_VAR_public_key_path: ""
  145. # TF_VAR_operating_system: ubuntu_18_04
  146. .ovh_variables: &ovh_variables
  147. OS_AUTH_URL: https://auth.cloud.ovh.net/v3
  148. OS_PROJECT_ID: 8d3cd5d737d74227ace462dee0b903fe
  149. OS_PROJECT_NAME: "9361447987648822"
  150. OS_USER_DOMAIN_NAME: Default
  151. OS_PROJECT_DOMAIN_ID: default
  152. OS_USERNAME: 8XuhBMfkKVrk
  153. OS_REGION_NAME: UK1
  154. OS_INTERFACE: public
  155. OS_IDENTITY_API_VERSION: "3"
  156. # Elastx is generously donating resources for Kubespray on Openstack CI
  157. # Contacts: @gix @bl0m1
  158. .elastx_variables: &elastx_variables
  159. OS_AUTH_URL: https://ops.elastx.cloud:5000
  160. OS_PROJECT_ID: 564c6b461c6b44b1bb19cdb9c2d928e4
  161. OS_PROJECT_NAME: kubespray_ci
  162. OS_USER_DOMAIN_NAME: Default
  163. OS_PROJECT_DOMAIN_ID: default
  164. OS_USERNAME: kubespray@root314.com
  165. OS_REGION_NAME: se-sto
  166. OS_INTERFACE: public
  167. OS_IDENTITY_API_VERSION: "3"
  168. TF_VAR_router_id: "ab95917c-41fb-4881-b507-3a6dfe9403df"
  169. # Since ELASTX is in Stockholm, Mitogen helps with latency
  170. MITOGEN_ENABLE: "false"
  171. # Mitogen doesn't support interpreter discovery yet
  172. ANSIBLE_PYTHON_INTERPRETER: "/usr/bin/python3"
  173. tf-elastx_cleanup:
  174. stage: unit-tests
  175. tags: [light]
  176. image: python
  177. variables:
  178. <<: *elastx_variables
  179. before_script:
  180. - pip install -r scripts/openstack-cleanup/requirements.txt
  181. script:
  182. - ./scripts/openstack-cleanup/main.py
  183. tf-elastx_ubuntu18-calico:
  184. extends: .terraform_apply
  185. stage: deploy-part3
  186. when: on_success
  187. variables:
  188. <<: *elastx_variables
  189. TF_VERSION: 0.12.30
  190. PROVIDER: openstack
  191. CLUSTER: $CI_COMMIT_REF_NAME
  192. ANSIBLE_TIMEOUT: "60"
  193. SSH_USER: ubuntu
  194. TF_VAR_number_of_k8s_masters: "1"
  195. TF_VAR_number_of_k8s_masters_no_floating_ip: "0"
  196. TF_VAR_number_of_k8s_masters_no_floating_ip_no_etcd: "0"
  197. TF_VAR_number_of_etcd: "0"
  198. TF_VAR_number_of_k8s_nodes: "1"
  199. TF_VAR_number_of_k8s_nodes_no_floating_ip: "0"
  200. TF_VAR_number_of_gfs_nodes_no_floating_ip: "0"
  201. TF_VAR_number_of_bastions: "0"
  202. TF_VAR_number_of_k8s_masters_no_etcd: "0"
  203. TF_VAR_floatingip_pool: "elx-public1"
  204. TF_VAR_dns_nameservers: '["1.1.1.1", "8.8.8.8", "8.8.4.4"]'
  205. TF_VAR_use_access_ip: "0"
  206. TF_VAR_external_net: "600b8501-78cb-4155-9c9f-23dfcba88828"
  207. TF_VAR_network_name: "ci-$CI_JOB_ID"
  208. TF_VAR_az_list: '["sto1"]'
  209. TF_VAR_az_list_node: '["sto1"]'
  210. TF_VAR_flavor_k8s_master: 3f73fc93-ec61-4808-88df-2580d94c1a9b # v1-standard-2
  211. TF_VAR_flavor_k8s_node: 3f73fc93-ec61-4808-88df-2580d94c1a9b # v1-standard-2
  212. TF_VAR_image: ubuntu-18.04-server-latest
  213. TF_VAR_k8s_allowed_remote_ips: '["0.0.0.0/0"]'
  214. tf-ovh_cleanup:
  215. stage: unit-tests
  216. tags: [light]
  217. image: python
  218. environment: ovh
  219. variables:
  220. <<: *ovh_variables
  221. before_script:
  222. - pip install -r scripts/openstack-cleanup/requirements.txt
  223. script:
  224. - ./scripts/openstack-cleanup/main.py
  225. tf-ovh_ubuntu18-calico:
  226. extends: .terraform_apply
  227. when: on_success
  228. environment: ovh
  229. variables:
  230. <<: *ovh_variables
  231. TF_VERSION: 0.12.30
  232. PROVIDER: openstack
  233. CLUSTER: $CI_COMMIT_REF_NAME
  234. ANSIBLE_TIMEOUT: "60"
  235. SSH_USER: ubuntu
  236. TF_VAR_number_of_k8s_masters: "0"
  237. TF_VAR_number_of_k8s_masters_no_floating_ip: "1"
  238. TF_VAR_number_of_k8s_masters_no_floating_ip_no_etcd: "0"
  239. TF_VAR_number_of_etcd: "0"
  240. TF_VAR_number_of_k8s_nodes: "0"
  241. TF_VAR_number_of_k8s_nodes_no_floating_ip: "1"
  242. TF_VAR_number_of_gfs_nodes_no_floating_ip: "0"
  243. TF_VAR_number_of_bastions: "0"
  244. TF_VAR_number_of_k8s_masters_no_etcd: "0"
  245. TF_VAR_use_neutron: "0"
  246. TF_VAR_floatingip_pool: "Ext-Net"
  247. TF_VAR_external_net: "6011fbc9-4cbf-46a4-8452-6890a340b60b"
  248. TF_VAR_network_name: "Ext-Net"
  249. TF_VAR_flavor_k8s_master: "defa64c3-bd46-43b4-858a-d93bbae0a229" # s1-8
  250. TF_VAR_flavor_k8s_node: "defa64c3-bd46-43b4-858a-d93bbae0a229" # s1-8
  251. TF_VAR_image: "Ubuntu 18.04"
  252. TF_VAR_k8s_allowed_remote_ips: '["0.0.0.0/0"]'