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
| apiVersion: v1 kind: ConfigMap metadata: name: myapp-configmap labels: app: myapp-configmap data: SPRING_PROFILES_ACTIVE: test TZ: Asia/Shanghai SPRING_DATASOURCE_HOST: xxx.xxx.xxx.xxx SPRING_DATASOURCE_PORT: "3306" --- apiVersion: v1 kind: Secret metadata: name: myapp-secret type: Opaque data: SPRING_DATASOURCE_USERNAME: cm9vdA== SPRING_DATASOURCE_PASSWORD: cm9vdA== --- apiVersion: v1 kind: Service metadata: name: myapp-svc namespace: default labels: app: myapp-svc spec: type: NodePort ports: - name: server port: 8080 targetPort: 8080 nodePort: 30080 selector: app: myapp-pod --- apiVersion: apps/v1 kind: Deployment metadata: name: myapp-deployment labels: app: myapp-deployment spec: replicas: 1 selector: matchLabels: app: myapp-pod template: metadata: labels: app: myapp-pod spec: containers: - name: myapp image: myapp:latest imagePullPolicy: Always ports: - name: server containerPort: 8080 protocol: TCP envFrom: - configMapRef: name: myapp-configmap - secretRef: name: myapp-secret volumeMounts: - name: applog mountPath: /app/log subPath: myapp lifecycle: preStop: exec: command: ["sh", "-c", "sleep 10"] volumes: - name: applog hostPath: path: /root/k8s/log type: DirectoryOrCreate nodeName: k8sworker1
|