Skip to content

Commit fb85f47

Browse files
author
francescotimperi
committed
feat: added ETCD and MILVUS eployment
feat: added ETCD deployment feature: update to operator permissions feature: added deployment for MILVUS operator feature: added deployment for MILVUS operator feature: deploy a default MILVUS cluster feature: deploy a default MILVUS cluster chore: milvus operator deploy feat: managing ETCD root credentials with secrests feat: initial version of milvus standalone deployment fix:ignoring milvus oeprator deployment fix: etcd script executed without interactive mode fix: etcd script executed without interactive mode chore: miluves uses ETCD root credentials chore: fix in milvus create user chore: adding milvus python client chore: adding pymilvus client
1 parent f00b4ab commit fb85f47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+21361
-251
lines changed

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ ADD deploy/monitoring /home/nuvolaris/deploy/monitoring
110110
ADD deploy/alert-manager /home/nuvolaris/deploy/alert-manager
111111
ADD deploy/quota /home/nuvolaris/deploy/quota
112112
ADD deploy/kvrocks /home/nuvolaris/deploy/kvrocks
113+
ADD deploy/etcd /home/nuvolaris/deploy/etcd
114+
ADD deploy/milvus-operator /home/nuvolaris/deploy/milvus-operator
115+
ADD deploy/milvus /home/nuvolaris/deploy/milvus
113116
ADD quota.sh /home/nuvolaris/
114117

115118
USER nuvolaris

Taskfile.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,11 @@ tasks:
208208
clean:
209209
cmds:
210210
- cmd: kubectl -n nuvolaris delete wsku --all
211-
ignore_error: true
211+
ignore_error: true
212+
- cmd: kubectl -n nuvolaris delete kubegres --timeout=60s
213+
ignore_error: true
214+
- cmd: kubectl -n nuvolaris delete milvus --timeout=60s
215+
ignore_error: true
212216
- cmd: kubectl -n nuvolaris delete wsk/controller --grace-period=0 --timeout=5s
213217
ignore_error: true
214218
- cmd: task defin
@@ -219,13 +223,12 @@ tasks:
219223
ignore_error: true
220224
- cmd: kubectl -n nuvolaris delete ing --all --grace-period=0
221225
ignore_error: true
222-
- cmd: kubectl -n nuvolaris delete kubegres --all
223-
ignore_error: true
224226
- cmd: kubectl -n nuvolaris delete cm/config --grace-period=0
225227
ignore_error: true
226228
- cmd: kubectl delete clusterissuers/letsencrypt-issuer
227229
ignore_error: true
228230

231+
229232
utest:
230233
cmds:
231234
- |

TaskfileTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ vars:
3131
CONFIG: "tests/{{.KUBE}}/{{.WHISK}}.yaml"
3232
REDIS_URI: "redis://s0meP%40ass4@redis:6379"
3333
REDIS_PASSWORD: s0meP@ass4
34-
MINIO_HOST: "minio"
34+
MINIO_HOST: "nuvolaris-minio"
3535
MINIO_PORT: 9000
3636
MINIO_USER: "minioadmin"
3737
MINIO_PWD : "minioadmin"

deploy/apisix-etcd/etcd-sts.yaml

Lines changed: 0 additions & 160 deletions
This file was deleted.

deploy/demos/devel/mdb_find.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"find":"test"}

deploy/demos/devel/mdb_insert.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"insert":"nuvolaris",
3+
"documents":[
4+
{
5+
"Name":"Affare",
6+
"Surname":"fatto"
7+
},
8+
{
9+
"Name":"Nuvolaris",
10+
"Surname":"rocks"
11+
},
12+
{
13+
"Name":"Gigi",
14+
"Surname":"La trottola",
15+
"Age":65
16+
}
17+
]
18+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"command":"ls"
3+
}

deploy/demos/devel/minio_cp.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"command":"cp",
3+
"args":[
4+
"nuvolaris-web",
5+
"index.html",
6+
"nuvolaris-web",
7+
"tidy/content2.html"
8+
]
9+
}

deploy/demos/devel/minio_ls.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"command":"ls",
3+
"args":[
4+
"nuvolaris-web"
5+
]
6+
}

deploy/demos/devel/minio_mv.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"command":"mv",
3+
"args":[
4+
"nuvolaris-web",
5+
"content.html",
6+
"nuvolaris-web",
7+
"tidy/content.html"
8+
]
9+
}

0 commit comments

Comments
 (0)