Skip to content
  1. Aug 30, 2021
  2. Aug 28, 2021
  3. Jul 26, 2021
  4. Jul 22, 2021
    • Kenichi Omichi's avatar
      Allow failure on tf-elax_ubuntu18-calico (#7814) · e5ee4740
      Kenichi Omichi authored
      tf-elax_ubuntu18-calico is so flake today. The test job is failed
      due to SSH connectivity check error after deploying virtual machines
      which are used for Kubernetes nodes.
      This allows failure on the job to see the test situation without
      pull request merger failures.
      e5ee4740
  5. Jul 12, 2021
    • Cristian Calin's avatar
      Move to Ansible 3.4.0 (#7672) · 7516fe14
      Cristian Calin authored
      * Ansible: move to Ansible 3.4.0 which uses ansible-base 2.10.10
      
      * Docs: add a note about ansible upgrade post 2.9.x
      
      * CI: ensure ansible is removed before ansible 3.x is installed to avoid pip failures
      
      * Ansible: use newer ansible-lint
      
      * Fix ansible-lint 5.0.11 found issues
      
      * syntax issues
      * risky-file-permissions
      * var-naming
      * role-name
      * molecule tests
      
      * Mitogen: use 0.3.0rc1 which adds support for ansible 2.10+
      
      * Pin ansible-base to 2.10.11 to get package fix on RHEL8
      7516fe14
  6. Jun 25, 2021
  7. May 28, 2021
  8. Apr 12, 2021
  9. Mar 24, 2021
  10. Mar 15, 2021
    • Ewnetu Bayuh Lakew's avatar
      Terraform support for UpCloud (#7360) · 5c5bf41a
      Ewnetu Bayuh Lakew authored
      * terraform support for UpCloud
      
      * terraform support for UpCloud
      
      * terraform support for UpCloud
      
      * terraform support for UpCloud
      
      * terraform support for UpCloud
      
      * terraform support for UpCloud
      
      * terraform support for UpCloud
      
      * Updates to README.md and main.tf files
      
      * formatting and updating readme
      
      * added a .terraform_validate CI job
      
      * fixed format issue
      
      * added sample inventory
      
      * added symbolic link to group_vars
      
      * added missing tf variables and minor fixes
      
      * added text formatting
      
      * minor formatting fixes
      5c5bf41a
  11. Mar 01, 2021
  12. Feb 26, 2021
    • Jakub Krzywda's avatar
      Vsphere (#7306) · 0a0156c9
      Jakub Krzywda authored
      * Add terraform scripts for vSphere
      
      * Fixup: Add terraform scripts for vSphere
      
      * Add inventory generation
      
      * Use machines var to provide IPs
      
      * Add README file
      
      * Add default.tfvars file
      
      * Fix newlines at the end of files
      
      * Remove master.count and worker.count variables
      
      * Fixup cloud-init formatting
      
      * Fixes after initial review
      
      * Add warning about disabled DHCP
      
      * Fixes after second review
      
      * Add sample-inventory
      0a0156c9
  13. Feb 05, 2021
  14. Feb 03, 2021
    • Cristian Klein's avatar
      contrib/terraform/exoscale: Rework SSH public keys (#7242) · b77460ec
      Cristian Klein authored
      * contrib/terraform/exoscale: Rework SSH public keys
      
      Exoscale has a few limitations with `exoscale_ssh_keypair` resources.
      Creating several clusters with these scripts may lead to an error like:
      
      ```
      Error: API error ParamError 431 (InvalidParameterValueException 4350): The key pair "lj-sc-ssh-key" already has this fingerprint
      ```
      
      This patch reworks handling of SSH public keys. Specifically, we rely on
      the more cloud-agnostic way of configuring SSH public keys via
      `cloud-init`.
      
      * contrib/terraform/exoscale: terraform fmt
      
      * contrib/terraform/exoscale: Add terraform validate
      
      * contrib/terraform/exoscale: Inline public SSH keys
      
      The Terraform scripts need to install some SSH key, so that Kubespray
      (i.e., the "Ansible part") can take over. Initially, we pointed the
      Terraform scripts to `~/.ssh/id_rsa.pub`. This proved to be suboptimal:
      Operators sharing responbility for a cluster risk unnecessarily replacing resources.
      
      Therefore, it has been determined that it's best to inline the public
      SSH keys. The chosen variable `ssh_public_keys` provides some uniformity
      with `contrib/azurerm`.
      
      * Fix Terraform Exoscale test
      
      * Fix Terraform 0.14 test
      b77460ec
  15. Jan 26, 2021
  16. Jan 14, 2021
  17. Jan 07, 2021
  18. Dec 30, 2020
  19. Dec 26, 2020
  20. Dec 23, 2020
    • Cristian Klein's avatar
      Fix terraform0.13 errors (#7077) · fd3ebc13
      Cristian Klein authored
      * [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
      fd3ebc13
    • Kenichi Omichi's avatar
      Improve markdownlint for contrib/network-storage (#7079) · 5b5726bd
      Kenichi Omichi authored
      This fixes markdownlint failures under contrib/network-storage and
      contrib/vault.
      5b5726bd
  21. Dec 22, 2020
    • Kenichi Omichi's avatar
      Improve markdownlint coverage (#7075) · 1347bb2e
      Kenichi Omichi authored
      Now markdownlint covers ./README.md and md files under ./docs only.
      However we have a lot of md files under different directories also.
      This enables markdownlint for other md files also.
      1347bb2e
  22. Dec 17, 2020
    • Kenichi Omichi's avatar
      Exclude .git/ from shellcheck (#7048) · 43dbff93
      Kenichi Omichi authored
      If a branch name contains '.sh', current shellcheck checks the branch
      file under .git/ and outputs error because the format is not shell
      script one.
      This makes shellcheck exclude files under .git/ to avoid this issue.
      43dbff93
  23. Nov 30, 2020
  24. Sep 30, 2020
  25. Sep 24, 2020
  26. Sep 18, 2020
  27. Sep 17, 2020
  28. Jul 31, 2020
  29. Jul 30, 2020
  30. Jul 28, 2020
  31. Jul 17, 2020
  32. Jul 13, 2020
  33. Jul 06, 2020
  34. Jun 29, 2020
  35. Jun 18, 2020
  36. Jun 17, 2020
  37. Jun 06, 2020
  38. Jun 04, 2020
Loading