Kubernetes/问题记录/Jumpserver-helm部署时遇到的问题.md
offends 7a2f41e7d6
All checks were successful
continuous-integration/drone Build is passing
synchronization
2024-08-07 18:54:39 +08:00

1.1 KiB

本文作者:丁辉

Jumpserver-helm部署时遇到的问题

jumpserver官网地址

  • 组件启动一直处于准备状态未启动 (原因是因为有一个 Svc 没有生成出来导致其他 Pod 无法连接)

    (这个问题有点久远了,当时写这份文档的时候没有截图报错哈哈)

    1. 部署 service

      vi jump-svc.yaml
      

      内容如下

      apiVersion: v1
      kind: Service
      metadata:
        name: jump-service
      spec:
        selector:
          app.jumpserver.org/name: jms-web
        ports:
        - protocol: TCP
          port: 80
          targetPort: 80
          nodePort: 30000
        type: NodePort
      
    2. 部署

      kubectl apply -f jump-svc.yaml
      
  • Jumpsevrer-helm部署遇到解析未自动生成问题

    单独给pod添加域名解析

    • 写法1

      hostAliases:
        - ip: 127.0.0.1
          hostnames:
          - "$yuming"
      
    • 写法2

      hostAliases:
      - hostnames:
        - $yuming
        ip: 127.0.0.1