Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tag for L release RC1 for delfin #946

Merged
merged 1 commit into from
Nov 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 6 additions & 14 deletions installer/ansible/group_vars/delfin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,20 @@ dummy:
host_ip: 127.0.0.1

# delfin installation types are: 'repository', 'release' and 'container''
delfin_installation_type: release
delfin_installation_type: repository

# These fields below will specify the tag based on install_from type
repo_branch: master
release_version: v1.7.0
# These fields below will specify the tag based on install from type
delfin_branch: master

# This field indicates which os family the system will be running, currently
# support 'Debian' and 'RedHat'
ansible_os_family: Debian
# Delfin projects release versions
delfin_release_version: v1.6.1

# delete all source packages
source_purge: true

# delete database
database_purge: true

# Delfin projects release versions
delfin_release_version: v1.6.0

# Depended projects release versions
dashboard_release_version: v1.7.0

# URLs, Environment Variables, IP addresses and Ports list
soda_delfin_url: "http://{{ host_ip }}:8190"

Expand Down Expand Up @@ -93,7 +85,7 @@ delfin_exporter_alertmanager_port: 9093

# If user specifies intalling from repository, then he can choose the specific
# repository branch
delfin_repo_branch: "{{ repo_branch }}"
delfin_repo_branch: "{{ delfin_branch }}"

# These fields are NOT suggested to be modified
delfin_remote_url: https://github.com/sodafoundation/delfin.git
Expand Down
1 change: 1 addition & 0 deletions installer/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ sudo apt-get install -y apt-transport-https ca-certificates curl gnupg gnupg-age
echo Installing Python dependencies
sudo apt-get install -y python3-distutils
sudo apt-get install -y python3-pip
sudo python3 -m pip install -U pip setuptools

# Install ansible if not present
if [ "`which ansible`" != "" ]; then
Expand Down