Merge "Use env lookup to determine HOME for SSH pubkey"
This commit is contained in:
commit
b571d0d3b5
@ -9,7 +9,7 @@
|
||||
# The path to the SSH key to be utilized for testing and burn-in
|
||||
# to configuration drives. When set, it should be set in both baremetal
|
||||
# and localhost groups, however this is only an override to the default.
|
||||
# ssh_public_key_path: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub"
|
||||
# ssh_public_key_path: "{{ lookup('env', 'HOME') }}/.ssh/id_rsa.pub"
|
||||
|
||||
# Normally this user should be root, however if cirros is used,
|
||||
# a user may wish to define a specific user for testing VM
|
||||
|
@ -17,7 +17,7 @@ mysql_password:
|
||||
# The path to the SSH key to be utilized for testing and burn-in
|
||||
# to configuration drives. When set, it should be set in both baremetal
|
||||
# and localhost groups, however this is only an override to the default.
|
||||
# ssh_public_key_path: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub"
|
||||
# ssh_public_key_path: "{{ lookup('env', 'HOME') }}/.ssh/id_rsa.pub"
|
||||
|
||||
# If testing is true, then the environment is setup for using libvirt
|
||||
# virtual machines for the hardware instead of real hardware.
|
||||
|
@ -17,7 +17,7 @@ mysql_password:
|
||||
# The path to the SSH key to be utilized for testing and burn-in
|
||||
# to configuration drives. When set, it should be set in both baremetal
|
||||
# and localhost groups, however this is only an override to the default.
|
||||
# ssh_public_key_path: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub"
|
||||
# ssh_public_key_path: "{{ lookup('env', 'HOME') }}/.ssh/id_rsa.pub"
|
||||
|
||||
# If testing is true, then the environment is setup for using libvirt
|
||||
# virtual machines for the hardware instead of real hardware.
|
||||
|
@ -6,7 +6,7 @@
|
||||
write_interfaces_file: false
|
||||
http_boot_folder: /httpboot
|
||||
# Default location to the ssh public key for the user operating Bifrost.
|
||||
ssh_public_key_path: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub"
|
||||
ssh_public_key_path: "{{ lookup('env', 'HOME') }}/.ssh/id_rsa.pub"
|
||||
|
||||
# Default interface name
|
||||
# TODO(TheJulia): Remove this default.
|
||||
|
Loading…
x
Reference in New Issue
Block a user