change to using archive.apache.org for source downloads

archive.apache.org contains all the released versions, whereas dlcdn
only has the latest minor revision. using the archive link will allow
branches to continue to work indepdendently of the upstream's CDN and
release schedule

also, fix linter for example playbook

Closes-Bug: 2038826
Change-Id: Id95dbed736553b24341eb15c74b4a194369dda9f
(cherry picked from commit c0490d9060)
This commit is contained in:
Neil Hanlon 2023-10-09 10:13:55 -04:00 committed by Dmitriy Rabotyagov
parent 8ee3bd4f3f
commit 68de6ae078
2 changed files with 4 additions and 3 deletions

View File

@ -15,8 +15,10 @@
# Define zookepeer version and download URI
zookeeper_download_version: 3.7.1
zookeeper_download_version_checksum: sha512:9103628a50745fa1a289bca666fda4a9c08ec17c55cf13e66887e7ba76e93dbae60a1f1ffd6c10798be3a16069344ecbc00cebb29bf03d9cd7096ccd098ed011
zookeeper_download_url: "https://dlcdn.apache.org/zookeeper/zookeeper-{{ zookeeper_download_version }}/apache-zookeeper-{{ zookeeper_download_version }}-bin.tar.gz"
zookeeper_download_version_checksum: >-
sha512:9103628a50745fa1a289bca666fda4a9c08ec17c55cf13e66887e7ba76e93dbae60a1f1ffd6c10798be3a16069344ecbc00cebb29bf03d9cd7096ccd098ed011
zookeeper_download_url: >-
https://archive.apache.org/dist/zookeeper/zookeeper-{{ zookeeper_download_version }}/apache-zookeeper-{{ zookeeper_download_version }}-bin.tar.gz
# Define zookeeper clustering option
zookeeper_cluster_members: "{{ groups['zookeeper_all'] }}"

View File

@ -1,4 +1,3 @@
---
- name: Install zookeeper cluster
hosts: zookeeper_all