* Fix for helm 3 and k8s 1.16 * Inclusion of archived directory under k8s * separate deploy-all powershell script for local Mac OS deployment.
		
			
				
	
	
		
			20 lines
		
	
	
		
			470 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			470 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| apiVersion: v1
 | |
| kind: Service
 | |
| metadata:
 | |
|   name: {{ .Values.app.svc.mvc }}
 | |
|   labels:
 | |
|     app: {{ template "webmvc.name" . }}
 | |
|     chart: {{ template "webmvc.chart" . }}
 | |
|     release: {{ .Release.Name }}
 | |
|     heritage: {{ .Release.Service }}
 | |
| spec:
 | |
|   type: {{ .Values.service.type }}
 | |
|   ports:
 | |
|     - port: {{ .Values.service.port }}
 | |
|       targetPort: http
 | |
|       protocol: TCP
 | |
|       name: http
 | |
|   selector:
 | |
|     app: {{ template "webmvc.name" . }}
 | |
|     release: {{ .Release.Name }}
 |