Create agro helm chart
This commit is contained in:
parent
5456fd1e8b
commit
b2f8f0c283
12 changed files with 175 additions and 0 deletions
17
charts/argo/templates/ui-service.yaml
Normal file
17
charts/argo/templates/ui-service.yaml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-{{ .Values.uiName}}
|
||||
labels:
|
||||
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
|
||||
release: {{ .Release.Name }}
|
||||
heritage: {{ .Release.Service }}
|
||||
spec:
|
||||
ports:
|
||||
- port: 80
|
||||
protocol: TCP
|
||||
targetPort: 8001
|
||||
selector:
|
||||
app: {{ .Release.Name }}-{{ .Values.uiName}}
|
||||
sessionAffinity: None
|
||||
type: LoadBalancer
|
||||
Loading…
Add table
Add a link
Reference in a new issue