Commit e07d9508 authored by fangxinjiang's avatar fangxinjiang

Merge remote-tracking branch 'origin/master'

parents ee9ed356 d5d4d6a2
...@@ -41,13 +41,13 @@ spec: # 资源规范字段 ...@@ -41,13 +41,13 @@ spec: # 资源规范字段
node-type: worker # node标签 node-type: worker # node标签
containers: # 容器 containers: # 容器
- name: yifu-upms # 容器的名字 - name: yifu-upms # 容器的名字
image: hub.yifucenter.com:5500/qas-mvp/yifu-upms:1.0.0 # 容器镜像地址 image: hub.yifucenter.com:5500/qas-mvp/yifu-upms-biz:1.0.0 # 容器镜像地址
imagePullPolicy: Always # 每次Pod启动拉取镜像策略,三个选择 Always、Never、IfNotPresent imagePullPolicy: Always # 每次Pod启动拉取镜像策略,三个选择 Always、Never、IfNotPresent
# Always,每次都检查;Never,每次都不检查(不管本地是否有);IfNotPresent,如果本地有就不检查,如果没有就拉取(手动测试时, # Always,每次都检查;Never,每次都不检查(不管本地是否有);IfNotPresent,如果本地有就不检查,如果没有就拉取(手动测试时,
# 已经打好镜像存在docker容器中时,使用存在不检查级别, # 已经打好镜像存在docker容器中时,使用存在不检查级别,
# 默认为每次都检查,然后会进行拉取新镜像,因镜像仓库不存在,导致部署失败) # 默认为每次都检查,然后会进行拉取新镜像,因镜像仓库不存在,导致部署失败)
ports: ports:
- containerPort: 3000 # 容器端口 - containerPort: 4000 # 容器端口
env: # 启动环境配置信息 active and timeZone set env: # 启动环境配置信息 active and timeZone set
- name: SPRING_PROFILES_ACTIVE - name: SPRING_PROFILES_ACTIVE
value: test value: test
......
...@@ -7,9 +7,9 @@ metadata: # 资源的元数据/属性 ...@@ -7,9 +7,9 @@ metadata: # 资源的元数据/属性
namespace: qas-mvp # 部署在哪个namespace中 namespace: qas-mvp # 部署在哪个namespace中
spec: # 资源规范字段 spec: # 资源规范字段
ports: ports:
- port: 3000 # service 端口 - port: 4000 # service 端口
protocol: TCP # 协议 protocol: TCP # 协议
targetPort: 3000 # 容器暴露的端口 targetPort: 4000 # 容器暴露的端口
#name: http # 端口名称 #name: http # 端口名称
selector: # 选择器 selector: # 选择器
app: yifu-upms # 资源名称 app: yifu-upms # 资源名称
......
...@@ -70,7 +70,7 @@ public interface CommonConstants { ...@@ -70,7 +70,7 @@ public interface CommonConstants {
/** /**
* 成功标记 * 成功标记
*/ */
Integer SUCCESS = 0; Integer SUCCESS = 200;
/** /**
* 成功标记 200 * 成功标记 200
......
...@@ -51,7 +51,7 @@ public class HttpDaprUtil { ...@@ -51,7 +51,7 @@ public class HttpDaprUtil {
} catch (Exception e) { } catch (Exception e) {
return R.failed("获取信息失败:" + e.getMessage()); return R.failed("获取信息失败:" + e.getMessage());
} }
if (null != res && CommonConstants.SUCCESS_CODE == res.getStatusCodeValue()) { if (null != res && CommonConstants.SUCCESS == res.getStatusCodeValue()) {
return R.ok(res.getBody()); return R.ok(res.getBody());
} else { } else {
return R.failed("获取信息失败!"); return R.failed("获取信息失败!");
...@@ -79,7 +79,7 @@ public class HttpDaprUtil { ...@@ -79,7 +79,7 @@ public class HttpDaprUtil {
} catch (Exception e) { } catch (Exception e) {
return R.failed("获取信息失败:" + e.getMessage()); return R.failed("获取信息失败:" + e.getMessage());
} }
if (null != res && CommonConstants.SUCCESS_CODE == res.getStatusCodeValue()) { if (null != res && CommonConstants.SUCCESS == res.getStatusCodeValue()) {
return R.ok(res.getBody()); return R.ok(res.getBody());
} else { } else {
return R.failed("获取信息失败!"); return R.failed("获取信息失败!");
......
dapr.upms.appUrl=http://localhost:3500/v1.0/invoke/ dapr.upms.appUrl=http://localhost:3500/v1.0/invoke/
dapr.upms.appId=yifu_upms_sider dapr.upms.appId=yifu-upms
dapr.upms.appPort=4000 dapr.upms.appPort=4000
dapr.upms.httpPort=3500 dapr.upms.httpPort=3500
dapr.upms.grpcPort=52000 dapr.upms.grpcPort=52000
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment