16 lines
316 B
YAML
16 lines
316 B
YAML
apiVersion: v1
|
|
kind: {{.Values.kind}}
|
|
metadata:
|
|
name: {{.Values.podname}}
|
|
spec:
|
|
containers:
|
|
- name: {{.Values.containername}}
|
|
image: {{.Values.image}}
|
|
volumeMounts:
|
|
- mountPath: /usr/share/nginx/html
|
|
name: nginx-path
|
|
volumes:
|
|
- name: nginx-path
|
|
configMap:
|
|
name: nginx-configmap
|