mirror of
https://github.com/kerberos-io/factory.git
synced 2026-03-15 15:19:02 +00:00
Compare commits
11 Commits
1.0.104908
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39304220bd | ||
|
|
94ed02c479 | ||
|
|
3e1e9a1921 | ||
|
|
0f40791490 | ||
|
|
d5e1ec2038 | ||
|
|
e54422f5fe | ||
|
|
c09dce8441 | ||
|
|
96c37e6f7f | ||
|
|
443fcd7c75 | ||
|
|
da26325068 | ||
|
|
884687c31d |
@@ -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,9 +20,12 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: factory
|
||||
image: "kerberos/factory:1.0.1049084302" # or you can use "kerberos/factory:latest"
|
||||
image: "uugai/factory:v1.0.9" # or you can use "uugai/factory:latest"
|
||||
#imagePullPolicy: Always
|
||||
resources:
|
||||
requests:
|
||||
memory: 256Mi
|
||||
cpu: 500m
|
||||
limits:
|
||||
memory: 256Mi
|
||||
cpu: 500m
|
||||
@@ -49,7 +52,7 @@ spec:
|
||||
value: "kerberos"
|
||||
|
||||
- name: KERBEROS_AGENT_IMAGE
|
||||
value: "kerberos/agent:24136f8"
|
||||
value: "kerberos/agent:latest"
|
||||
- name: KERBEROS_AGENT_MEMORY_LIMIT
|
||||
value: "256Mi"
|
||||
|
||||
|
||||
@@ -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