-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.yaml
166 lines (165 loc) · 3.76 KB
/
basic.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv-sd-data
spec:
accessModes:
- ReadWriteOnce
capacity:
storage: 100Gi
hostPath:
path: /sd-data
type: DirectoryOrCreate
persistentVolumeReclaimPolicy: Retain
volumeMode: Filesystem
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: pvc-sd-data
namespace: default
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Gi
storageClassName: ''
volumeMode: Filesystem
volumeName: pv-sd-data
---
apiVersion: v1
kind: Service
metadata:
name: sd
namespace: default
spec:
ports:
- name: automatic1111
port: 8080
protocol: TCP
targetPort: 8080
- name: comfy
port: 8081
protocol: TCP
targetPort: 8081
selector:
workload.user.cattle.io/workloadselector: apps.deployment-default-stablediffusion
sessionAffinity: None
type: ClusterIP
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations: {}
name: sd
namespace: default
spec:
rules:
- host: automatic1111.sienarfleet.systems
http:
paths:
- backend:
service:
name: sd
port:
number: 8080
path: /
pathType: Prefix
- host: comfy.sienarfleet.systems
http:
paths:
- backend:
service:
name: sd
port:
number: 8081
path: /
pathType: Prefix
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: stablediffusion
annotations: {}
labels:
workload.user.cattle.io/workloadselector: apps.deployment-default-stablediffusion
namespace: default
spec:
strategy:
type: Recreate
selector:
matchLabels:
workload.user.cattle.io/workloadselector: apps.deployment-default-stablediffusion
template:
metadata:
labels:
workload.user.cattle.io/workloadselector: apps.deployment-default-stablediffusion
namespace: default
spec:
runtimeClassName: nvidia
containers:
- name: comfyui
ports:
- containerPort: 8081
name: http
protocol: TCP
image: harbor.sienarfleet.systems/stablediffusion/comfy:latest
args:
- python
- -u
- main.py
- --listen
- --port
- "8081"
volumeMounts:
- name: sd-data
mountPath: /data
- name: automatic1111
ports:
- containerPort: 8080
name: http
protocol: TCP
# resources:
# limits:
# nvidia.com/gpu: 1
image: harbor.sienarfleet.systems/stablediffusion/automatic1111:latest
args:
- python
- -u
- webui.py
- --listen
- --allow-code
- --medvram
- --xformers
- --enable-insecure-extension-access
- --api
- --port
- "8080"
volumeMounts:
- name: sd-data
mountPath: /data
- name: sd-output
mountPath: /output
imagePullSecrets: []
initContainers:
- imagePullPolicy: IfNotPresent
name: models
image: harbor.sienarfleet.systems/stablediffusion/download:latest
command:
- /docker/init.sh
args:
- /data
volumeMounts:
- name: sd-data
mountPath: /data
- name: sd-output
mountPath: /output
restartPolicy: Always
volumes:
- persistentVolumeClaim:
claimName: pvc-sd-data
name: sd-data
replicas: 1
---