Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
fixes:
- |
The Keepalived role now creates the ``openstack`` namespace when enabled\n before deploying its resources.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Remove the literal newline escape from the release note

The block scalar preserves \n as two literal characters, so the generated changelog will display “enabled\n before” instead of a normal sentence. Replace the escape with an actual line break so the published release note remains natural English.

AGENTS.md reference: AGENTS.md:L20-L20

Useful? React with 👍 / 👎.

11 changes: 11 additions & 0 deletions roles/keepalived/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@
# License for the specific language governing permissions and limitations
# under the License.

- name: Create namespace
run_once: true
when: keepalived_enabled | bool
kubernetes.core.k8s:
state: present
definition:
apiVersion: v1
kind: Namespace
metadata:
name: openstack

- name: Deploy service
run_once: true
when: keepalived_enabled | bool
Expand Down
Loading