Skip to content

Commit

Permalink
bump tf version and drop <4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kubealex committed Feb 29, 2024
1 parent 1b2878e commit 3cd59cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 00_prerequisites.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

- name: Fail fast if more than one bootstrap node is provided
ansible.builtin.fail:
msg: "Versions before 4.6 are not supported"
msg: "Versions before 4.10 are not supported"
when:
- cluster.version != "stable"
- cluster.version is version('4.6', '<')
- cluster.version is version('4.10', '<')

- name: Fail fast when no workers are provided and it's not in Compact mode (three nodes)
ansible.builtin.fail:
Expand Down
4 changes: 2 additions & 2 deletions 30_create_users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
- name: Creating htpasswd identity and user # noqa command-instead-of-shell no-changed-when
ansible.builtin.shell: /tmp/ocp_user.sh

- name: Sleeping 180 seconds...
- name: Sleeping 300 seconds...
ansible.builtin.pause:
seconds: 240
seconds: 300

- name: Try to login with admin # noqa command-instead-of-shell no-changed-when
ansible.builtin.shell: /usr/bin/oc login --insecure-skip-tls-verify -u {{ cluster.ocp_user }} -p {{ cluster.ocp_pass }} https://api.{{ hostvars['bastion'].ocp_domain }}:6443 # noqa yaml[line-length]
Expand Down
2 changes: 1 addition & 1 deletion group_vars/vm_host/terraform.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
terraform_release_url: https://releases.hashicorp.com/terraform/1.5.7/terraform_1.5.7_linux_amd64.zip
terraform_release_url: https://releases.hashicorp.com/terraform/1.7.4/terraform_1.7.4_linux_amd64.zip

0 comments on commit 3cd59cb

Please sign in to comment.