mirror of
https://github.com/amkartashov/gf-k8s.git
synced 2026-01-11 18:09:44 +00:00
Add deployment for nukkit
This commit is contained in:
parent
6c828e070e
commit
a78fec4cea
1 changed files with 50 additions and 0 deletions
50
nukkit.yaml
Normal file
50
nukkit.yaml
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
---
|
||||
apiVersion: apps/v1beta2
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: nukkit
|
||||
labels:
|
||||
app: nukkit
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: nukkit
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: nukkit
|
||||
spec:
|
||||
hostname: nukkit
|
||||
volumes:
|
||||
- name: nukkit
|
||||
hostPath:
|
||||
path: /data/home/nukkit
|
||||
type:
|
||||
containers:
|
||||
- name: nukkit
|
||||
image: ixilon/nukkit:1.2.10
|
||||
imagePullPolicy: IfNotPresent
|
||||
env:
|
||||
ports:
|
||||
- containerPort: 19132
|
||||
name: nukkit
|
||||
protocol: UDP
|
||||
volumeMounts:
|
||||
- mountPath: /srv/nukkit
|
||||
name: nukkit
|
||||
---
|
||||
kind: Service
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: nukkit
|
||||
spec:
|
||||
selector:
|
||||
app: nukkit
|
||||
ports:
|
||||
- name: nukkit
|
||||
protocol: UDP
|
||||
port: 19132
|
||||
targetPort: nukkit
|
||||
nodePort: 30132
|
||||
type: NodePort
|
||||
Loading…
Reference in a new issue