Skip to content

Commit 7ff8cc5

Browse files
committed
Use git-crypt to encrypt a specific configuration file.
1 parent 19054b7 commit 7ff8cc5

File tree

22 files changed

+386
-81
lines changed

22 files changed

+386
-81
lines changed

.git-crypt/.gitattributes

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Do not edit this file. To specify the files to encrypt, create your own
2+
# .gitattributes file in the directory where your files are.
3+
* !filter !diff
4+
*.gpg binary

.git-crypt/keys/default/0/0ECB9E7547E841622DFB2273F73736F351109763.gpg

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
� :��\W� �a��ey����_x��
2+
�J
3+
F���g�i������W�
4+
]?���$]�!�S�e�#LB~�H�X�wv`�E+1/&��_d�Q�P�j�RֽF�W��qr��R1 �x�Ƶ� �T��$@�?�G���u퍪���Fzs���U�o��`�{o�W�f`v�!,�d6���^�8�۲���̙�ꨪE�O����?*�^
5+
:���}��ݚ����J���w�{�('*��I��<��/�Ӣ3�gN��%5�]����mI�B���gp|m7����!�.zJ��]Z �����zC =�HX�݊�����b�o�!�8��:˔�;x�
6+
B�LY�s��8AQ�J�_�`�����/��Ɓ���'��������M�#�f+]mܧ��t���;�|���(�"�A���̳~���3U✌[?ᤂ"�"����__V���

.gitattributes

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/*-local.properties filter=git-crypt diff=git-crypt
2+
**/*-jar.properties filter=git-crypt diff=git-crypt
3+
4+
.gitattributes !filter !diff

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,3 @@ build/
3131

3232
### VS Code ###
3333
.vscode/
34-
35-
**/*-local.properties
36-
**/*-jar.properties

kubernetes-manifests/quick-start/application.yaml

+37-36
Original file line numberDiff line numberDiff line change
@@ -152,45 +152,46 @@ spec:
152152
memory: 2048Mi
153153

154154
---
155-
156155
apiVersion: apps/v1
157156
kind: Deployment
158157
metadata:
159-
name: loadgenerator
160-
spec:
161-
selector:
162-
matchLabels:
163-
app: loadgenerator
164-
replicas: 1
165-
template:
166-
metadata:
167-
labels:
158+
labels:
168159
app: loadgenerator
169-
spec:
170-
terminationGracePeriodSeconds: 5
171-
restartPolicy: Always
172-
containers:
173-
- name: main
174-
image: loadgenerator
175-
env:
176-
- name: LANG
177-
value: C.UTF-8
178-
- name: GPG_KEY
179-
value: 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
180-
- name: PYTHON_GET_PIP_URL
181-
value: https://github.com/pypa/get-pip/raw/404c9418e33c5031b1a9ab623168b3e8a2ed8c88/get-pip.py
182-
- name: PYTHON_GET_PIP_SHA256
183-
value: 56bb63d3cf54e7444351256f72a60f575f6d8c7f1faacffae33167afc8e7609d
184-
- name: FRONTEND_ADDR
185-
value: zuul-gateway-svc
186-
- name: USERS
187-
value: '20'
188-
resources:
189-
limits:
190-
cpu: 250m
191-
memory: 512Mi
192-
terminationMessagePath: /dev/termination-log
193-
terminationMessagePolicy: File
160+
name: loadgenerator
161+
namespace: default
162+
spec:
163+
selector:
164+
matchLabels:
165+
app: loadgenerator
166+
template:
167+
metadata:
168+
labels:
169+
app: loadgenerator
170+
spec:
171+
containers:
172+
- name: loadgenerator
173+
image: registry.cn-shanghai.aliyuncs.com/microservice_demo/loadgenerator:1.0.0-SNAPSHOT
174+
imagePullPolicy: Always
175+
env:
176+
- name: LANG
177+
value: C.UTF-8
178+
- name: GPG_KEY
179+
value: 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D
180+
- name: PYTHON_GET_PIP_URL
181+
value: >-
182+
https://github.com/pypa/get-pip/raw/404c9418e33c5031b1a9ab623168b3e8a2ed8c88/get-pip.py
183+
- name: PYTHON_GET_PIP_SHA256
184+
value: 56bb63d3cf54e7444351256f72a60f575f6d8c7f1faacffae33167afc8e7609d
185+
- name: FRONTEND_ADDR
186+
value: frontend-external:8080
187+
- name: USERS
188+
value: '20'
189+
resources:
190+
limits:
191+
cpu: 300m
192+
memory: 512Mi
193+
terminationMessagePath: /dev/termination-log
194+
terminationMessagePolicy: File
194195

195196
---
196197
apiVersion: v1
@@ -217,4 +218,4 @@ spec:
217218
ports:
218219
- name: http
219220
port: 8080
220-
targetPort: 8080
221+
targetPort: 8080

package-lock.json

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
nacos.host=47.93.45.54
1+
#nacos.host=47.93.45.54
2+
nacos.host=nacos-server
23
spring.application.name=cartservice
34
spring.cloud.nacos.discovery.server-addr=${nacos.host}:8848
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
nacos.host=47.93.45.54
1+
#nacos.host=47.93.45.54
2+
nacos.host=nacos-server
23
spring.application.name=checkoutservice
34
spring.cloud.nacos.discovery.server-addr=${nacos.host}:8848
45
spring.cloud.nacos.config.server-addr=${nacos.host}:8848

src/frontend/src/main/java/com/alibabacloud/hipstershop/web/FaultInjectionController.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ public String faultInjection(){
4040
public RedirectView startFullGc(RedirectAttributes redirectAttributes){
4141
FaultInfo faultInfo = new FaultInfo(dataId, group, new HashSet<>(), 50, Constant.FULL_GC, 1);
4242
String ips = productDAO.addFaultInstance(dataId, group, faultInfo.getContent());
43-
redirectAttributes.addFlashAttribute("startFullGCResult", "注入Full GC 实例IP:" + ips);
43+
redirectAttributes.addFlashAttribute("startFullGCResult", "product的实例:" + ips + " 注入fullgc");
4444
return new RedirectView("/fault/result");
4545
}
4646

4747
@RequestMapping("/end/fullgc")
4848
public RedirectView endFullGc(RedirectAttributes redirectAttributes){
4949
try {
5050
nacosConfigManager.getConfigService().publishConfig(dataId, group, "no exception!");
51-
redirectAttributes.addFlashAttribute("endFullGCResult", "Full GC 故障已清除");
51+
redirectAttributes.addFlashAttribute("endFullGCResult", "fullgc故障已清除");
5252
} catch (Exception e){
5353
redirectAttributes.addFlashAttribute("endFullGCResult", "故障清除失败");
5454
}
Binary file not shown.

src/frontend/src/main/resources/application.properties

+5
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,10 @@ management.server.port=8091
2121
#spring.cloud.sentinel.eager=true
2222
#spring.cloud.sentinel.transport.dashboard=localhost:8081
2323
server.port=8080
24+
spring.thymeleaf.mode = LEGACYHTML5
25+
spring.thymeleaf.encoding=UTF-8
26+
spring.thymeleaf.servlet.content-type=text/html
27+
spring.thymeleaf.suffix=.html
28+
spring.thymeleaf.cache=false
2429

2530
# tunning
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
nacos.host=47.93.45.54
1+
#nacos.host=47.93.45.54
2+
nacos.host=nacos-server
23
spring.application.name=frontend
34
spring.cloud.nacos.discovery.server-addr=${nacos.host}:8848
45
spring.cloud.nacos.config.server-addr=${nacos.host}:8848

src/frontend/src/main/resources/static/js/index.js

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)