Further modularity.
@@ -0,0 +1,43 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: my-attu-svc
+ labels:
+ app: attu
+spec:
+ type: ClusterIP
+ ports:
+ - name: attu
+ protocol: TCP
+ port: 3000
+ targetPort: 3000
+ selector:
+---
+apiVersion: apps/v1
+kind: Deployment
+ name: my-attu
+ replicas: 1
+ matchLabels:
+ template:
+ metadata:
+ spec:
+ containers:
+ image: zilliz/attu:v2.3.1
+ imagePullPolicy: IfNotPresent
+ containerPort: 3000
+ env:
+ - name: MILVUS_URL
+ value: "my-release-milvus:19530"