Created
June 4, 2025 09:01
-
-
Save funzoneq/fc3cc079f1ed2b1ca1db0d18a9bb0eca to your computer and use it in GitHub Desktop.
fort-validator kubernetes config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: fort-validator | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: fort-validator | |
template: | |
metadata: | |
labels: | |
app: fort-validator | |
spec: | |
containers: | |
- name: fort-validator | |
image: nicmx/fort-validator | |
volumeMounts: | |
- name: fort-cache | |
mountPath: /var/local/fort | |
ports: | |
- containerPort: 323 | |
protocol: TCP | |
volumes: | |
- name: fort-cache | |
emptyDir: {} | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
app: fort-validator | |
name: fort-validator-service | |
spec: | |
ports: | |
- port: 323 | |
protocol: TCP | |
targetPort: 323 | |
selector: | |
app: fort-validator | |
type: LoadBalancer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment