biswapanda commited on
Commit
090d598
·
verified ·
1 Parent(s): 760cda5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +247 -0
README.md ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Default values for nemo-model-management.
2
+ # This is a YAML-formatted file.
3
+ # Declare variables to be passed into your templates.
4
+
5
+ replicaCount: 1
6
+
7
+ image:
8
+ repository: nvcr.io/nvidian/nemo-llm/model-management-service
9
+ pullPolicy: IfNotPresent
10
+ # Overrides the image tag whose default is the chart appVersion.
11
+ tag: 7020bbeeaa7a190795741778614830aba3289004
12
+
13
+ imagePullSecrets:
14
+ - name: nvcrimagepullsecret
15
+ nameOverride: ""
16
+ fullnameOverride: ""
17
+
18
+ serviceAccount:
19
+ # Specifies whether a service account should be created
20
+ create: true
21
+ # Automatically mount a ServiceAccount's API credentials?
22
+ automount: true
23
+ # Annotations to add to the service account
24
+ annotations: {}
25
+ # The name of the service account to use.
26
+ # If not set and create is true, a name is generated using the fullname template
27
+ name: ""
28
+
29
+ podAnnotations: {}
30
+ podLabels: {}
31
+
32
+ podSecurityContext: {}
33
+ # fsGroup: 2000
34
+
35
+ securityContext: {}
36
+ # capabilities:
37
+ # drop:
38
+ # - ALL
39
+ # readOnlyRootFilesystem: true
40
+ # runAsNonRoot: true
41
+ # runAsUser: 1000
42
+
43
+ service:
44
+ type: ClusterIP
45
+ port: 8000
46
+
47
+ ingress:
48
+ enabled: false
49
+ # dns_name: nmm.dev.llm.ngc.nvidia.com
50
+
51
+ resources: {}
52
+ # We usually recommend not to specify default resources and to leave this as a conscious
53
+ # choice for the user. This also increases chances charts run on environments with little
54
+ # resources, such as Minikube. If you do want to specify resources, uncomment the following
55
+ # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
56
+ # limits:
57
+ # cpu: 100m
58
+ # memory: 128Mi
59
+ # requests:
60
+ # cpu: 100m
61
+ # memory: 128Mi
62
+
63
+ autoscaling:
64
+ enabled: false
65
+ minReplicas: 1
66
+ maxReplicas: 100
67
+ targetCPUUtilizationPercentage: 80
68
+ # targetMemoryUtilizationPercentage: 80
69
+
70
+ # Additional volumes on the output Deployment definition.
71
+ volumes:
72
+ - name: mms-api-secret-vol
73
+ secret:
74
+ secretName: mms-api-secret
75
+ optional: false
76
+
77
+ # Additional volumeMounts on the output Deployment definition.
78
+ volumeMounts:
79
+ - name: mms-api-secret-vol
80
+ mountPath: /etc/secrets/
81
+ readOnly: true
82
+
83
+ appConfig:
84
+ LOAD_SECRETS: true
85
+ GITEA_ENDPOINT: http://nms-gitea-http.nms.svc.cluster.local:3000
86
+
87
+
88
+ nodeSelector: {}
89
+
90
+ tolerations: []
91
+
92
+ affinity: {}
93
+
94
+ istio:
95
+ gateway: istio-system/applications
96
+ cors:
97
+ common_origins:
98
+ - regex: https:\/\/stg\.loc\.ngc\.nvidia\.com:3000
99
+ - regex: http:\/\/localhost:3000
100
+ common_allow_methods:
101
+ - GET
102
+ - POST
103
+ - HEAD
104
+ - OPTIONS
105
+ - PUT
106
+ - PATCH
107
+ - DELETE
108
+ common_allow_headers:
109
+ - authorization
110
+ - Access-Control-Allow-Headers
111
+ - Origin
112
+ - Accept
113
+ - X-Requested-With
114
+ - X-Forwarded-For
115
+ - Content-Type
116
+ - Access-Control-Request-Method
117
+ - Access-Control-Request-Headers
118
+ - x-csrf-token
119
+ common_expose_headers:
120
+ - x-request-id
121
+ - x-total-count
122
+ - x-csrf-token
123
+
124
+ minio:
125
+ enabled: true
126
+ mode: standalone
127
+ auth:
128
+ rootUser: minioadmin
129
+ rootPassword: minioadmin
130
+ persistence:
131
+ enabled: false
132
+
133
+ postgresql-api:
134
+ enabled: true
135
+ auth:
136
+ enablePostgresUser: true
137
+ username: mmsuser
138
+ password: mmspass
139
+ database: mms
140
+ # postgresPassword: mmspass
141
+ existingSecret: ""
142
+ architecture: standalone
143
+ service:
144
+ ports:
145
+ postgresql: 5432
146
+ persistence:
147
+ primary:
148
+ persistence:
149
+ enabled: false
150
+
151
+ postgresql-gitea:
152
+ enabled: true
153
+ auth:
154
+ enablePostgresUser: true
155
+ username: gitea
156
+ password: gitea
157
+ database: gitea
158
+ # postgresPassword: gitea
159
+ existingSecret: ""
160
+ architecture: standalone
161
+ service:
162
+ ports:
163
+ postgresql: 5432
164
+ persistence:
165
+ primary:
166
+ persistence:
167
+ enabled: false
168
+
169
+ gitea:
170
+ enabled: true
171
+ redis-cluster:
172
+ enabled: false
173
+ postgresql:
174
+ enabled: false
175
+ postgresql-ha:
176
+ enabled: false
177
+ persistence:
178
+ enabled: false
179
+ # image:
180
+ # repository: nvcr.io/ajwc672qsbdd/gitea
181
+ # tag: nmm-amd64-v1.21.3.20240123
182
+ # pullPolicy: IfNotPresent
183
+ # rootless: true
184
+ # imagePullSecrets:
185
+ # - name: image-pull-sec
186
+ # serviceAccount:
187
+ # create: true
188
+ # name: gitea
189
+ # imagePullSecrets:
190
+ # - name: image-pull-sec
191
+ # --------
192
+ image:
193
+ repository: nvcr.io/nvidian/nemo-llm/model-management-gitea
194
+ tag: nmm-v1.21.3
195
+ pullPolicy: IfNotPresent
196
+ rootless: true
197
+ imagePullSecrets:
198
+ - name: nvcrimagepullsecret
199
+ serviceAccount:
200
+ create: true
201
+ name: gitea
202
+ imagePullSecrets:
203
+ - name: nvcrimagepullsecret
204
+ gitea:
205
+ admin:
206
+ existingSecret: gitea-admin-secret
207
+ email: nemollm-ops@nvidia.com
208
+ additionalConfigSources:
209
+ - secret:
210
+ secretName: gitea-db-storage-creds
211
+ # - configMap:
212
+ # name: gitea-app-ini-plaintext
213
+ config:
214
+ server:
215
+ # DOMAIN: nms-gitea-http.nms.svc.cluster.local
216
+ # ROOT_URL: http://nms-gitea-http.nms.svc.cluster.local:3000/
217
+ LFS_START_SERVER: true
218
+ LFS_JWT_SECRET: 3iCw8yOpo0Ci7suzISAewlI9v0srCdIq9XkHSz73Z3s
219
+ database:
220
+ DB_TYPE: postgres
221
+ # HOST: nms-postgresql-gitea
222
+ NAME: gitea
223
+ USER: gitea
224
+ # SSL_MODE: require
225
+ session:
226
+ PROVIDER: memory
227
+ cache:
228
+ ADAPTER: memory
229
+ queue:
230
+ TYPE: level
231
+ DB_TYPE: postgres
232
+ NAME: gitea
233
+ USER: gitea
234
+ # SSL_MODE: require
235
+ # cron.GIT_GC_REPOS:
236
+ # enabled: false
237
+ lfs:
238
+ STORAGE_TYPE: minio
239
+ storage.minio:
240
+ SERVE_DIRECT: true
241
+ STORAGE_TYPE: minio
242
+ # MINIO_USE_SSL: true
243
+ # MINIO_INSECURE_SKIP_VERIFY: true
244
+ MINIO_ENDPOINT: nms-minio:9000
245
+ MINIO_ACCESS_KEY_ID: minioadmin
246
+ MINIO_SECRET_ACCESS_KEY: minioadmin
247
+ MINIO_BUCKET: models