mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 19:57:57 +00:00
74fc53bb6a
Hoorah! Finally made it through the course! On the other hand, I also updated the `concat-asset-folder` function to accept multiple arguments representing the directory hierarchy instead of a separator.
18 lines
334 B
YAML
18 lines
334 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: nginx
|
|
tag: alpine
|
|
name: nginx-alpine
|
|
namespace: {{ .Values.namespace.name }}
|
|
spec:
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
protocol: TCP
|
|
targetPort: {{ .Values.service.port }}
|
|
selector:
|
|
app: nginx
|
|
tag: alpine
|
|
type: {{ .Values.service.type }}
|