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
| apiVersion: apps/v1 kind: Deployment metadata: name: oap namespace: skywalking labels: app: oap release: skywalking spec: replicas: 1 selector: matchLabels: app: oap release: skywalking strategy: type: RollingUpdate rollingUpdate: maxUnavailable: 25% maxSurge: 25% template: metadata: labels: app: oap release: skywalking spec: containers: - name: oap image: 172.31.10.118/apache/skywalking-oap-server:8.3.0-es7 imagePullPolicy: IfNotPresent ports: - containerPort: 11800 name: grpc protocol: TCP - containerPort: 12800 name: rest protocol: TCP env: - name: SW_STORAGE value: elasticsearch7 - name: SW_STORAGE_ES_CLUSTER_NODES value: 172.31.10.119:9200 - name: SW_NAMESPACE value: skywalking resources: {}
|