1
0
Fork 0

Add missing namespace

This commit is contained in:
Joao Gilberto Magalhaes 2022-08-27 19:52:42 -05:00
parent 4de8361951
commit 7c9da241a3
5 changed files with 10 additions and 0 deletions

View file

@ -4,6 +4,7 @@ apiVersion: v1
kind: ServiceAccount kind: ServiceAccount
metadata: metadata:
name: manual-easyhaproxy-ingress name: manual-easyhaproxy-ingress
namespace: easyhaproxy
labels: labels:
helm.sh/chart: easyhaproxy-ingress-0.1.0 helm.sh/chart: easyhaproxy-ingress-0.1.0
app.kubernetes.io/name: easyhaproxy-ingress app.kubernetes.io/name: easyhaproxy-ingress
@ -16,6 +17,7 @@ kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1 apiVersion: rbac.authorization.k8s.io/v1
metadata: metadata:
name: manual-easyhaproxy-ingress name: manual-easyhaproxy-ingress
namespace: easyhaproxy
labels: labels:
helm.sh/chart: easyhaproxy-ingress-0.1.0 helm.sh/chart: easyhaproxy-ingress-0.1.0
app.kubernetes.io/name: easyhaproxy-ingress app.kubernetes.io/name: easyhaproxy-ingress
@ -81,6 +83,7 @@ kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1 apiVersion: rbac.authorization.k8s.io/v1
metadata: metadata:
name: manual-easyhaproxy-ingress name: manual-easyhaproxy-ingress
namespace: easyhaproxy
labels: labels:
helm.sh/chart: easyhaproxy-ingress-0.1.0 helm.sh/chart: easyhaproxy-ingress-0.1.0
app.kubernetes.io/name: easyhaproxy-ingress app.kubernetes.io/name: easyhaproxy-ingress
@ -94,12 +97,14 @@ roleRef:
subjects: subjects:
- kind: ServiceAccount - kind: ServiceAccount
name: manual-easyhaproxy-ingress name: manual-easyhaproxy-ingress
namespace: easyhaproxy
--- ---
# Source: easyhaproxy-ingress/templates/deployment.yaml # Source: easyhaproxy-ingress/templates/deployment.yaml
apiVersion: apps/v1 apiVersion: apps/v1
kind: DaemonSet kind: DaemonSet
metadata: metadata:
name: manual-easyhaproxy-ingress name: manual-easyhaproxy-ingress
namespace: easyhaproxy
labels: labels:
helm.sh/chart: easyhaproxy-ingress-0.1.0 helm.sh/chart: easyhaproxy-ingress-0.1.0
app.kubernetes.io/name: easyhaproxy-ingress app.kubernetes.io/name: easyhaproxy-ingress

View file

@ -4,6 +4,7 @@ kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1 apiVersion: rbac.authorization.k8s.io/v1
metadata: metadata:
name: {{ include "easyhaproxy-ingress.fullname" . }} name: {{ include "easyhaproxy-ingress.fullname" . }}
namespace: {{ .Release.Namespace }}
labels: labels:
{{- include "easyhaproxy-ingress.labels" . | nindent 4 }} {{- include "easyhaproxy-ingress.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }} {{- with .Values.serviceAccount.annotations }}

View file

@ -4,6 +4,7 @@ kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1 apiVersion: rbac.authorization.k8s.io/v1
metadata: metadata:
name: {{ include "easyhaproxy-ingress.fullname" . }} name: {{ include "easyhaproxy-ingress.fullname" . }}
namespace: {{ .Release.Namespace }}
labels: labels:
{{- include "easyhaproxy-ingress.labels" . | nindent 4 }} {{- include "easyhaproxy-ingress.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }} {{- with .Values.serviceAccount.annotations }}
@ -17,4 +18,5 @@ roleRef:
subjects: subjects:
- kind: ServiceAccount - kind: ServiceAccount
name: {{ include "easyhaproxy-ingress.serviceAccountName" . }} name: {{ include "easyhaproxy-ingress.serviceAccountName" . }}
namespace: {{ .Release.Namespace }}
{{- end }} {{- end }}

View file

@ -3,6 +3,7 @@ apiVersion: apps/v1
kind: DaemonSet kind: DaemonSet
metadata: metadata:
name: {{ include "easyhaproxy-ingress.fullname" . }} name: {{ include "easyhaproxy-ingress.fullname" . }}
namespace: {{ .Release.Namespace }}
labels: labels:
{{- include "easyhaproxy-ingress.labels" . | nindent 4 }} {{- include "easyhaproxy-ingress.labels" . | nindent 4 }}
spec: spec:

View file

@ -3,6 +3,7 @@ apiVersion: v1
kind: ServiceAccount kind: ServiceAccount
metadata: metadata:
name: {{ include "easyhaproxy-ingress.serviceAccountName" . }} name: {{ include "easyhaproxy-ingress.serviceAccountName" . }}
namespace: {{ .Release.Namespace }}
labels: labels:
{{- include "easyhaproxy-ingress.labels" . | nindent 4 }} {{- include "easyhaproxy-ingress.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }} {{- with .Values.serviceAccount.annotations }}