init repo

This commit is contained in:
Sun-ZhenXing
2026-02-16 09:12:50 +08:00
commit 3360ca01a2
71 changed files with 1934 additions and 0 deletions

16
src/phoenix/Makefile Normal file
View File

@@ -0,0 +1,16 @@
HELM_RELEASE_NAME ?= phoenix
HELM_APPLICATION_NAME ?= phoenix
HELM_NAMESPACE ?= phoenix
HELM_DIR ?= ./helm
HELM_CHART_VERSION ?= 4.0.37
HELM_VALUES_FILE ?= ./values.yaml
HELM_OCI_REGISTRY ?= docker.io
HELM_OCI_NAMESPACE ?= arizephoenix
HELM_OCI_USERNAME ?=
HELM_OCI_PASSWORD ?=
HELM_REPO_NAME ?=
HELM_REPO_URL ?=
HELM_CHART_REPO ?= oci://$(HELM_OCI_REGISTRY)/$(HELM_OCI_NAMESPACE)/phoenix-helm
HELM_LANE ?=
include ../_template/base.mk

29
src/phoenix/README.md Normal file
View File

@@ -0,0 +1,29 @@
# Phoenix
## Introduction
Arize Phoenix is an open-source tool for ML observability that runs in your notebook or application to visualize and monitor your model performance.
## Installation
To install Phoenix, run:
```bash
make install
```
## Usage
After installation, verify the deployment:
```bash
kubectl get pods -n phoenix
```
To access Phoenix, port-forward the service:
```bash
kubectl port-forward svc/phoenix 6006:6006 -n phoenix
```
Then access at <http://localhost:6006>

29
src/phoenix/README.zh.md Normal file
View File

@@ -0,0 +1,29 @@
# Phoenix
## 简介
Arize Phoenix 是一个开源工具,用于 ML 可观测性,在您的笔记本或应用中运行以可视化和监控模型性能。
## 安装
要安装 Phoenix请运行
```bash
make install
```
## 使用
安装后,验证部署:
```bash
kubectl get pods -n phoenix
```
要访问 Phoenix请端口转发服务
```bash
kubectl port-forward svc/phoenix 6006:6006 -n phoenix
```
然后在 <http://localhost:6006> 访问

47
src/phoenix/values.yaml Normal file
View File

@@ -0,0 +1,47 @@
replicaCount: 3
ingress:
enabled: true
className: nginx
pathType: Prefix
annotations: {}
host: phoenix.local
postgresql:
enabled: false
database:
allocatedStorageGiB: 100
defaultRetentionPolicyDays: 0
postgres:
db: phoenix
host: phoenix-postgres
password: phoenix-postgres-password # Change me!
port: 5432
schema: public
user: phoenix
service:
type: LoadBalancer
auth:
enableAuth: false
secret:
- key: "PHOENIX_SECRET"
value: "phoenix-secret" # Change me!
- key: "PHOENIX_ADMIN_SECRET"
value: "phoenix-admin-secret" # Change me!
- key: "PHOENIX_POSTGRES_PASSWORD"
value: "phoenix-postgres-password" # Change me!
- key: "PHOENIX_SMTP_PASSWORD"
value: "phoenix-smtp-password" # Change me!
- key: "PHOENIX_DEFAULT_ADMIN_INITIAL_PASSWORD"
value: "phoenix-default-admin-initial-password" # Change me!
resources:
limits:
cpu: "1"
memory: "2Gi"
requests:
cpu: "0.1"
memory: "512Mi"