先安装Ingress Controller

安装Ingress Controller后,其他服务设置Ingress后就可以通过设置的域名进行访问了,就不用通过代理的方式或者ip:port的方式进行访问了

安装Ingress Controller

教程地址:https://www.cnblogs.com/sanduzxcvbnm/p/13208837.html

安装Ingress Controller后的效果







几种不同的访问方式

1.通过代理方式访问







2.通过ip:port方式访问





3.通过域名方式访问

因为是在本机进行的测试,需要在本机hosts中添加解析

192.168.75.11 cloud-eureka.hkd.demo.kuboard.cn



改造项目使用的Dockerfile文件

详细地址:https://www.cnblogs.com/sanduzxcvbnm/p/13209058.html

部署eureka

需要采用Statefulsets,不能采用Delpoyments

原因分析:

采用Delpoyments的话,设置三个副本,eureka界面上会显示三个出来

但是会有问题,其他服务无法注册进来

采用Statefulsets的话,设置三个副本,eureka界面上会显示随机显示两个出来,刷新页面,会显示的这俩会随机变动,总之不会显示三个,并且其他服务也能注册进来

步骤选项





部署config



部署gateway







部署auth





eureka,config,gateway,auth效果

其他模块

剩余的其他模块配置差不多都一样,都是在StatefulSet,镜像tag是0.3,都开启了Service,但是没有开启ingress

最终效果





思考:关于模块要不要开启访问方式 Service?要不要开启ingress?

1.Service是必须要开的

因为若关闭的话,有些服务是依赖于其他服务的,假若把config模块的给关了,则gateway模块会因为找不到config而无法启动

关闭后的效果

开启后的效果

2.ingress,这个根据情况而定,这个是给外网访问用的,有些模块需要进行外网访问,比如eureka,有些不需要,那么只给有需要的开启,没需要的就不开启

导出工作负载

地址:https://files.cnblogs.com/files/sanduzxcvbnm/kuboard_hkd_20200630093006.7z

文件内容:


