We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5717ea8 commit 79a949aCopy full SHA for 79a949a
dist/chart/templates/manager/service.yaml
@@ -0,0 +1,18 @@
1
+{{- if .Values.service.enable }}
2
+apiVersion: v1
3
+kind: Service
4
+metadata:
5
+ name: boot-http
6
+ namespace: {{ .Release.Namespace }}
7
+ labels:
8
+ {{- include "chart.labels" . | nindent 4 }}
9
+spec:
10
+ ports:
11
+ - name: boot
12
+ port: {{ .Values.service.port }}
13
+ protocol: TCP
14
+ targetPort: {{ .Values.service.port }}
15
+ selector:
16
+ app.kubernetes.io/instance: boot-operator
17
+ type: ClusterIP
18
+{{- end }}
dist/chart/values.yaml
@@ -45,6 +45,10 @@ controllerManager:
45
- key: node-role.kubernetes.io/control-plane
46
effect: NoSchedule
47
48
+service:
49
+ enable: false
50
+ port: 8082
51
+
52
# [RBAC]: To enable RBAC (Permissions) configurations
53
rbac:
54
enable: true
0 commit comments