This repository has been archived on 2024-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
badhouseplants-net-old/chart/templates/namespace.yaml
Nikolai Rodionov c1667d4603 chart: Version is upgraded
`VirtualService` resource is fixed
2023-02-26 05:50:17 +01:00

16 lines
398 B
YAML

{{- if .Values.istio.enabled -}}
apiVersion: v1
kind: Namespace
metadata:
name: {{ .Values.namespace.name }}
labels:
{{- include "badhouseplants-net.labels" . | nindent 4 }}
{{- range $key, $value := .Values.namespace.labels}}
{{ $key }}: {{ $value }}
{{- end }}
{{- with .Values.namespace.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}