Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions dist/chart/templates/manager/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{{- if .Values.service.enable }}
apiVersion: v1
kind: Service
metadata:
name: boot-http
namespace: {{ .Release.Namespace }}
labels:
{{- include "chart.labels" . | nindent 4 }}
spec:
ports:
- name: boot
port: {{ .Values.service.port }}
protocol: TCP
targetPort: {{ .Values.service.port }}
selector:
app.kubernetes.io/instance: boot-operator
type: ClusterIP
{{- end }}
4 changes: 4 additions & 0 deletions dist/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ controllerManager:
- key: node-role.kubernetes.io/control-plane
effect: NoSchedule

service:
enable: false
port: 8082

# [RBAC]: To enable RBAC (Permissions) configurations
rbac:
enable: true
Expand Down
Loading