2026-08-29 21:28:28 +00:00
|
|
|
{% for artifact in artifacts %}
|
2026-05-06 08:07:28 -05:00
|
|
|
apiVersion: v1
|
|
|
|
|
kind: Service
|
|
|
|
|
metadata:
|
2026-08-29 21:28:28 +00:00
|
|
|
name: {{ artifact.service_name }}
|
2026-05-06 08:07:28 -05:00
|
|
|
namespace: {{ namespace }}
|
2026-08-29 21:28:28 +00:00
|
|
|
{% if artifact.virtual_host %} annotations:
|
|
|
|
|
traefik.ingress.kubernetes.io/service.passhostheader: "false"
|
|
|
|
|
{% endif %}
|
2026-05-06 08:07:28 -05:00
|
|
|
spec:
|
|
|
|
|
type: ExternalName
|
2026-08-29 21:28:28 +00:00
|
|
|
externalName: {{ artifact.external_name }}
|
2026-05-06 08:07:28 -05:00
|
|
|
ports:
|
|
|
|
|
- port: 80
|
|
|
|
|
targetPort: 80
|
2026-08-29 21:28:28 +00:00
|
|
|
{% if not loop.last %}---
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endfor %}
|