init
This commit is contained in:
commit
f8b377c347
10 changed files with 1147 additions and 0 deletions
14
helm-chart/templates/service.yaml
Normal file
14
helm-chart/templates/service.yaml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
labels:
|
||||
service: {{ .Values.name }}
|
||||
name: {{ .Values.name }}
|
||||
namespace: {{ .Values.namespace | default .Values.name }}
|
||||
spec:
|
||||
ports:
|
||||
- name: "{{ .Values.port }}"
|
||||
port: {{ .Values.port }}
|
||||
targetPort: {{ .Values.port }}
|
||||
selector:
|
||||
service: {{ .Values.name }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue