mirror of
https://github.com/openappsec/openappsec.git
synced 2025-07-13 22:14:45 +03:00
14 lines
372 B
YAML
14 lines
372 B
YAML
{{- if and (eq "standalone" .Values.appsec.mode) (eq .Values.appsec.playground false) .Values.appsec.tuning.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Values.appsec.tuning.name }}-svc
|
|
spec:
|
|
ports:
|
|
- name: "http"
|
|
port: 80
|
|
targetPort: {{ .Values.appsec.tuning.port }}
|
|
selector:
|
|
app: {{ .Values.appsec.tuning.name }}-lbl
|
|
{{- end }}
|