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

Release 1.18.0 for CSM 1.6 #260

Merged
merged 10 commits into from
Mar 20, 2024
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.18.0] - 2024-03-20

### Added

- SKERN-9239: Added password-less ssh to CN/UAN to CSM layer

### Removed

- CASMTRIAGE-6787: `net.ipv4.conf.all.rp_filter` tunable no longer set in `ansible/roles/csm.ncn.sysctl/vars/main.yml`

## [1.17.11] - 2024-03-04

### Added

- Added support for `aarch64` IMS remote nodes

## [1.17.10] - 2024-02-28
Expand Down Expand Up @@ -419,7 +431,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Ansible playbook for applying csm packages to Compute and Application nodes

[Unreleased]: https://github.com/Cray-HPE/csm-config/compare/1.17.11...HEAD
[Unreleased]: https://github.com/Cray-HPE/csm-config/compare/1.18.0...HEAD

[1.18.0]: https://github.com/Cray-HPE/csm-config/compare/1.17.11...1.18.0

[1.17.11]: https://github.com/Cray-HPE/csm-config/compare/1.17.10...1.17.11

Expand Down
4 changes: 4 additions & 0 deletions ansible/csm_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
vars:
packages: "{{ common_csm_sles_packages + application_csm_sles_packages }}"
when: ansible_distribution_file_variety == "SUSE"
- role: csm.ca_cert
- role: trust-csm-ssh-keys
tasks:
- name: Add CSM services to presets file
loop: "{{ csm_services }}"
Expand Down Expand Up @@ -100,6 +102,8 @@
vars:
packages: "{{ common_csm_sles_packages + compute_csm_sles_packages }}"
when: ansible_distribution_file_variety == "SUSE"
- role: csm.ca_cert
- role: trust-csm-ssh-keys
tasks:
- name: Add CSM services to presets file
loop: "{{ csm_services }}"
Expand Down
4 changes: 1 addition & 3 deletions ansible/roles/csm.ncn.sysctl/vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# MIT License
#
# (C) Copyright 2023 Hewlett Packard Enterprise Development LP
# (C) Copyright 2023-2024 Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
Expand Down Expand Up @@ -33,8 +33,6 @@ sysctl_config:
value: 0
- name: net.ipv4.conf.all.arp_announce
value: 2
- name: net.ipv4.conf.all.rp_filter
value: 2
- name: net.ipv4.neigh.default.gc_interval
value: 30
- name: net.ipv4.neigh.default.gc_stale_time
Expand Down
Loading