switch from Pod to Deployment
ci / build (push) Failing after 1m56s Details

This commit is contained in:
CJ_Clippy 2024-07-17 00:13:35 -08:00
parent 3c04266d58
commit 7773267d20
1 changed files with 123 additions and 104 deletions

View File

@ -25,7 +25,26 @@ metadata:
namespace: futureporn namespace: futureporn
labels: labels:
app.kubernetes.io/name: strapi app.kubernetes.io/name: strapi
apiVersion: apps/v1
kind: Deployment
metadata:
name: strapi
namespace: futureporn
labels:
app.kubernetes.io/name: strapi
spec: spec:
replicas: 2
selector:
matchLabels:
app: strapi
template:
metadata:
labels:
app: strapi
spec:
containers: containers:
- name: strapi - name: strapi
image: "{{ .Values.strapi.imageName }}" image: "{{ .Values.strapi.imageName }}"