You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
909 B
46 lines
909 B
6 months ago
|
kind: Service
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: bkb-seller-api-uat
|
||
|
namespace: nft
|
||
|
spec:
|
||
|
selector:
|
||
|
app: bkb-seller-api-uat
|
||
|
type: NodePort
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 8001
|
||
|
targetPort: 8001
|
||
|
nodePort: 30722
|
||
|
---
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: bkb-seller-api-uat
|
||
|
namespace: nft
|
||
|
labels:
|
||
|
app: bkb-seller-api-uat
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: bkb-seller-api-uat
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: bkb-seller-api-uat
|
||
|
version: v1
|
||
|
spec:
|
||
|
imagePullSecrets:
|
||
|
- name: nftkey
|
||
|
containers:
|
||
|
- name: bkb-seller-api-uat
|
||
|
image: registry.cn-shenzhen.aliyuncs.com/ax-stor/ax-bkb-seller
|
||
|
ports:
|
||
|
- containerPort: 8001
|
||
|
volumeMounts:
|
||
|
- name: vol1
|
||
|
mountPath: /go/src/nft/log
|
||
|
volumes:
|
||
|
- name: vol1
|
||
|
hostPath:
|
||
|
path: /log/nft
|