mirror of
https://github.com/kerberos-io/deployment.git
synced 2026-08-23 15:18:32 +00:00
73 lines
2.2 KiB
YAML
73 lines
2.2 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: vault
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: vault
|
|
minReadySeconds: 10
|
|
strategy:
|
|
type: RollingUpdate
|
|
rollingUpdate:
|
|
maxUnavailable: 1
|
|
maxSurge: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: vault
|
|
spec:
|
|
initContainers:
|
|
- name: wait-for-mongodb-before-starup
|
|
image: busybox
|
|
command: ["sh", "-c", "until nc -z mongodb.mongodb 27017 > /dev/null; do echo Waiting for master.; sleep 2; done;"]
|
|
containers:
|
|
- name: vault
|
|
image: ghcr.io/uug-ai/vault:v1.4.0
|
|
resources:
|
|
requests:
|
|
memory: 128Mi
|
|
cpu: 100m
|
|
limits:
|
|
memory: 128Mi
|
|
cpu: 100m
|
|
ports:
|
|
- containerPort: 80
|
|
envFrom:
|
|
- configMapRef:
|
|
name: mongodb
|
|
env:
|
|
- name: GIN_MODE
|
|
value: release
|
|
- name: KERBEROS_LOGIN_USERNAME
|
|
value: "root"
|
|
- name: KERBEROS_LOGIN_PASSWORD
|
|
value: "kerberos"
|
|
# MQTT broker to be used for on-demand forwarding.
|
|
- name: MQTTURI
|
|
value: "tcp://mqtt.kerberos.io:1883"
|
|
- name: MQTT_USERNAME
|
|
value: ""
|
|
- name: MQTT_PASSWORD
|
|
value: ""
|
|
# If you have a chained vault setup, enable this.
|
|
- name: CONTINUOUS_FORWARDING
|
|
value: "false"
|
|
# MongoDB URI (for example for a SaaS service like MongoDB Atlas)
|
|
# If uri is set, the below properties are not used (host, adminDatabase, username, password)
|
|
#MONGODB_URI: "mongodb+srv://xx:xx@kerberos-hub.xxx.mongodb.net/?retryWrites=true&w=majority&appName=xxx"
|
|
# Mongodb configuration (if you are not using the configmap)
|
|
# This is the mongodb database where data will be stored, you might use a different name if you want.
|
|
#- name: MONGODB_DATABASE_STORAGE
|
|
# value : "KerberosStorage"
|
|
# If you do not wish to use the URI, you can specify the individual values.
|
|
#- name: MONGODB_HOST
|
|
# value: "mongodb.mongodb"
|
|
#- name: MONGODB_DATABASE_CREDENTIALS
|
|
# value: "admin"
|
|
#- name: MONGODB_USERNAME
|
|
# value: "root"
|
|
#- name: MONGODB_PASSWORD
|
|
# value: "yourmongodbpassword"
|