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
| kind: Deployment apiVersion: extensions/v1beta1 metadata: labels: app: linux-tomcat-app1-deployment-label name: linux-tomcat-app1-deployment namespace: linux spec: replicas: 1 selector: matchLabels: app: linux-tomcat-app1-selector template: metadata: labels: app: linux-tomcat-app1-selector spec: containers: - name: linux-tomcat-app1-container image: harbor.qh.net/linux36/tomcat-app1:2019-05-03_11-29-30 imagePullPolicy: Always ports: - containerPort: 8080 protocol: TCP name: http env: - name: "password" value: "123456" - name: "age" value: "18" resources: limits: cpu: 2 memory: "2048Mi" requests: cpu: 500m memory: "1024Mi" volumeMounts: - name: linux-images mountPath: /data/tomcat/webapps/myapp/images readOnly: false - name: linux-static mountPath: /data/tomcat/webapps/myapp/static readOnly: false volumes: - name: linux-images nfs: server: 192.168.7.108 path: /data/k8sdata/linux/images - name: linux36-static nfs: server: 192.168.7.108 path: /data/k8sdata/linux/static nodeSelector: project: linux36
--- kind: Service apiVersion: v1 metadata: labels: app: linux-tomcat-app1-service-label name: linux-tomcat-app1-service namespace: linux spec: type: NodePort ports: - name: http port: 80 protocol: TCP targetPort: 8080 nodePort: 30003 selector: app: linux-tomcat-app1-selector
|