aboutsummaryrefslogtreecommitdiffstats
path: root/tools/k8s/app-deployment/helm/charts/trexchart/templates/deployment.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tools/k8s/app-deployment/helm/charts/trexchart/templates/deployment.yaml')
-rw-r--r--tools/k8s/app-deployment/helm/charts/trexchart/templates/deployment.yaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/k8s/app-deployment/helm/charts/trexchart/templates/deployment.yaml b/tools/k8s/app-deployment/helm/charts/trexchart/templates/deployment.yaml
new file mode 100644
index 00000000..8b0f447e
--- /dev/null
+++ b/tools/k8s/app-deployment/helm/charts/trexchart/templates/deployment.yaml
@@ -0,0 +1,26 @@
+{{- if eq .Values.kind "Deployment"}}
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: trex
+ annotations:
+ k8s.v1.cni.cncf.io/networks: "{{- join "\",\"" .Values.extraInterfaces | toYaml | nindent 8}}"
+spec:
+ selector:
+ matchLabels:
+ app: trex
+ replicas: {{ .Values.replicas }}
+ template:
+ metadata:
+ labels:
+ app: trex
+ spec:
+ containers:
+ - name: trex
+ image: vsperf/trex:lakelse
+ imagePullPolicy: IfNotPresent
+ ports:
+ - containerPort: 3000
+ nodeSelector:
+ {{- .Values.nodeSelector.matchLables | toYaml | nindent 12 }}
+{{- end }}