我是靠谱客的博主 冷酷服饰,最近开发中收集的这篇文章主要介绍sentinel接入网关应用_接入容器服务Kubernetes版应用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

server:

port: 8090

# Eureka

eureka:

instance:

leaseRenewalIntervalInSeconds: 10

leaseExpirationDurationInSeconds: 30

client:

enabled: true #若希望开启Euerka支持,则置为true并将其它服务发现置为false。

serviceUrl:

defaultZone: http://my-eureka-ack-springcloud-eureka-svc:8761/eureka

spring:

application:

name: spring-cloud-gateway-container #AHAS网关防护中显示的网关应用名称。

cloud:

nacos:

discovery:

server-addr: "localhost:8848"

enabled: false #若希望开启Nacos支持,则置为true并将其它服务发现置为false。

zookeeper:

connect-string: "localhost:2181"

enabled: false #若希望开启ZooKeeper支持,则置为true并将其它服务发现置为false。

gateway:

enabled: true

discovery:

locator:

lower-case-service-id: true #服务名称小写转换。

routes: #在此处配置路由。

- id: aliyun_product_route #普通路由示例。

uri: https://www.aliyun.com

predicates:

- Path=/product/**

- id: discovery_route_foo #服务发现示例。

uri: lb://foo-service

predicates:

- Path=/foo/**

logging:

file: /home/admin/spring-cloud-gateway/logs/application.log

最后

以上就是冷酷服饰为你收集整理的sentinel接入网关应用_接入容器服务Kubernetes版应用的全部内容,希望文章能够帮你解决sentinel接入网关应用_接入容器服务Kubernetes版应用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部