26 lines
577 B
YAML
26 lines
577 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: tamagotchi-frontend
|
|
namespace: tamagotchi
|
|
labels:
|
|
app: tamagotchi-frontend
|
|
tier: frontend
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: tamagotchi-frontend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: tamagotchi-frontend
|
|
tier: frontend
|
|
spec:
|
|
containers:
|
|
- name: frontend
|
|
image: git.khalilaliouich.com/khalil/tamagotchi-frontend:787a094c59f2330f5af1e420eab6139b8aadb8be
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 80
|