Skip to content

Commit

Permalink
mintaka-ns from helm
Browse files Browse the repository at this point in the history
  • Loading branch information
pulledtim committed Jan 21, 2025
1 parent 51e6bbc commit 7cd56b1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions charts/mintaka/templates/deployment-hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ apiVersion: autoscaling/v2beta2
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "mintaka.fullname" . }}
namespace: {{ $.Release.Namespace | quote }}
labels:
{{ include "mintaka.labels" . | nindent 4 }}
spec:
Expand Down
1 change: 1 addition & 0 deletions charts/mintaka/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "mintaka.fullname" . }}
namespace: {{ $.Release.Namespace | quote }}
labels:
{{ include "mintaka.labels" . | nindent 4 }}
spec:
Expand Down
1 change: 1 addition & 0 deletions charts/mintaka/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "mintaka.fullname" . }}
namespace: {{ $.Release.Namespace | quote }}
labels:
{{ include "mintaka.labels" . | nindent 4 }}
{{- if .Values.ingress.annotations }}
Expand Down
1 change: 1 addition & 0 deletions charts/mintaka/templates/route.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: {{ include "mintaka.fullname" . }}
namespace: {{ $.Release.Namespace | quote }}
labels:
{{ include "mintaka.labels" . | nindent 4 }}
{{- if .Values.route.annotations }}
Expand Down
1 change: 1 addition & 0 deletions charts/mintaka/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apiVersion: v1
kind: Secret
metadata:
name: {{ include "mintaka.fullname" . }}
namespace: {{ $.Release.Namespace | quote }}
labels:
{{ include "mintaka.labels" . | nindent 4 }}
type: Opaque
Expand Down
1 change: 1 addition & 0 deletions charts/mintaka/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apiVersion: v1
kind: Service
metadata:
name: {{ include "mintaka.fullname" . }}
namespace: {{ $.Release.Namespace | quote }}
{{- if .Values.service.annotations }}
annotations:
{{ toYaml .Values.service.annotations | nindent 4 }}
Expand Down
1 change: 1 addition & 0 deletions charts/mintaka/templates/serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "mintaka.fullname" . }}
namespace: {{ $.Release.Namespace | quote }}
{{- if .Values.serviceAccount.annotations }}
annotations:
{{ toYaml .Values.serviceAccount.annotations | nindent 4 }}
Expand Down

0 comments on commit 7cd56b1

Please sign in to comment.