Skip to content

Commit 2343382

Browse files
author
Daniecki, Jozef
committed
Add namespace creation.
1 parent 7abb370 commit 2343382

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# SPDX-FileCopyrightText: 2025 Intel Corporation
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
---
5+
{{- $namespaces := list .Values.core.namespace .Values.bootstrap.namespace .Values.controlplane.namespace | uniq }}
6+
{{- range $namespace := $namespaces }}
7+
{{- if $namespace }}
8+
apiVersion: v1
9+
kind: Namespace
10+
metadata:
11+
name: {{ $namespace }}
12+
---
13+
{{- end }}
14+
{{- end }}

0 commit comments

Comments
 (0)