12 lines
197 B
YAML
12 lines
197 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: webapp-green
|
|
spec:
|
|
containers:
|
|
- name: simple-webapp
|
|
image: kodekloud/webapp.color
|
|
command: ["python","app.py"]
|
|
args: ["--color","pink"]
|
|
|