16 lines
334 B
YAML
16 lines
334 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "solidtime.fullname" . }}
|
|
labels:
|
|
{{- include "solidtime.labels" . | nindent 4 }}
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 80
|
|
targetPort: 80
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
# Matches the labels in deployment-app.yaml
|
|
app: solidtime-app |