mirror of
https://github.com/bakito/adguardhome-sync.git
synced 2024-11-15 04:21:52 +08:00
6b07040ad7
* move e2e test in regular build * write to summary
14 lines
354 B
YAML
14 lines
354 B
YAML
{{ range $i ,$version := .Values.replica.versions }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: service-replica-{{ $version | toString | replace "." "-" }}
|
|
spec:
|
|
selector:
|
|
app.kubernetes.io/name: adguardhome-replica-{{ $version | toString | replace "." "-" }}
|
|
ports:
|
|
- protocol: TCP
|
|
port: 3000
|
|
targetPort: 3000
|
|
---
|
|
{{- end }}
|