All checks were successful
continuous-integration/drone/push Build is passing
* Added Behave BDD Tests for User Service * Added Swagger Docs for User Service * Added Vault, Redpanda helm config (not yet being used) * Added frontend config for host / port when running locally
27 lines
714 B
YAML
27 lines
714 B
YAML
{{/*
|
|
Copyright 2020 Redpanda Data, Inc.
|
|
|
|
Use of this software is governed by the Business Source License
|
|
included in the file licenses/BSL.md
|
|
|
|
As of the Change Date specified in that file, in accordance with
|
|
the Business Source License, use of this software will be governed
|
|
by the Apache License, Version 2.0
|
|
*/}}
|
|
|
|
{{- if .Values.webhook.enabled -}}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "redpanda-operator.name" . }}-webhook-service
|
|
labels:
|
|
{{ include "redpanda-operator.labels" . | indent 4 }}
|
|
spec:
|
|
ports:
|
|
- port: 443
|
|
targetPort: 9443
|
|
selector:
|
|
app.kubernetes.io/name: {{ include "redpanda-operator.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
{{- end -}}
|