springcloud_k8s_panzhihuazhihuishequ/.idea/workspace.xml
@@ -23,9 +23,18 @@ </component> <component name="ChangeListManager"> <list default="true" id="8ba27629-3e5d-4f42-993e-d0c055bc9371" name="Default Changelist" comment=""> <change afterPath="$PROJECT_DIR$/deploy-file/applets-backstage.yaml" afterDir="false" /> <change afterPath="$PROJECT_DIR$/deploy-file/community-backstage.yaml" afterDir="false" /> <change afterPath="$PROJECT_DIR$/deploy-file/service-community.yaml" afterDir="false" /> <change afterPath="$PROJECT_DIR$/deploy-file/service-partybuilding.yaml" afterDir="false" /> <change afterPath="$PROJECT_DIR$/deploy-file/service-timejob.yaml" afterDir="false" /> <change afterPath="$PROJECT_DIR$/deploy-file/service-user.yaml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/applets_backstage/src/main/resources/bootstrap.yml" beforeDir="false" afterPath="$PROJECT_DIR$/applets_backstage/src/main/resources/bootstrap.yml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/community_backstage/src/main/resources/bootstrap.yml" beforeDir="false" afterPath="$PROJECT_DIR$/community_backstage/src/main/resources/bootstrap.yml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/deploy-file/applets-backstage.yaml" beforeDir="false" afterPath="$PROJECT_DIR$/deploy-file/applets-backstage.yaml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/service_community/src/main/resources/bootstrap.yml" beforeDir="false" afterPath="$PROJECT_DIR$/service_community/src/main/resources/bootstrap.yml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/service_partybuilding/src/main/resources/bootstrap.yml" beforeDir="false" afterPath="$PROJECT_DIR$/service_partybuilding/src/main/resources/bootstrap.yml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/service_user/src/main/resources/bootstrap.yml" beforeDir="false" afterPath="$PROJECT_DIR$/service_user/src/main/resources/bootstrap.yml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/timejob/src/main/resources/bootstrap.yml" beforeDir="false" afterPath="$PROJECT_DIR$/timejob/src/main/resources/bootstrap.yml" afterDir="false" /> </list> <option name="SHOW_DIALOG" value="false" /> <option name="HIGHLIGHT_CONFLICTS" value="true" /> @@ -413,7 +422,7 @@ <workItem from="1611834131869" duration="1431000" /> <workItem from="1611883117467" duration="13328000" /> <workItem from="1611913457874" duration="966000" /> <workItem from="1612141547518" duration="21576000" /> <workItem from="1612141547518" duration="23713000" /> </task> <servers /> </component> @@ -437,10 +446,10 @@ <screen x="0" y="0" width="1536" height="824" /> </state> <state x="249" y="0" key="#Project_Structure/0.0.1536.824@0.0.1536.824" timestamp="1608546608273" /> <state x="464" y="213" key="#com.intellij.fileTypes.FileTypeChooser" timestamp="1611735657367"> <state x="464" y="213" key="#com.intellij.fileTypes.FileTypeChooser" timestamp="1612177264050"> <screen x="0" y="0" width="1536" height="824" /> </state> <state x="464" y="213" key="#com.intellij.fileTypes.FileTypeChooser/0.0.1536.824@0.0.1536.824" timestamp="1611735657367" /> <state x="464" y="213" key="#com.intellij.fileTypes.FileTypeChooser/0.0.1536.824@0.0.1536.824" timestamp="1612177264050" /> <state x="574" y="118" key="#com.intellij.ide.util.MemberChooser" timestamp="1611823461616"> <screen x="0" y="0" width="1536" height="824" /> </state> springcloud_k8s_panzhihuazhihuishequ/community_backstage/src/main/resources/bootstrap.yml
@@ -7,6 +7,7 @@ enabled: true service-id: config # 注册中心的服务名 profile: prod # 指定配置文件的环境 uri: http://${CONFIG_URL:localhost}:8193/ profiles: active: prod servlet: springcloud_k8s_panzhihuazhihuishequ/deploy-file/applets-backstage.yaml
@@ -16,7 +16,7 @@ app: springcloud-applets-backstage spec: containers: - name: applets-instance - name: applets-backstage-instance image: registry.cn-chengdu.aliyuncs.com/panzhihua/applets_backstage:v1 imagePullPolicy: Always env: springcloud_k8s_panzhihuazhihuishequ/deploy-file/community-backstage.yaml
New file @@ -0,0 +1,47 @@ --- apiVersion: apps/v1 kind: Deployment metadata: name: community-backstage spec: selector: matchLabels: app: springcloud-community-backstage replicas: 3 template: metadata: labels: app: springcloud-community-backstage spec: containers: - name: community-backstage-instance image: registry.cn-chengdu.aliyuncs.com/panzhihua/community_backstage:v1 imagePullPolicy: Always env: - name: EUREKA_URL value: eureka-server - name: CONFIG_URL value: config-server ports: - containerPort: 8199 imagePullSecrets: - name: hhf --- kind: Service apiVersion: v1 metadata: name: service-community-backstage spec: selector: app: springcloud-community-backstage ports: - protocol: TCP port: 8199 targetPort: 8199 #type: NodePort springcloud_k8s_panzhihuazhihuishequ/deploy-file/service-community.yaml
New file @@ -0,0 +1,45 @@ --- apiVersion: apps/v1 kind: Deployment metadata: name: service-community spec: selector: matchLabels: app: springcloud-service-community replicas: 3 template: metadata: labels: app: springcloud-service-community spec: containers: - name: community-instance image: registry.cn-hangzhou.aliyuncs.com/wooddeep/service_community:v1 imagePullPolicy: Always env: - name: EUREKA_URL value: eureka-server - name: CONFIG_URL value: config-server ports: - containerPort: 8291 --- kind: Service apiVersion: v1 metadata: name: service-community spec: selector: app: springcloud-service-community ports: - protocol: TCP port: 8291 targetPort: 8291 #type: NodePort springcloud_k8s_panzhihuazhihuishequ/deploy-file/service-partybuilding.yaml
New file @@ -0,0 +1,45 @@ --- apiVersion: apps/v1 kind: Deployment metadata: name: service-partybuilding spec: selector: matchLabels: app: springcloud-service-partybuilding replicas: 3 template: metadata: labels: app: springcloud-service-partybuilding spec: containers: - name: partybuilding-instance image: registry.cn-hangzhou.aliyuncs.com/wooddeep/service-dangjian:v1 imagePullPolicy: Always env: - name: EUREKA_URL value: eureka-server - name: CONFIG_URL value: config-server ports: - containerPort: 8291 --- kind: Service apiVersion: v1 metadata: name: service-community spec: selector: app: springcloud-service-community ports: - protocol: TCP port: 8291 targetPort: 8291 #type: NodePort springcloud_k8s_panzhihuazhihuishequ/deploy-file/service-timejob.yaml
New file @@ -0,0 +1,45 @@ --- apiVersion: apps/v1 kind: Deployment metadata: name: service-timejob spec: selector: matchLabels: app: springcloud-service-timejob replicas: 3 template: metadata: labels: app: springcloud-service-timejob spec: containers: - name: timejob-instance image: registry.cn-hangzhou.aliyuncs.com/wooddeep/service-timejob:v1 imagePullPolicy: Always env: - name: EUREKA_URL value: eureka-server - name: CONFIG_URL value: config-server ports: - containerPort: 8189 --- kind: Service apiVersion: v1 metadata: name: service-timejob spec: selector: app: springcloud-service-timejob ports: - protocol: TCP port: 8189 targetPort: 8189 #type: NodePort springcloud_k8s_panzhihuazhihuishequ/deploy-file/service-user.yaml
New file @@ -0,0 +1,45 @@ --- apiVersion: apps/v1 kind: Deployment metadata: name: service-user spec: selector: matchLabels: app: springcloud-service-user replicas: 3 template: metadata: labels: app: springcloud-service-user spec: containers: - name: user-instance image: registry.cn-hangzhou.aliyuncs.com/wooddeep/service-user:v1 imagePullPolicy: Always env: - name: EUREKA_URL value: eureka-server - name: CONFIG_URL value: config-server ports: - containerPort: 8196 --- kind: Service apiVersion: v1 metadata: name: service-user spec: selector: app: springcloud-service-user ports: - protocol: TCP port: 8196 targetPort: 8196 #type: NodePort springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/resources/bootstrap.yml
@@ -7,6 +7,7 @@ enabled: true service-id: config # 注册中心的服务名 profile: prod # 指定配置文件的环境 uri: http://${CONFIG_URL:localhost}:8193/ profiles: active: prod servlet: springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/resources/bootstrap.yml
@@ -7,6 +7,7 @@ enabled: true service-id: config # 注册中心的服务名 profile: prod # 指定配置文件的环境 uri: http://${CONFIG_URL:localhost}:8193/ profiles: active: prod springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/resources/bootstrap.yml
@@ -7,6 +7,7 @@ enabled: true service-id: config # 注册中心的服务名 profile: prod # 指定配置文件的环境 uri: http://${CONFIG_URL:localhost}:8193/ profiles: active: prod springcloud_k8s_panzhihuazhihuishequ/timejob/src/main/resources/bootstrap.yml
@@ -7,6 +7,7 @@ enabled: true service-id: config # 注册中心的服务名 profile: prod # 指定配置文件的环境 uri: http://${CONFIG_URL:localhost}:8193/ profiles: active: prod