harmony/examples/rust/webapp/helm/harmony-example-rust-webapp-chart/templates/deployment.yaml
Willem 78e595e696
All checks were successful
Run Check Script / check (pull_request) Successful in 1m37s
feat: added alert manager routes to openshift cluster monitoring
2025-11-17 15:22:43 -05:00

24 lines
611 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "chart.fullname" . }}
spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
app: {{ include "chart.name" . }}
template:
metadata:
labels:
app: {{ include "chart.name" . }}
spec:
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: 3000
protocol: TCP