Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created November 3, 2025 11:39
Show Gist options
  • Select an option

  • Save gowatana/2bca0b2d5785d1fca79b7f62326728c4 to your computer and use it in GitHub Desktop.

Select an option

Save gowatana/2bca0b2d5785d1fca79b7f62326728c4 to your computer and use it in GitHub Desktop.
helm/nai-demo/templates/service.yaml
apiVersion: v1
kind: Service
metadata:
name: {{ include "nai-demo.fullname" . }}
labels:
app: {{ include "nai-demo.name" . }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: 5000
protocol: TCP
selector:
app: {{ include "nai-demo.name" . }}
@gowatana
Copy link
Author

gowatana commented Nov 3, 2025

下記の投稿むけ。

NAI 2.4 の推論エンドポイントむけデモ アプリを NKP で起動してみる。
https://blog.ntnx.jp/entry/2025/10/15/233317

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment