Skip to content

Commit

Permalink
Revert change as field is actually needed (#1821)
Browse files Browse the repository at this point in the history
  • Loading branch information
cniackz committed Oct 16, 2023
1 parent d53b2b7 commit 65d1502
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions helm/operator/templates/console-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ apiVersion: v1
kind: ConfigMap
metadata:
name: console-env
namespace: {{ .Release.Namespace }}
data:
CONSOLE_PORT: "9090"
CONSOLE_TLS_PORT: "9443"
Expand Down
1 change: 1 addition & 0 deletions helm/operator/templates/console-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: console
namespace: {{ .Release.Namespace }}
labels: {{- include "minio-operator.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.console.replicaCount }}
Expand Down
1 change: 1 addition & 0 deletions helm/operator/templates/console-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "minio-operator.console-fullname" . }}
namespace: {{ .Release.Namespace }}
{{- with .Values.console.ingress.labels }}
labels: {{ toYaml . | nindent 4 }}
{{- end }}
Expand Down
1 change: 1 addition & 0 deletions helm/operator/templates/console-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ apiVersion: v1
kind: Secret
metadata:
name: console-sa-secret
namespace: {{ .Release.Namespace }}
annotations:
kubernetes.io/service-account.name: console-sa
type: kubernetes.io/service-account-token
Expand Down
1 change: 1 addition & 0 deletions helm/operator/templates/console-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ apiVersion: v1
kind: Service
metadata:
name: console
namespace: {{ .Release.Namespace }}
labels: {{- include "minio-operator.labels" . | nindent 4 }}
spec:
ports:
Expand Down
1 change: 1 addition & 0 deletions helm/operator/templates/console-serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: console-sa
namespace: {{ .Release.Namespace }}
{{- end }}
1 change: 1 addition & 0 deletions helm/operator/templates/operator-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: minio-operator
namespace: {{ .Release.Namespace }}
labels: {{- include "minio-operator.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.operator.replicaCount }}
Expand Down
1 change: 1 addition & 0 deletions helm/operator/templates/operator-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apiVersion: v1
kind: Service
metadata:
name: operator
namespace: {{ .Release.Namespace }}
labels: {{- include "minio-operator.labels" . | nindent 4 }}
spec:
type: ClusterIP
Expand Down
1 change: 1 addition & 0 deletions helm/operator/templates/operator-serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: minio-operator
namespace: {{ .Release.Namespace }}
labels: {{- include "minio-operator.labels" . | nindent 4 }}
1 change: 1 addition & 0 deletions helm/operator/templates/sts-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apiVersion: v1
kind: Service
metadata:
name: sts
namespace: {{ .Release.Namespace }}
labels: {{- include "minio-operator.labels" . | nindent 4 }}
spec:
type: ClusterIP
Expand Down

0 comments on commit 65d1502

Please sign in to comment.