-
-
Save gowatana/2e2ba2866fc6bca5d3c65bebd911f2a5 to your computer and use it in GitHub Desktop.
helm/nai-demo/values.yaml(コメントアウト行は削除)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| replicaCount: 1 | |
| image: | |
| repository: ghcr.io/gowatana/nai-demo-chat | |
| pullPolicy: IfNotPresent | |
| tag: "v0.0.1" | |
| imagePullSecrets: [] | |
| nameOverride: "" | |
| fullnameOverride: "" | |
| serviceAccount: | |
| create: true | |
| automount: true | |
| annotations: {} | |
| name: "" | |
| podAnnotations: {} | |
| podLabels: {} | |
| podSecurityContext: {} | |
| securityContext: {} | |
| service: | |
| type: LoadBalancer | |
| port: 80 | |
| targetPort: 5000 | |
| ingress: | |
| enabled: false | |
| className: "" | |
| annotations: {} | |
| hosts: | |
| - host: chart-example.local | |
| paths: | |
| - path: / | |
| pathType: ImplementationSpecific | |
| tls: [] | |
| httpRoute: | |
| enabled: false | |
| annotations: {} | |
| parentRefs: | |
| - name: gateway | |
| sectionName: http | |
| hostnames: | |
| - chart-example.local | |
| rules: | |
| - matches: | |
| - path: | |
| type: PathPrefix | |
| value: /headers | |
| resources: | |
| limits: | |
| cpu: 100m | |
| memory: 128Mi | |
| requests: | |
| cpu: 100m | |
| memory: 128Mi | |
| livenessProbe: | |
| httpGet: | |
| path: / | |
| port: http | |
| readinessProbe: | |
| httpGet: | |
| path: / | |
| port: http | |
| autoscaling: | |
| enabled: false | |
| minReplicas: 1 | |
| maxReplicas: 100 | |
| targetCPUUtilizationPercentage: 80 | |
| volumes: [] | |
| volumeMounts: [] | |
| nodeSelector: {} | |
| tolerations: [] | |
| affinity: {} | |
| config: | |
| NAI_ENDPOINT_NAME: "nai-endpoint-01" | |
| NAI_ENDPOINT_URL: "https://192.168.20.100/api/v1/chat/completions" | |
| secret: | |
| NAI_API_KEY: "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
下記の投稿むけ。
NAI 2.4 の推論エンドポイントむけデモ アプリを NKP で起動してみる。
https://blog.ntnx.jp/entry/2025/10/15/233317