---
apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: hkd
name: cloud-config
annotations:
k8s.kuboard.cn/workload: cloud-config
k8s.kuboard.cn/displayName: 配置中心
k8s.kuboard.cn/ingress: 'false'
k8s.kuboard.cn/service: NodePort
labels:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-config
spec:
selector:
matchLabels:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-config
revisionHistoryLimit: 10
template:
metadata:
labels:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-config
spec:
securityContext:
seLinuxOptions: {}
imagePullSecrets:
- name: nexus
restartPolicy: Always
initContainers: []
containers:
- image: 'idocker.io/hkd-config:0.3'
imagePullPolicy: Always
name: hkd-config
volumeMounts: []
resources:
limits:
requests:
env: []
envFrom:
- configMapRef:
name: eureka-config
lifecycle: {}
volumes: []
dnsPolicy: ClusterFirst
dnsConfig: {}
nodeName: worker
terminationGracePeriodSeconds: 30
replicas: 1
volumeClaimTemplates: []
serviceName: cloud-config ---
apiVersion: v1
kind: Service
metadata:
namespace: hkd
name: cloud-config
annotations:
k8s.kuboard.cn/workload: cloud-config
k8s.kuboard.cn/displayName: 配置中心
labels:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-config
spec:
selector:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-config
type: NodePort
ports:
- port: 8888
targetPort: 8888
protocol: TCP
name: msbf6b
nodePort: 30886 ---
apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: hkd
name: cloud-eureka
annotations:
k8s.kuboard.cn/workload: cloud-eureka
k8s.kuboard.cn/displayName: 服务注册中心
k8s.kuboard.cn/ingress: 'true'
k8s.kuboard.cn/service: NodePort
labels:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-eureka
spec:
selector:
matchLabels:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-eureka
revisionHistoryLimit: 10
template:
metadata:
labels:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-eureka
spec:
securityContext:
seLinuxOptions: {}
imagePullSecrets:
- name: nexus
restartPolicy: Always
initContainers: []
containers:
- image: 'idocker.io/hkd-eureka:0.3'
imagePullPolicy: Always
name: eureka-server
volumeMounts: []
resources:
limits:
requests:
env: []
envFrom:
- configMapRef:
name: eureka-config
lifecycle: {}
volumes: []
dnsPolicy: ClusterFirst
dnsConfig: {}
terminationGracePeriodSeconds: 30
replicas: 3
volumeClaimTemplates: []
serviceName: cloud-eureka ---
apiVersion: v1
kind: Service
metadata:
namespace: hkd
name: cloud-eureka
annotations:
k8s.kuboard.cn/workload: cloud-eureka
k8s.kuboard.cn/displayName: 服务注册中心
labels:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-eureka
spec:
selector:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-eureka
type: NodePort
ports:
- port: 8761
targetPort: 8761
protocol: TCP
name: siwrzh
nodePort: 30242 ---
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
namespace: hkd
name: cloud-eureka
annotations:
k8s.kuboard.cn/workload: cloud-eureka
k8s.kuboard.cn/displayName: 服务注册中心
labels:
k8s.kuboard.cn/layer: cloud
k8s.kuboard.cn/name: cloud-eureka
spec:
rules:
- host: cloud-eureka.hkd.demo.kuboard.cn
http:
paths:
- path: /
backend:
serviceName: cloud-eureka
servicePort: siwrzh ---
apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: hkd
name: gateway-gw2
annotations:
k8s.kuboard.cn/workload: gateway-gw2
k8s.kuboard.cn/displayName: 网关中心
k8s.kuboard.cn/ingress: 'true'
k8s.kuboard.cn/service: NodePort
labels:
k8s.kuboard.cn/layer: gateway
k8s.kuboard.cn/name: gateway-gw2
spec:
selector:
matchLabels:
k8s.kuboard.cn/layer: gateway
k8s.kuboard.cn/name: gateway-gw2
revisionHistoryLimit: 10
template:
metadata:
labels:
k8s.kuboard.cn/layer: gateway
k8s.kuboard.cn/name: gateway-gw2
spec:
securityContext:
seLinuxOptions: {}
imagePullSecrets:
- name: nexus
restartPolicy: Always
initContainers: []
containers:
- image: 'idocker.io/hkd-gateway:0.3'
imagePullPolicy: Always
name: hkd-gateway
volumeMounts: []
resources:
limits:
requests:
env: []
envFrom:
- configMapRef:
name: eureka-config
lifecycle: {}
volumes: []
dnsPolicy: ClusterFirst
dnsConfig: {}
terminationGracePeriodSeconds: 30
replicas: 1
volumeClaimTemplates: []
serviceName: gateway-gw2 ---
apiVersion: v1
kind: Service
metadata:
namespace: hkd
name: gateway-gw2
annotations:
k8s.kuboard.cn/workload: gateway-gw2
k8s.kuboard.cn/displayName: 网关中心
labels:
k8s.kuboard.cn/layer: gateway
k8s.kuboard.cn/name: gateway-gw2
spec:
selector:
k8s.kuboard.cn/layer: gateway
k8s.kuboard.cn/name: gateway-gw2
type: NodePort
ports:
- port: 5000
targetPort: 5000
protocol: TCP
name: m6ykbh
nodePort: 31646 ---
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
namespace: hkd
name: gateway-gw2
annotations:
k8s.kuboard.cn/workload: gateway-gw2
k8s.kuboard.cn/displayName: 网关中心
labels:
k8s.kuboard.cn/layer: gateway
k8s.kuboard.cn/name: gateway-gw2
spec:
rules:
- host: gwateway-gw2.hkd.demo.kuboard.cn
http:
paths:
- path: /
backend:
serviceName: gateway-gw2
servicePort: m6ykbh ---
apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: hkd
name: svc-auth
annotations:
k8s.kuboard.cn/workload: svc-auth
k8s.kuboard.cn/displayName: 验证中心
k8s.kuboard.cn/ingress: 'false'
k8s.kuboard.cn/service: NodePort
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-auth
spec:
selector:
matchLabels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-auth
revisionHistoryLimit: 10
template:
metadata:
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-auth
spec:
securityContext:
seLinuxOptions: {}
imagePullSecrets:
- name: nexus
restartPolicy: Always
initContainers: []
containers:
- image: 'idocker.io/hkd-auth:0.3'
imagePullPolicy: Always
name: hkd-auth
volumeMounts: []
resources:
limits:
requests:
env: []
envFrom:
- configMapRef:
name: eureka-config
lifecycle: {}
volumes: []
dnsPolicy: ClusterFirst
dnsConfig: {}
terminationGracePeriodSeconds: 30
replicas: 1
volumeClaimTemplates: []
serviceName: svc-auth ---
apiVersion: v1
kind: Service
metadata:
namespace: hkd
name: svc-auth
annotations:
k8s.kuboard.cn/workload: svc-auth
k8s.kuboard.cn/displayName: 验证中心
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-auth
spec:
selector:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-auth
type: NodePort
ports:
- port: 8765
targetPort: 8765
protocol: TCP
name: wjn5hh
nodePort: 32443 ---
apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: hkd
name: svc-cash
annotations:
k8s.kuboard.cn/workload: svc-cash
k8s.kuboard.cn/ingress: 'false'
k8s.kuboard.cn/service: NodePort
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-cash
spec:
selector:
matchLabels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-cash
revisionHistoryLimit: 10
template:
metadata:
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-cash
spec:
securityContext:
seLinuxOptions: {}
imagePullSecrets:
- name: nexus
restartPolicy: Always
initContainers: []
containers:
- image: 'idocker.io/hkd-cash:0.3'
imagePullPolicy: Always
name: hkd-cash
volumeMounts: []
resources:
limits:
requests:
env: []
envFrom:
- configMapRef:
name: eureka-config
lifecycle: {}
volumes: []
dnsPolicy: ClusterFirst
dnsConfig: {}
terminationGracePeriodSeconds: 30
replicas: 1
volumeClaimTemplates: []
serviceName: svc-cash ---
apiVersion: v1
kind: Service
metadata:
namespace: hkd
name: svc-cash
annotations:
k8s.kuboard.cn/workload: svc-cash
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-cash
spec:
selector:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-cash
type: NodePort
ports:
- port: 8766
targetPort: 8766
protocol: TCP
name: kfcdez
nodePort: 31091 ---
apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: hkd
name: svc-custom
annotations:
k8s.kuboard.cn/workload: svc-custom
k8s.kuboard.cn/ingress: 'false'
k8s.kuboard.cn/service: NodePort
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-custom
spec:
selector:
matchLabels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-custom
revisionHistoryLimit: 10
template:
metadata:
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-custom
spec:
securityContext:
seLinuxOptions: {}
imagePullSecrets:
- name: nexus
restartPolicy: Always
initContainers: []
containers:
- image: 'idocker.io/hkd-custom:0.3'
imagePullPolicy: Always
name: hkd-custom
volumeMounts: []
resources:
limits:
requests:
env: []
envFrom:
- configMapRef:
name: eureka-config
lifecycle: {}
volumes: []
dnsPolicy: ClusterFirst
dnsConfig: {}
terminationGracePeriodSeconds: 30
replicas: 1
volumeClaimTemplates: []
serviceName: svc-custom ---
apiVersion: v1
kind: Service
metadata:
namespace: hkd
name: svc-custom
annotations:
k8s.kuboard.cn/workload: svc-custom
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-custom
spec:
selector:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-custom
type: NodePort
ports:
- port: 8764
targetPort: 8764
protocol: TCP
name: e82zsm
nodePort: 32733 ---
apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: hkd
name: svc-portal
annotations:
k8s.kuboard.cn/workload: svc-portal
k8s.kuboard.cn/ingress: 'false'
k8s.kuboard.cn/service: NodePort
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-portal
spec:
selector:
matchLabels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-portal
revisionHistoryLimit: 10
template:
metadata:
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-portal
spec:
securityContext:
seLinuxOptions: {}
imagePullSecrets:
- name: nexus
restartPolicy: Always
initContainers: []
containers:
- image: 'idocker.io/hkd-portal:0.3'
imagePullPolicy: Always
name: hkd-portal
volumeMounts: []
resources:
limits:
requests:
env: []
envFrom:
- configMapRef:
name: eureka-config
lifecycle: {}
volumes: []
dnsPolicy: ClusterFirst
dnsConfig: {}
terminationGracePeriodSeconds: 30
replicas: 1
volumeClaimTemplates: []
serviceName: svc-portal ---
apiVersion: v1
kind: Service
metadata:
namespace: hkd
name: svc-portal
annotations:
k8s.kuboard.cn/workload: svc-portal
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-portal
spec:
selector:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-portal
type: NodePort
ports:
- port: 8767
targetPort: 8767
protocol: TCP
name: sbwmf2
nodePort: 31346 ---
apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: hkd
name: svc-user
annotations:
k8s.kuboard.cn/workload: svc-user
k8s.kuboard.cn/displayName: 用户
k8s.kuboard.cn/ingress: 'false'
k8s.kuboard.cn/service: NodePort
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-user
spec:
selector:
matchLabels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-user
revisionHistoryLimit: 10
template:
metadata:
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-user
spec:
securityContext:
seLinuxOptions: {}
imagePullSecrets:
- name: nexus
restartPolicy: Always
initContainers: []
containers:
- image: 'idocker.io/hkd-user:0.3'
imagePullPolicy: Always
name: hkd-user
volumeMounts: []
resources:
limits:
requests:
env: []
envFrom:
- configMapRef:
name: eureka-config
lifecycle: {}
volumes: []
dnsPolicy: ClusterFirst
dnsConfig: {}
terminationGracePeriodSeconds: 30
replicas: 1
volumeClaimTemplates: []
serviceName: svc-user ---
apiVersion: v1
kind: Service
metadata:
namespace: hkd
name: svc-user
annotations:
k8s.kuboard.cn/workload: svc-user
k8s.kuboard.cn/displayName: 用户
labels:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-user
spec:
selector:
k8s.kuboard.cn/layer: svc
k8s.kuboard.cn/name: svc-user
type: NodePort
ports:
- port: 8763
targetPort: 8763
protocol: TCP
name: s5egas
nodePort: 30083 ---
metadata:
name: eureka-config
namespace: hkd
managedFields:
- manager: Mozilla
operation: Update
apiVersion: v1
time: '2020-06-29T01:44:36Z'
fieldsType: FieldsV1
fieldsV1:
'f:data':
.: {}
'f:eureka.client.serviceUrl.defaultZone': {}
'f:eureka.instance.prefer-ip-address': {}
data:
eureka.client.serviceUrl.defaultZone: >-
http://cloud-eureka-0.cloud-eureka.hkd.svc.cluster.local:8761/eureka,http://cloud-eureka-1.cloud-eureka.hkd.svc.cluster.local:8761/eureka,http://cloud-eureka-2.cloud-eureka.hkd.svc.cluster.local:8761/eureka
eureka.instance.prefer-ip-address: 'false'
kind: ConfigMap
apiVersion: v1 ---
metadata:
name: nexus
namespace: hkd
managedFields:
- manager: Mozilla
operation: Update
apiVersion: v1
time: '2020-06-28T07:45:21Z'
fieldsType: FieldsV1
fieldsV1:
'f:data':
.: {}
'f:.dockerconfigjson': {}
'f:type': {}
data:
.dockerconfigjson: >-
eyJhdXRocyI6eyJodHRwczovL2lkb2NrZXIuaW8iOnsidXNlcm5hbWUiOiJhZG1pbiIsInBhc3N3b3JkIjoibmV3bm9kZTc4NTIiLCJhdXRoIjoiWVdSdGFXNDZibVYzYm05a1pUYzROVEk9In19fQ==
type: kubernetes.io/dockerconfigjson
kind: Secret
apiVersion: v1

