We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94abf61 commit fe80376Copy full SHA for fe80376
README.md
@@ -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
@@ -29,6 +29,14 @@ class Config(BaseModel):
29
30
31
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
40
with open("./config.yaml", "r") as f:
41
x = yaml.safe_load(f)
42
config = Config(**x)
0 commit comments