In my szenario I have multiple Microservices that share most of the structure of a kubernetes service. Say we have a structure as the following one:
apiVersion: v1
kind: Service
metadata:
name: dummy
spec:
selector:
app: dummy
ports:
- name: 8080-tcp
protocol: TCP
port: 8080
targetPort: 8080
...and assuming I have 3 services service-a, service-b, service-c. Can I have a kustomization that gets the shown service.yaml as input, and outputs three service definition, one per service-a to c?