1234567891011121314151617181920212223242526272829303132333435363738 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: ali-kafka
- spec:
- replicas: 1
- selector:
- matchLabels:
- k8s-app: ali-kafka
- strategy:
- type: Recreate
- template:
- metadata:
- labels:
- k8s-app: ali-kafka
- spec:
- imagePullSecrets:
- - name: registry-key
- containers:
- - command: [ "java","-jar","/app.jar" ]
- env:
- - name: PATH
- value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
- - name: TZ
- value: Asia/Shanghai
- image: { { image } }
- imagePullPolicy: IfNotPresent
- name: ali-kafka
- resources:
- limits:
- cpu: 100m
- memory: 515Mi
- requests:
- cpu: 100m
- memory: 50Mi
- dnsPolicy: ClusterFirst
- terminationGracePeriodSeconds: 10
|