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 Valkey role now creates its configured deployment namespace before\n creating certificate 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 Replace the literal newline escape in the release note

When Reno renders this YAML literal block into CHANGELOG.rst, \n is preserved as visible text rather than interpreted as a line break, so the published note will contain before\n creating. Split the sentence across an actual YAML line break instead.

AGENTS.md reference: AGENTS.md:L18-L23

Useful? React with 👍 / 👎.

10 changes: 10 additions & 0 deletions roles/valkey/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Copyright (c) 2025 VEXXHOST, Inc.
# SPDX-License-Identifier: Apache-2.0

- name: Create namespace
run_once: true
kubernetes.core.k8s:
state: present
definition:
apiVersion: v1
kind: Namespace
metadata:
name: "{{ valkey_helm_release_namespace }}"

- name: Create TLS resources
kubernetes.core.k8s:
state: present
Expand Down
Loading