Source: https://github.com/GoogleCloudPlatform/kubernetes-engine-samples/tree/main/guestbook
26 lines
475 B
YAML
26 lines
475 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: frontend
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: guestbook
|
|
tier: frontend
|
|
replicas: 3
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: guestbook
|
|
tier: frontend
|
|
spec:
|
|
containers:
|
|
- name: php-redis
|
|
image: gcr.io/google-samples/gb-frontend:v5
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 100Mi
|
|
ports:
|
|
- containerPort: 80
|