add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: pvc-dobbin-unimall-sc
spec:
  storageClassName: nfs-sc
  accessModes:
    - ReadWriteMany
  resources:
    requests:
      storage: 512Mi
---
kind: Service
apiVersion: v1
metadata:
  name: svc-dobbin-unimall
  namespace: dobbin
  labels:
    app: svc-dobbin-unimall
  annotations:
    kubesphere.io/creator: admin
spec:
  ports:
    - name: http-8080
      protocol: TCP
      port: 8080
      targetPort: 8080
  selector:
    k8s-app: unimall
    qcloud-app: unimall
  clusterIP: 10.43.41.71
  clusterIPs:
    - 10.43.41.71
  type: ClusterIP
  sessionAffinity: None
  ipFamilies:
    - IPv4
  ipFamilyPolicy: SingleStack
  internalTrafficPolicy: Cluster
 
---
apiVersion: apps/v1
kind: Deployment
metadata:
  annotations:
    deployment.kubernetes.io/revision: "1"
    description: mall
  labels:
    k8s-app: unimall
    qcloud-app: unimall
  name: unimall
  namespace: dobbin
spec:
  progressDeadlineSeconds: 600
  replicas: 1
  revisionHistoryLimit: 10
  selector:
    matchLabels:
      k8s-app: unimall
      qcloud-app: unimall
  strategy:
    rollingUpdate:
      maxSurge: 1
      maxUnavailable: 0
    type: RollingUpdate
  template:
    metadata:
      labels:
        k8s-app: unimall
        qcloud-app: unimall
    spec:
      containers:
        - image: ${IMAGE}
          imagePullPolicy: Always
          name: unimall
          resources:
            limits:
              cpu: 1000m
              memory: 1124Mi
            requests:
              cpu: 1000m
              memory: 1124Mi
          securityContext:
            privileged: false
          terminationMessagePath: /dev/termination-log
          terminationMessagePolicy: File
          volumeMounts:
            - name: dobbin-unimall-log
              mountPath: "/home/dobbin/logs"
      volumes:
        - name: dobbin-unimall-log
          persistentVolumeClaim:
            claimName: pvc-dobbin-unimall-sc
      dnsPolicy: ClusterFirst
      imagePullSecrets:
        - name: aliyun
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext: {}
      terminationGracePeriodSeconds: 30