mirror of
https://github.com/kerberos-io/factory.git
synced 2026-03-10 12:54:24 +00:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39304220bd | ||
|
|
94ed02c479 | ||
|
|
3e1e9a1921 | ||
|
|
0f40791490 | ||
|
|
d5e1ec2038 | ||
|
|
e54422f5fe | ||
|
|
443fcd7c75 |
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user