使用Kuboard界面在k8s上部署SpringCloud项目的更多相关文章

  1. 优化:在k8s上部署的gitlab

    gitlab组件图 gitlab在k8s上占用资源 # kubectl top pods -n default | grep git* gitlab-gitaly-0 9m 444Mi gitlab- ...

  2. kubernetes之三 使用kubectl在k8s上部署应用

    在上一篇中,我们学习了使用minikube来搭建k8s集群.k8s集群启动后,就可以在上面部署应用了.本篇,我们就来学习如何使用kubectl在k8s上部署应用. 学习之前,可以先从下面这篇博客上了解 ...

  3. 在k8s上部署日志系统elfk

    日志系统elfk 前言 经过上周的技术预研,在本周一通过开会研究,根据公司的现有业务流量和技术栈,决定选择的日志系统方案为:elasticsearch(es)+logstash(lo)+filebea ...

  4. 使用Rancher在K8S上部署高性能PHP应用程序

    介 绍 PHP是网络上最流行的编程语言之一,许多被广泛使用的内容管理系统都使用它开发,如WordPress和Drupal,并为现代服务器端框架(如Laravel和Symfony)提供核心代码. 尽管P ...

  5. docker初体验:Docker部署SpringCloud项目eureka-server

    Docker部署SpringCloud项目eureka-server 1 创建eureka-server工程 创建父工程cloud-demo,其pom.xml如下: <?xml version= ...

  6. 在nginx上部署vue项目(history模式);

    在nginx上部署vue项目(history模式): vue-router 默认是hash模式,使用url的hash来模拟一个完整的url,当url改变的时候,页面不会重新加载.但是如果我们不想has ...

  7. 在Linux上部署Web项目

    You believe it or not there is a feeling, lifetime all not lost to time. 在Linux上部署Web项目 这个是普通的web项目, ...

  8. 在nginx上部署vue项目(history模式)--demo实列;

    在很早之前,我写了一篇 关于 在nginx上部署vue项目(history模式) 但是讲的都是理论,所以今天做个demo来实战下.有必要让大家更好的理解,我发现搜索这类似的问题还是挺多的,因此在写一篇 ...

  9. 新手小白在github上部署一个项目

    新手小白在github上部署一个项目 一. 注册github账号 github地址:https://www.github.com/ 二.下载安装Git 地址:https://git-scm.com/d ...

