Skip to content
Snippets Groups Projects
  1. Jul 05, 2022
  2. Jun 27, 2022
  3. Jun 23, 2022
  4. Jun 17, 2022
  5. Jun 16, 2022
  6. Jun 15, 2022
  7. Jun 14, 2022
  8. Jun 10, 2022
    • Kenichi Omichi's avatar
      Replace callback_whitelist with callbacks_enabled (#8759) · 024a3ee5
      Kenichi Omichi authored
      When running molecule jobs, we saw the folloing warning message:
      
       [DEPRECATION WARNING]: [defaults]callback_whitelist option, normalizing names
       to new standard, use callbacks_enabled instead. This feature will be removed
       from ansible-core in version 2.15. Deprecation warnings can be disabled by
       setting deprecation_warnings=False in ansible.cfg.
      
      callbacks_enabled has been added since Ansible 2.11 and Kubespray is using
      Ansible 2.12 at master branch. So we can use callbacks_enabled safely to
      avoid the warning message.
      Unverified
      024a3ee5
  9. May 24, 2022
  10. May 09, 2022
  11. May 04, 2022
  12. Apr 29, 2022
    • Chris Ricker's avatar
      Ensure containerd service unmasking (#8726) · 21fc197e
      Chris Ricker authored
      * Force containerd service unmasking
      
      Force systemd to unmask and start service when adding containerd service
      
      * Eliminate restart and move unmasking step
      
      Switch to start instead of restart
      Move unmasking to restart handler
      
      * Add unmasking to similar container runtimes
      
      * Add missing service names
      Unverified
      21fc197e
  13. Apr 06, 2022
  14. Apr 04, 2022
  15. Apr 01, 2022
  16. Mar 26, 2022
  17. Mar 21, 2022
    • Kenichi Omichi's avatar
      Fix the condition of drain on pre-remove task (#8634) · 7b1dc600
      Kenichi Omichi authored
      When running cluster.yml for new machines what containerd is already
      install but Kubernetes cluster were not installed before, the task
      "remove-node | List nodes" is failed like
      
        "changed": false,
        "cmd": [
          "/usr/local/bin/kubectl", "--kubeconfig",
          "/etc/kubernetes/admin.conf", "get", "nodes", "-o",
          "go-template={{ range .items }}{{ .metadata.name }}
          {{ "\n" }}{{ end }}"
         ],
         ..
         "stderr": "error: stat /etc/kubernetes/admin.conf: no such file or directory",
      
      That was due to lack to check the existing Kubernetes cluster exists
      or not before running "kubectl drain" command.
      This adds the check to avoid the issue.
      Unverified
      7b1dc600
  18. Mar 17, 2022
  19. Mar 16, 2022
  20. Mar 11, 2022
  21. Mar 07, 2022
  22. Feb 28, 2022
  23. Feb 19, 2022
  24. Feb 05, 2022
  25. Feb 02, 2022
  26. Jan 25, 2022
  27. Jan 22, 2022
  28. Jan 11, 2022
    • Kenichi Omichi's avatar
      Fix failures of ansible-lint (#8401) · 73c889eb
      Kenichi Omichi authored
      This fixes the following types of failures:
      - empty-string-compare
      - literal-compare
      - risky-file-permissions
      - risky-shell-pipe
      - var-spacing
      
      In addition, this changes .gitlab-ci/lint.yml to block the same issue
      by using the same method at Kubespray CI.
      Unverified
      73c889eb
  29. Jan 09, 2022
  30. Jan 05, 2022
    • Bart Sloeserwij's avatar
      Update configuration of registries in cri-o (#7852) · 59f62473
      Bart Sloeserwij authored
      * Update configuration of registries in cri-o
      
      * Update docs to match new registry configuration
      Unverified
      59f62473
    • Choi Yongbeom's avatar
      Update config.toml.j2 (#8340) · dda557ed
      Choi Yongbeom authored
      * Update config.toml.j2
      
      i think this commit code is not completed works
      
      exam registry address : a.com:5000
      
      insecure registry must be http://a.com:5000
      
      but this code add insecure a.com:5000 (without http://)
      
      If there is no http, containerd accesses with https even if insecure_skip_verify = true
      
      solution is code edit
      
      * Update config.toml.j2
      
      * Update containerd.yml
      
      * Update containerd.yml
      
      * Update containerd.yml
      
      * Update config.toml.j2
      Unverified
      dda557ed
Loading