Skip to content
  1. Jan 14, 2021
  2. Jan 13, 2021
  3. Jan 11, 2021
  4. Jan 09, 2021
    • Etienne Champetier's avatar
      calico: fix warnings (#7121) · ff952924
      Etienne Champetier authored
      
      
      TASK [network_plugin/calico : Calico | Configure calico network pool] **********
      task path: /builds/kargo-ci/kubernetes-sigs-kubespray/roles/network_plugin/calico/tasks/install.yml:138
      Friday 08 January 2021  17:10:12 +0000 (0:00:01.521)       0:11:36.885 ********
      [WARNING]: The value {'kind': 'IPPool', 'apiVersion': 'projectcalico.org/v3',
      'metadata': {'name': 'default-pool'}, 'spec': {'blockSize': 24, 'cidr':
      '10.233.64.0/18', 'ipipMode': 'Always', 'vxlanMode': 'Never', 'natOutgoing':
      True}} (type dict) in a string field was converted to "{'kind': 'IPPool',
      'apiVersion': 'projectcalico.org/v3', 'metadata': {'name': 'default-pool'},
      'spec': {'blockSize': 24, 'cidr': '10.233.64.0/18', 'ipipMode': 'Always',
      'vxlanMode': 'Never', 'natOutgoing': True}}" (type string). If this does not
      look like what you expect, quote the entire value to ensure it does not change.
      
      Signed-off-by: default avatarEtienne Champetier <champetier.etienne@gmail.com>
      ff952924
  5. Jan 08, 2021
  6. Jan 07, 2021
  7. Jan 06, 2021
  8. Jan 05, 2021
  9. Jan 04, 2021
  10. Dec 30, 2020
  11. Dec 26, 2020
  12. Dec 24, 2020
  13. Dec 23, 2020
    • Florian Ruynat's avatar
      Fix crictl with Docker (#7081) · c971debd
      Florian Ruynat authored
      c971debd
    • Teo Klestrup Röijezon's avatar
      Blacklist Calico's VXLAN interface from NetworkManager (#7037) · 161c7e9f
      Teo Klestrup Röijezon authored
      See https://github.com/projectcalico/calico/issues/3271
      
      Otherwise Calico can get into a fight with NM about who "owns" the vxlan.calico
      interface, breaking all pod traffic.
      161c7e9f
    • 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
Loading