aboutsummaryrefslogtreecommitdiffstats
path: root/tools/k8s/app-deployment/helm/charts/trexchart/templates/deployment.yaml
blob: 8b0f447e1f945b76fa0c95a8ca907d549016090b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 }}