add deploy

This commit is contained in:
Kirill Andrusyak
2023-07-17 22:40:01 +00:00
parent ae2f80f22a
commit a536369e6a
11 changed files with 274 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Values.app.fullName }}
namespace: default
spec:
ports:
- port: {{ .Values.app.server.port }}
protocol: TCP
targetPort: {{ .Values.app.server.port }}
selector:
app: {{ .Values.app.fullName }}
sessionAffinity: None
type: ClusterIP
status:
loadBalancer: {}