7 Commits

Author SHA1 Message Date
Cédric Verstraeten
39304220bd Merge pull request #17 from emresaracoglu/patch-1
Update README.md
2025-12-31 16:01:00 +01:00
Cédric Verstraeten
94ed02c479 Merge pull request #21 from kevindai007/patch-1
Update mongodb.config.yaml
2025-11-21 08:57:11 +01:00
Wenkai Dai
3e1e9a1921 Update mongodb.config.yaml
fix mongodb config error
2025-11-21 11:33:23 +04:00
Cédric Verstraeten
0f40791490 Update mongodb.config.yaml 2025-09-01 09:28:58 +02:00
Cédric Verstraeten
d5e1ec2038 Update mongodb.config.yaml with comments and new database name
Added comments and updated database name in MongoDB config.
2025-08-25 13:10:17 +02:00
Cédric Verstraeten
e54422f5fe Update factory image version to v1.0.9 2025-08-25 13:06:01 +02:00
Emre Saraçoğlu
443fcd7c75 Update README.md
Typo fixed
2024-09-07 20:26:50 +03:00
3 changed files with 11 additions and 3 deletions

View File

@@ -79,9 +79,9 @@ Enable and start crio:
After Container Engine being installed go ahead and install the different Kubernetes servicess and tools.
apt update -y
apt-gt install -y apt-transport-https ca-certificates curl
apt-get install -y apt-transport-https ca-certificates curl
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list
echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list
apt-get update
apt-get install -y kubelet kubeadm kubectl

View File

@@ -20,7 +20,7 @@ spec:
spec:
containers:
- name: factory
image: "uugai/factory:v1.0.8" # or you can use "uugai/factory:latest"
image: "uugai/factory:v1.0.9" # or you can use "uugai/factory:latest"
#imagePullPolicy: Always
resources:
requests:

View File

@@ -3,6 +3,14 @@ kind: ConfigMap
metadata:
name: mongodb
data:
# This is the mongodb database where configurations will be stored, you might use a different name if you want.
MONGODB_DATABASE_FACTORY: "KerberosFactory"
# 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"
# If you do not wish to use the URI, you can specify the individual values.
MONGODB_HOST: "mongodb.mongodb"
MONGODB_DATABASE_CREDENTIALS: "admin"
MONGODB_USERNAME: "root"