| 123456789101112131415161718192021222324252627282930313233343536373839 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: {{ .Release.Name }}-higress-plugins
- namespace: {{ .Release.Namespace }}
- labels:
- {{ include "chart_labels" . | indent 4 }}
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: {{ .Release.Name }}-higress-plugins
- template:
- metadata:
- labels:
- app: {{ .Release.Name }}-higress-plugins
- {{ include "chart_labels" . | indent 8 }}
- spec:
- containers:
- - name: higress-plugins
- image: {{ include "higressPlugins.image" . }}
- imagePullPolicy: {{ .Values.higressPlugins.image.pullPolicy }}
- ports:
- - name: http
- containerPort: 8080
- protocol: TCP
- resources:
- requests:
- cpu: 50m
- memory: 64Mi
- limits:
- cpu: 200m
- memory: 128Mi
- readinessProbe:
- httpGet:
- path: /
- port: 8080
- initialDelaySeconds: 5
- periodSeconds: 10
|