120 lines
2.4 KiB
YAML
120 lines
2.4 KiB
YAML
|
---
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: axonserver-properties
|
||
|
data:
|
||
|
axonserver.properties: |
|
||
|
axoniq.axonserver.name=Axon Server Node 1
|
||
|
axoniq.axonserver.hostname=localhost
|
||
|
axoniq.axonserver.devmode.enabled=true
|
||
|
axoniq.axonserver.snapshot.storage=/eventdata
|
||
|
axoniq.axonserver.controldb-path=/data
|
||
|
axoniq.axonserver.pid-file-location=/data
|
||
|
axoniq.axonserver.max-message-size=25000000
|
||
|
logging.file=/data/axonserver.log
|
||
|
logging.file.max-history=10
|
||
|
|
||
|
---
|
||
|
apiVersion: apps/v1
|
||
|
kind: StatefulSet
|
||
|
metadata:
|
||
|
name: axons
|
||
|
labels:
|
||
|
app: axons
|
||
|
spec:
|
||
|
serviceName: axons
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: axons
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: axons
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: axons
|
||
|
image: axoniq/axonserver
|
||
|
imagePullPolicy: Always
|
||
|
ports:
|
||
|
- name: grpc
|
||
|
containerPort: 8124
|
||
|
protocol: TCP
|
||
|
- name: http
|
||
|
containerPort: 8024
|
||
|
protocol: TCP
|
||
|
volumeMounts:
|
||
|
- name: eventstore
|
||
|
mountPath: /eventdata
|
||
|
- name: data
|
||
|
mountPath: /data
|
||
|
- name: config
|
||
|
mountPath: /config
|
||
|
readOnly: true
|
||
|
readinessProbe:
|
||
|
httpGet:
|
||
|
port: http
|
||
|
path: /actuator/info
|
||
|
initialDelaySeconds: 30
|
||
|
periodSeconds: 5
|
||
|
timeoutSeconds: 1
|
||
|
livenessProbe:
|
||
|
httpGet:
|
||
|
port: gui
|
||
|
path: /actuator/info
|
||
|
initialDelaySeconds: 60
|
||
|
periodSeconds: 5
|
||
|
timeoutSeconds: 1
|
||
|
volumes:
|
||
|
- name: config
|
||
|
configMap:
|
||
|
name: axonserver-properties
|
||
|
volumeClaimTemplates:
|
||
|
- metadata:
|
||
|
name: eventstore
|
||
|
spec:
|
||
|
accessModes: [ "ReadWriteOnce" ]
|
||
|
resources:
|
||
|
requests:
|
||
|
storage: 5Gi
|
||
|
- metadata:
|
||
|
name: data
|
||
|
spec:
|
||
|
accessModes: [ "ReadWriteOnce" ]
|
||
|
resources:
|
||
|
requests:
|
||
|
storage: 1Gi
|
||
|
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: axons-gui
|
||
|
labels:
|
||
|
app: axons
|
||
|
spec:
|
||
|
ports:
|
||
|
- name: gui
|
||
|
port: 8024
|
||
|
targetPort: 8024
|
||
|
nodePort: 30026
|
||
|
selector:
|
||
|
app: axons
|
||
|
type: NodePort
|
||
|
sessionAffinity: ClientIP
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: axons-grpc
|
||
|
labels:
|
||
|
app: axons
|
||
|
spec:
|
||
|
ports:
|
||
|
- name: grpc
|
||
|
port: 8124
|
||
|
targetPort: 8124
|
||
|
clusterIP: None
|
||
|
selector:
|
||
|
app: axons
|