banner
NEWS LETTER

Chatgpt-Pandora

Scroll down

本文作者:丁辉

Chatgpt-Pandora

丝滑访问 Chatgpt 方法如下

  1. 部署

    1
    kubectl create -f https://gitee.com/offends/Kubernetes/raw/main/File/Yaml/chatgpt-pandora.yaml
  2. 创建 Secret

    1
    kubectl create secret tls chat-tls --key nginx.key --cert nginx.pem -n tools
  3. 创建 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
    22
    apiVersion: 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
  4. 部署

    1
    kubectl apply -f chatgpt-pandora-ingress.yaml
  5. 获取

    在官方获取 accessToken、或登录账号访问 ChatGpt

    1
    https://chat.openai.com/api/auth/session

I'm so cute. Please give me money.

其他文章
cover
Helm私有仓库部署
  • 70/01/01
  • 00:00
  • Kubernetes-资源部署
cover
Kubernetes部署Simplex
  • 70/01/01
  • 00:00
  • Kubernetes-资源部署
目录导航 置顶
  1. 1. Chatgpt-Pandora
请输入关键词进行搜索