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

Provide support for ssh-sk for Nova #1386

Draft
wants to merge 2 commits into
base: stackhpc/2024.1
Choose a base branch
from
Draft
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
4 changes: 2 additions & 2 deletions etc/kayobe/kolla-image-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ kolla_image_tags:
heat:
rocky-9: 2024.1-rocky-9-20240805T142526
nova:
rocky-9: 2024.1-rocky-9-20241004T094540
ubuntu-jammy: 2024.1-ubuntu-jammy-20241004T094540
rocky-9: 2024.1-rocky-9-20241126T110410
ubuntu-jammy: 2024.1-ubuntu-jammy-20241126T110410
neutron:
rocky-9: 2024.1-rocky-9-20241025T090323
ubuntu-jammy: 2024.1-ubuntu-jammy-20241025T090323
Expand Down
4 changes: 4 additions & 0 deletions etc/kayobe/kolla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,10 @@ kolla_build_blocks:
{% set magnum_capi_packages = ['magnum-capi-helm==1.1.0'] %}
RUN {{ macros.install_pip(magnum_capi_packages | customizable("pip_packages")) }}
{% endraw %}
nova_base_footer: |
{% raw %}
RUN {{ macros.upper_constraints_version_change('cryptography', '42.*', '43.0.0') }}
{% endraw %}

# Dict mapping image customization variable names to their values.
# Each variable takes the form:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
features:
- |
Add support for using `ssh-sk` key types within Nova providing
users with the option of improving security of SSH access to
their instances.

Loading