* handle error condition in fission fn log command * use the single stream for log exclude fetcher logs * add all pods in the fn logs command * update the previous stable version * remove proxy to the controller for influxdb call * stop running controller if influxdb flag turned true * port-forward for influx DB * remove controller dependency from test case * port forward to influx DB if URL not provided by the user * archive pruner test
20 lines
430 B
YAML
20 lines
430 B
YAML
{{- if .Values.controller.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: controller
|
|
labels:
|
|
svc: controller
|
|
application: fission-api
|
|
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
spec:
|
|
type: {{ .Values.serviceType }}
|
|
ports:
|
|
- port: 80
|
|
targetPort: 8888
|
|
{{- if eq .Values.serviceType "NodePort" }}
|
|
nodePort: {{ .Values.controllerPort }}
|
|
{{- end }}
|
|
selector:
|
|
svc: controller
|
|
{{- end -}} |