Skip to content

Commit fe80376

Browse files
committed
update
1 parent 94abf61 commit fe80376

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Init Server
2+
3+
This is a init container for the arkitekt platform,
4+
which establishes the necessary buckets and access policies
5+
according to the configuration.

init.py

+8
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ class Config(BaseModel):
2929

3030

3131
def main():
32+
33+
print("Initializing MinIO server...")
34+
print(f"MinIO address: {minio_address}")
35+
print(f"Root user: {root_user}")
36+
print(f"Root password: {root_password}")
37+
print(f"Alias: {alias}")
38+
39+
3240
with open("./config.yaml", "r") as f:
3341
x = yaml.safe_load(f)
3442
config = Config(**x)

0 commit comments

Comments
 (0)