16 lines
375 B
YAML
16 lines
375 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: simple-webapp
|
|
labels:
|
|
name: simple-webapp
|
|
spec:
|
|
containers:
|
|
- name: simple-webapp-container
|
|
image: simple-webapp-color
|
|
ports:
|
|
- containerPort: 8080
|
|
envFrom:
|
|
- configMapRef:
|
|
name: app-config # Die Reference auf die ConfigMap "app-config" 'pod-definition-with-config-map-variables-injection.yml'
|