Commit 00e8c531 by tingweiwang

新增kpl-stream服务

1 parent 8a7611af
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: kpl--stream
namespace: kpl
spec:
replicas: 1
template:
metadata:
labels:
app: kpl--stream
spec:
imagePullSecrets:
- name: "harbor-secret"
serviceAccountName: kpl-serviceaccount
nodeSelector:
kpl: "true"
internal_service_node: "true"
containers:
- name: kpl--stream
image: DOCKER_REGISTRY/kpl-stream-v1:latest
imagePullPolicy: Always
volumeMounts:
- name: config
mountPath: /adl/bin/conf/app.yaml
subPath: app.yaml
command: ["kpl--stream", "daemon"]
ports:
- containerPort: 8080
name: port-8080
- containerPort: 2222
name: port-2222
livenessProbe:
initialDelaySeconds: 10
httpGet:
path: /health
port: port-8080
scheme: HTTP
resources:
requests:
cpu: "1000m"
memory: "1024Mi"
limits:
cpu: "4000m"
memory: "4Gi"
volumes:
- name: config
configMap:
name: cfg-kpl-backend
apiVersion: v1
kind: Service
metadata:
labels:
app: kpl--stream
name: kpl--stream
namespace: kpl
spec:
type: NodePort
selector:
app: kpl--stream
ports:
- port: 2222
name: port-2222
targetPort: 2222
nodePort: 30205
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!