* add webhook server * add metrics port * Add self-signed cert generation in helm chart for webhooks (#2611) * remove cert-manager installation * update fission webhook charts * remove extra cluster role * add mutating webhook for pkg creation * Service name and bundle fixes (#2614) * caBundle templating * Rename fission.svc to fission-webhook.svc * update package build status Co-authored-by: shaunak_deshmukh <shaunak@infracloud.io>
15 lines
303 B
YAML
15 lines
303 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: webhook-service
|
|
labels:
|
|
svc: webhook-service
|
|
application: fission-webhook
|
|
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
spec:
|
|
type: {{ .Values.serviceType }}
|
|
ports:
|
|
- port: 443
|
|
targetPort: 9443
|
|
selector:
|
|
svc: webhook-service |