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

Fix the Upgrade issue for Habitat for BE nodes in Automate HA #7566

Merged
merged 4 commits into from
Nov 28, 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
3 changes: 1 addition & 2 deletions components/automate-backend-ctl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ Non-service package.

## Usage

`automate-backend-ctl help`

`automate-backend-ctl help`
2 changes: 1 addition & 1 deletion components/automate-backend-deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ This provides the `automate-backend-deployment` package.

This package will build a package using terraform/a2ha-terraform, inspecs, test, certs and Makefile.

This is the heart of the a2ha because this component will set up a workspace for a2ha and all the a2ha command will get available after installing this package.
This is the heart of the a2ha because this component will set up a workspace for a2ha and all the a2ha command will get available after installing this package
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ tar xf ${aib_file} -C ${tmp_path}/aib_workspace || failure "Failed to extract ${
rsync -a --keep-dirlinks ${tmp_path}/aib_workspace/hab /

# Copy the hab bin if it doesn't exist
[ ! -f /usr/bin/hab ] && rsync -a ${tmp_path}/aib_workspace/bin/hab /usr/bin

#[ ! -f /usr/bin/hab ] && rsync -a ${tmp_path}/aib_workspace/bin/hab /usr/bin
ln -s ${tmp_path}/aib_workspace/bin/hab /bin/hab
# TODO: remove this workaround once the following issue is resolved
# https://github.com/habitat-sh/habitat/issues/6260
export LOGCMD='>>${tmp_path}/svc-load.log 2>&1'
Expand Down