随机推荐

  1. 2、MYSQL介绍

    一.mysql优点 1.成本低:开放源代码,一般可以免费试用,采用的是gpl协议 2.性能高:执行很快 3.简单:很容易安装和使用   二.DBMS分为两类: 1.基于共享文件系统的DBMS(Acce ...

  2. Unique -「企划」新生守则(?

    随想随记,主要是整活. 红色贝雷帽大爷会在校园不定期游走,遇见记得打招呼. 面食堂冰沙类饮品请快速解决或者边喝边搅,如果发现饮品甜度骤减请快速前往最近的垃圾桶扔掉. 关于散养猫小黄和小黑. 如果看见小 ...

  3. 对象的反序列化流_ObjectInputStream和transient关键字瞬态关键字

    对象的反序列化流_ObjectInputStream package com.yang.Test.ObjectStreamStudy; import java.io.FileInputStream; ...

  4. 搭建一个完整的K8S集群-------基于CentOS 8系统

    创建三个centos节点: 192.168.5.141 k8s-master 192.168.5.142 k8s-nnode1 192.168.5.143 k8s-nnode2 查看centos系统版 ...

  5. javascript的原型链那些事

    如果你对javascript的原型链还有任何疑问,请看这篇文章 进入主题 前言 原型链的规则不百分百适用于所有情况 显式原型:prototype,是一个对象{} 隐式原型:__proto__,是一个对 ...

  6. Win10系统下安装编辑器之神(The God of Editor)Vim并且构建Python生态开发环境(2020年最新攻略)

    原文转载自「刘悦的技术博客」https://v3u.cn/a_id_160 众神殿内,依次坐着Editplus.Atom.Sublime.Vscode.JetBrains家族.Comodo等等一众编辑 ...

  7. odoo 14 Debug 调试

    1 # PDB的用法 2 # PDB是用来调试运行代码的. 3 # 如何启动PDB(启动之后你可以调用odoo任何模块中的方法) 4 # ./odoo-bin shell --log-level=de ...

  8. Docker搭建STF私有移动测试云平台

    一. STF介绍 Smartphone Test Farm(简称STF)是一个web应用程序,主要用于从指定的浏览器中远程调试智能手机.智能手表等,可远程调试超过160多台设备.STF可以便捷的管理移 ...

  9. SAM复杂度证明

    关于$SAM$的复杂度证明(大部分是对博客的我自己的理解和看法) 这部分是我的回忆,可省略 先回忆一下$SAM$ 我所理解的$SAM$,首先扒一张图 初始串$aabbabd$ 首先发现,下图里的$S- ...

  10. 技术分享 | 为什么MGR一致性模式不推荐AFTER

    GreatSQL社区原创内容未经授权不得随意使用,转载请联系小编并注明来源. 1.引子 2.AFTER 的写一致性 3.AFTER 的读一致性 4.AFTER 执行流程 5.BEFORE 执行流程 6 ...