mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-04-12 22:23:14 +00:00
18 lines
458 B
YAML
18 lines
458 B
YAML
{{- if .Values.bootstrap.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "tf-runner.fullname" . }}-{{ .Values.bootstrap.serviceName }}
|
|
labels:
|
|
{{- include "tf-runner.labels" . | nindent 4 }}
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
{{- include "tf-runner.selectorLabels" . | nindent 4 }}
|
|
testing-framework/component: bootstrap
|
|
ports:
|
|
- name: http
|
|
port: {{ .Values.bootstrap.port }}
|
|
targetPort: http
|
|
{{- end }}
|