本文作者:丁辉
Chatgpt-Pandora
丝滑访问 Chatgpt 方法如下
部署
1
kubectl create -f https://gitee.com/offends/Kubernetes/raw/main/File/Yaml/chatgpt-pandora.yaml
创建 Secret
1
kubectl create secret tls chat-tls --key nginx.key --cert nginx.pem -n tools
创建 Ingress
1
vi chatgpt-pandora-ingress.yaml
内容如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: chatgpt-ingress
namespace: chatgpt
spec:
ingressClassName: nginx
rules:
- host: #域名
http:
paths:
- pathType: Prefix
backend:
service:
name: chatgpt-web
port:
number: 80
path: /
tls:
- hosts:
- #域名
secretName: chat-ssl部署
1
kubectl apply -f chatgpt-pandora-ingress.yaml
获取
在官方获取 accessToken、或登录账号访问 ChatGpt
1
https://chat.openai.com/api/auth/session
I'm so cute. Please give me money.
- 本文链接: https://blog.offends.cn/Kubernetes/资源部署/Chatgpt-Pandora.html
- 版权声明: 本博客所有文章除特别声明外,均默认采用 CC BY-NC-SA 4.0 许可协议。