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.

285 lines
8.0 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
4 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
4 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. tf-0.13.x-validate-vsphere:
  95. extends: .terraform_validate
  96. variables:
  97. TF_VERSION: 0.13.5
  98. PROVIDER: vsphere
  99. CLUSTER: $CI_COMMIT_REF_NAME
  100. tf-0.14.x-validate-openstack:
  101. extends: .terraform_validate
  102. variables:
  103. TF_VERSION: 0.14.3
  104. PROVIDER: openstack
  105. CLUSTER: $CI_COMMIT_REF_NAME
  106. tf-0.14.x-validate-packet:
  107. extends: .terraform_validate
  108. variables:
  109. TF_VERSION: 0.14.3
  110. PROVIDER: packet
  111. CLUSTER: $CI_COMMIT_REF_NAME
  112. tf-0.14.x-validate-aws:
  113. extends: .terraform_validate
  114. variables:
  115. TF_VERSION: 0.14.3
  116. PROVIDER: aws
  117. CLUSTER: $CI_COMMIT_REF_NAME
  118. tf-0.14.x-validate-exoscale:
  119. extends: .terraform_validate
  120. variables:
  121. TF_VERSION: 0.14.3
  122. PROVIDER: exoscale
  123. tf-0.14.x-validate-vsphere:
  124. extends: .terraform_validate
  125. variables:
  126. TF_VERSION: 0.14.3
  127. PROVIDER: vsphere
  128. CLUSTER: $CI_COMMIT_REF_NAME
  129. # tf-packet-ubuntu16-default:
  130. # extends: .terraform_apply
  131. # variables:
  132. # TF_VERSION: 0.12.30
  133. # PROVIDER: packet
  134. # CLUSTER: $CI_COMMIT_REF_NAME
  135. # TF_VAR_number_of_k8s_masters: "1"
  136. # TF_VAR_number_of_k8s_nodes: "1"
  137. # TF_VAR_plan_k8s_masters: t1.small.x86
  138. # TF_VAR_plan_k8s_nodes: t1.small.x86
  139. # TF_VAR_facility: ewr1
  140. # TF_VAR_public_key_path: ""
  141. # TF_VAR_operating_system: ubuntu_16_04
  142. #
  143. # tf-packet-ubuntu18-default:
  144. # extends: .terraform_apply
  145. # variables:
  146. # TF_VERSION: 0.12.30
  147. # PROVIDER: packet
  148. # CLUSTER: $CI_COMMIT_REF_NAME
  149. # TF_VAR_number_of_k8s_masters: "1"
  150. # TF_VAR_number_of_k8s_nodes: "1"
  151. # TF_VAR_plan_k8s_masters: t1.small.x86
  152. # TF_VAR_plan_k8s_nodes: t1.small.x86
  153. # TF_VAR_facility: ams1
  154. # TF_VAR_public_key_path: ""
  155. # TF_VAR_operating_system: ubuntu_18_04
  156. .ovh_variables: &ovh_variables
  157. OS_AUTH_URL: https://auth.cloud.ovh.net/v3
  158. OS_PROJECT_ID: 8d3cd5d737d74227ace462dee0b903fe
  159. OS_PROJECT_NAME: "9361447987648822"
  160. OS_USER_DOMAIN_NAME: Default
  161. OS_PROJECT_DOMAIN_ID: default
  162. OS_USERNAME: 8XuhBMfkKVrk
  163. OS_REGION_NAME: UK1
  164. OS_INTERFACE: public
  165. OS_IDENTITY_API_VERSION: "3"
  166. # Elastx is generously donating resources for Kubespray on Openstack CI
  167. # Contacts: @gix @bl0m1
  168. .elastx_variables: &elastx_variables
  169. OS_AUTH_URL: https://ops.elastx.cloud:5000
  170. OS_PROJECT_ID: 564c6b461c6b44b1bb19cdb9c2d928e4
  171. OS_PROJECT_NAME: kubespray_ci
  172. OS_USER_DOMAIN_NAME: Default
  173. OS_PROJECT_DOMAIN_ID: default
  174. OS_USERNAME: kubespray@root314.com
  175. OS_REGION_NAME: se-sto
  176. OS_INTERFACE: public
  177. OS_IDENTITY_API_VERSION: "3"
  178. TF_VAR_router_id: "ab95917c-41fb-4881-b507-3a6dfe9403df"
  179. # Since ELASTX is in Stockholm, Mitogen helps with latency
  180. MITOGEN_ENABLE: "false"
  181. # Mitogen doesn't support interpreter discovery yet
  182. ANSIBLE_PYTHON_INTERPRETER: "/usr/bin/python3"
  183. tf-elastx_cleanup:
  184. stage: unit-tests
  185. tags: [light]
  186. image: python
  187. variables:
  188. <<: *elastx_variables
  189. before_script:
  190. - pip install -r scripts/openstack-cleanup/requirements.txt
  191. script:
  192. - ./scripts/openstack-cleanup/main.py
  193. tf-elastx_ubuntu18-calico:
  194. extends: .terraform_apply
  195. stage: deploy-part3
  196. when: on_success
  197. variables:
  198. <<: *elastx_variables
  199. TF_VERSION: 0.12.30
  200. PROVIDER: openstack
  201. CLUSTER: $CI_COMMIT_REF_NAME
  202. ANSIBLE_TIMEOUT: "60"
  203. SSH_USER: ubuntu
  204. TF_VAR_number_of_k8s_masters: "1"
  205. TF_VAR_number_of_k8s_masters_no_floating_ip: "0"
  206. TF_VAR_number_of_k8s_masters_no_floating_ip_no_etcd: "0"
  207. TF_VAR_number_of_etcd: "0"
  208. TF_VAR_number_of_k8s_nodes: "1"
  209. TF_VAR_number_of_k8s_nodes_no_floating_ip: "0"
  210. TF_VAR_number_of_gfs_nodes_no_floating_ip: "0"
  211. TF_VAR_number_of_bastions: "0"
  212. TF_VAR_number_of_k8s_masters_no_etcd: "0"
  213. TF_VAR_floatingip_pool: "elx-public1"
  214. TF_VAR_dns_nameservers: '["1.1.1.1", "8.8.8.8", "8.8.4.4"]'
  215. TF_VAR_use_access_ip: "0"
  216. TF_VAR_external_net: "600b8501-78cb-4155-9c9f-23dfcba88828"
  217. TF_VAR_network_name: "ci-$CI_JOB_ID"
  218. TF_VAR_az_list: '["sto1"]'
  219. TF_VAR_az_list_node: '["sto1"]'
  220. TF_VAR_flavor_k8s_master: 3f73fc93-ec61-4808-88df-2580d94c1a9b # v1-standard-2
  221. TF_VAR_flavor_k8s_node: 3f73fc93-ec61-4808-88df-2580d94c1a9b # v1-standard-2
  222. TF_VAR_image: ubuntu-18.04-server-latest
  223. TF_VAR_k8s_allowed_remote_ips: '["0.0.0.0/0"]'
  224. tf-ovh_cleanup:
  225. stage: unit-tests
  226. tags: [light]
  227. image: python
  228. environment: ovh
  229. variables:
  230. <<: *ovh_variables
  231. before_script:
  232. - pip install -r scripts/openstack-cleanup/requirements.txt
  233. script:
  234. - ./scripts/openstack-cleanup/main.py
  235. tf-ovh_ubuntu18-calico:
  236. extends: .terraform_apply
  237. when: on_success
  238. environment: ovh
  239. variables:
  240. <<: *ovh_variables
  241. TF_VERSION: 0.12.30
  242. PROVIDER: openstack
  243. CLUSTER: $CI_COMMIT_REF_NAME
  244. ANSIBLE_TIMEOUT: "60"
  245. SSH_USER: ubuntu
  246. TF_VAR_number_of_k8s_masters: "0"
  247. TF_VAR_number_of_k8s_masters_no_floating_ip: "1"
  248. TF_VAR_number_of_k8s_masters_no_floating_ip_no_etcd: "0"
  249. TF_VAR_number_of_etcd: "0"
  250. TF_VAR_number_of_k8s_nodes: "0"
  251. TF_VAR_number_of_k8s_nodes_no_floating_ip: "1"
  252. TF_VAR_number_of_gfs_nodes_no_floating_ip: "0"
  253. TF_VAR_number_of_bastions: "0"
  254. TF_VAR_number_of_k8s_masters_no_etcd: "0"
  255. TF_VAR_use_neutron: "0"
  256. TF_VAR_floatingip_pool: "Ext-Net"
  257. TF_VAR_external_net: "6011fbc9-4cbf-46a4-8452-6890a340b60b"
  258. TF_VAR_network_name: "Ext-Net"
  259. TF_VAR_flavor_k8s_master: "defa64c3-bd46-43b4-858a-d93bbae0a229" # s1-8
  260. TF_VAR_flavor_k8s_node: "defa64c3-bd46-43b4-858a-d93bbae0a229" # s1-8
  261. TF_VAR_image: "Ubuntu 18.04"
  262. TF_VAR_k8s_allowed_remote_ips: '["0.0.0.0/0"]'